create tablespace 表空间名称
logging
datafile ‘D:\oracle\product\10.2.0\oradata\orcl\表空间名称.DBF‘
size 100m
autoextend on
next 2m
extent management local;
create user 登陆名
identified by 密码
default tablespace 表空间名称 //默认表空间
temporary tablespace TEMP; //缺省表空间
grant connect,resource,SELECT_CATALOG_ROLE,dba to 登录名;
exp 登陆名/密码@服务实例 file=F:\2013717.dmp owner=(登陆名)
imp 登陆名/密码@服务实例 full=y file=F:\2013717.dmp
Oracle数据库操作命令总结,布布扣,bubuko.com
原文:http://blog.csdn.net/o_darling/article/details/20617059