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 : <
You want to grant create ANY table:
create ANY table
grant create any table to schema1;
The any "modifier" allows to create tables in other than own schemas.
any