This post was updated on Dec 21, 2016; 12:56pm.
If you need to create object in your default tablespace;
Create your user with quota syntax.
Example
CREATE USER app_user1
IDENTIFIED by "123456"
DEFAULT TABLESPACE example
QUOTA unlimited ON example;
so you need to give quota on related tablespace to user.
You need to give other grants as well.. Such as creation session, create any table and so on.. (grants according to your needs)
|