create user username identified by password
default tablespace tablespaceName
temporary tablespace temp
quota unlimited on tablespaceName;
Or You can alter the user after creation like this:
alter user username
quota unlimited on tablespaceName;
quota unlimited on tablespaceName;
No comments:
Post a Comment