exp user/password@orcl file=** full=y;--导出
imp user/password @orcl file=*** full=y;--导入
create user username identified by password;--创建用户
create tablespace tablespacename datafile ‘d:\data.dbf‘ size xxxm;--创建表空间
tablespacename:表空间的名字
d:\data.dbf‘:表空间的存储位置
xxx表空间的大小,m单位为兆(M)
alert user username default tablespace tablespacename;--默认表空间
grant create session,create table,unlimited tablespace to username;--赋权限
grant dba to username;
原文:https://www.cnblogs.com/zhudidefeng/p/10784943.html