您的位置:首页 > 数据库 > Oracle

oracle用户数据的导入、导出

2010-06-03 18:41 211 查看
exp taiaer_cc/hollycrm@taiaer_101 file=d:/taiaer_101.dmp log=d:/tai.log owner=taiaer_cc

imp taiaer_cc/hollycrm@localdb file=d:/taiaer_101.dmp  fromuser=taiaer_cc touser=taiaer_cc

system下新建一用户,指定默认表空间到users

create user TAIAER_CC

  identified by "hollycrm" --给用户设置密码

  default tablespace users

  temporary tablespace TEMP

  profile DEFAULT;

-- Grant/Revoke role privileges

grant connect to TAIAER_CC;

grant dba to TAIAER_CC;

grant resource to TAIAER_CC;

-- Grant/Revoke system privileges

grant create view to TAIAER_CC;

grant unlimited tablespace to TAIAER_CC;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  oracle file system user
相关文章推荐