Grant Select on all Tables Owned By Specific User

后端 未结 4 1159
春和景丽
春和景丽 2020-12-02 16:55

I need to grant select permission for all tables owned by a specific user to another user. Can I do this with a single command along the lines of:

Grant Sel         


        
4条回答
  •  春和景丽
    2020-12-02 17:27

    yes, its possible, run this command:

    lets say you have user called thoko

    grant select any table, insert any table, delete any table, update any table to thoko;
    

    note: worked on oracle database

提交回复
热议问题