Create a new schema in Oracle
Here we will first create a tablespace and then we will create a user for that tablespace.
create tablespace ahsan
add datafile 'e:\ahsan.dbf' size 100 m;
create user ahsan identified by welcome
default tablespace ahsan temporary tablespace temp;
grant create session, connect, resource to ahsan;
Hence now you are ready with the new tablespace and a new user that belongs to the ahsan tablespace;
0 comments:
Post a Comment