1.创建表空间
createtablespacedata_testdatafile'e:\oracle\oradata\test\data_1.dbf'size50M;autoextendonnext10Mmaxsizeunlimited--每次扩展10M,无限制扩展只写上面也可以的EXTENTMANAGEMENTlocalautoallocatesegmentspacemanagementauto;
2.创建用户
create user test identified by test
default tablespace data_test
temporary tablespace TEMP
profile DEFAULT;
3.授权用户
grantdbatotest;grantconnecttotest;grantresourcetotest;
Tips: 在sql developer中,选择其他用户,可以用图形工具进行创建用户,并授权给管理员。
4.准备导入
imptest/test@localhost/oraclefile=E:\oracle\base.dmpfull=y
这么迁移后可能会有1435的错误,那可能是dmp的文件中有好多的namespace 和 用户,在迁移的过程中,加入一些参数。
imptest/test@localhost/oraclefile=E:\oracle\base.dmpfromuser=testtouser=userignore=y
在tablespce和user都正确的情况下,不出意外就可以正常的导入到数据库中。