oracle导入准备

drop tablespace SKYTB3 including contents and datafiles ;
create tablespace SKYTB3 datafile 'F:\oracle\data\SKYTB3.dbf' size 200m autoextend on next 100M maxsize unlimited;

drop user gts_3 cascade ;
create user gts_3
identified by gts_3
default tablespace SKYTB3
temporary tablespace TEMP
profile DEFAULT;

--grant
grant connect,resource to gts_3;
grant create any synonym to gts_3 with admin option;
grant create public database link to gts_3 with admin option;
grant create database link to gts_3 ;
grant create any view to gts_3 ;
grant create view to gts_3 ;

你可能感兴趣的:(oracle)