第一步、开始-运行-cmd
输入sqlplus,输入用户名 system、密码 kanq@2013
第二步:创建表空间
create tablespace zsxt datafile 'E:/wgy/zsxt.dbf' SIZE 50M autoextend on next 10M maxsize unlimited extent management local;
第三步:创建用户
create user zs identified by zs default tablespace zsxt Temporary TABLESPACETemp;
create user zs identified by zs default tablespace zsxt; win7
说明:
1、第一个oms:数据库用户名
2、第二个oms: 数据库的密码
3、第三个oms: 表空间名
第四步:用户授权
grant connect,resource,dba to zs;
第五步:提交
commit;
成功后输入 exit;
第六步:导入数据
输入: cd/ 回车
数据导入:
imp zs/zs@ORCL file=c:/zsgl.dmp full=y log=c:/zsxtdr.log ;//成功
imp zs/zs@ORCL file=e:/zsgl.DMP full=y statistics=none log=c:/zsxtdr.log ;//成功