1、建立表空间
create tablespace test_space --表空间名称
datafile 'E:\tablespace\testspace.dbf' --表空间位置及生成的文件名称
size 20M--初始化大小
autoextend on;--自动扩展
2、建立用户
create user test --用户名
identified by 123456 --密码
default tablespace test_space --创建的表空间
temporary tablespace temp --临时表空间 temp
3、对使用表空间的用户进行授权操作
grant create session,create table,create view,create sequence,unlimited tablespace to test;
grant connect to test;
grant resource to test;
grant DBA to test;--dab最高权限,可以创建数据库,表等
4、导入数据到对应表空间
打开cmd,执行下面语句:
imp usename/password@localhost/orcl(表示SID) --username需要是有权限的用户 file= E:\Oracle_11g\app\Administrator\product\11.2.0\dbhome_1\database\xxxx.dmp full=y --这里的路径依据实际路径进行调整
注:如果导入过程中遇到:IMP-00013: 只有 DBA 才能导入由其他 DBA 导出的文件
解决方法:alter user certification default role DBA;