Oracle : Grant Create table in another schema?

后端 未结 3 2008
北海茫月
北海茫月 2020-12-16 19:56

I have two users : Schema1 and Schema2

How to grant Create Table privilege On Schema2 to Schema1 ?

I have been turning around and I got confused. I tried : <

3条回答
  •  轮回少年
    2020-12-16 20:08

    You want to grant create ANY table:

    grant create any table to schema1;
    

    The any "modifier" allows to create tables in other than own schemas.

提交回复
热议问题