CREATE TABLESPACE USER

create user scott identified by tiger default tablespace userdata;



User created.


0.03 seconds



granting privileges;

grant connect , resource to scott;


Statement processed.


0.04 seconds



SQL> conn scott/tiger;
Connected.
SQL> select default_tablespace from user_users;

DEFAULT_TABLESPACE
------------------------------
USERDATA


SQL>

Comments

Popular posts from this blog

ADD DATAFILE TO USERDATA

CREATE TABLESPACE