欢迎来到代码驿站!

Oracle

当前位置:首页 > 数据库 > Oracle

CMD操作oracle数据导库过程图解

时间:2020-12-27 17:48:58|栏目:Oracle|点击:

1.cmd窗口下,登陆管理员用户:sqlplus sys/1 as sysdba

2.创建新用户并为用户授权:

  (1)创建用户

---Create the user
create user Helq3_Pro
identified by "1"
default tablespace MOF
temporary tablespace TEMP
profile DEFAULT;

  (2)为用户授权

SQL> grant dba to helq3_cpbgt_20200714 with admin option;
SQL> grant unlimited tablespace to helq3_cpbgt_20200714 with admin option;
SQL> grant imp_full_database to helq3_cpbgt_20200714;

3.数据导入

  (1)imp导入:

imp userid=helq3_cpbgt_20200714/1@orcl file=E:\cpcz.dmp full=yignore=y 

  (2)数据泵导入impdp

    首先,创建,并为用户授权此文件夹

    数据泵导入:

impdp helq3_cpbgt_20200714/1 dumpfile=cpcz.dmp directory=expdp_dir remap_schema=helq3_cpbgt_20200714(导出时的用户名):helq3_cpbgt_20200714

4.数据导出

  (1)exp导出:

exp helq3_cpbgt_20200714/1@orcl file=E:\cpcz.dmp log=cpcz.log

    导出带空表的数据库->先做查询,再正常导出:

select 'alter table '||table_name||' allocate extent;' from user_tables where num_rows=0;

  (2)expdp 数据泵导出:

expdp helq3_cpbgt_20200714/1@orclschemas=helq3_cpbgt_20200714 dumpfile=cpcz.dmp directory=expdp_dir logfile=cpcz.log

上一篇:VMware中linux环境下oracle安装图文教程(一)

栏    目:Oracle

下一篇:Oracle全角数字转换半角数字

本文标题:CMD操作oracle数据导库过程图解

本文地址:http://www.codeinn.net/misctech/37374.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有