1. Create Tablespace
- create tablespace [tablespacename] datafile [path] size [size];
2. Create User
- create user [username]
identified by [password]
default tablespace [tablespace]
temporary tablespace temp;
- grant create session to [user];
- grant create table to [user];
- grant create view to [user];
- grant create sequence to [user];
- grant create procedure to [user];
4. Grant All Privileges..[make sure to connect as the sysdba of the instance]:
- conn system/system as sysdba;
- grant all privileges to sa;
No comments:
Post a Comment