服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Oracle - CMD操作oracle数据导库过程图解

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

2020-07-22 17:08章冒冒2020 Oracle

这篇文章主要介绍了CMD操作oracle数据导库过程图解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

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

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

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

  (1)创建用户

?
1
2
3
4
5
6
---Create the user
create user Helq3_Pro
identified by "1"
default tablespace MOF
temporary tablespace TEMP
profile DEFAULT;

  (2)为用户授权

?
1
2
3
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;

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

3.数据导入

  (1)imp导入:

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

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

  (2)数据泵导入impdp

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

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

    数据泵导入:

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

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

4.数据导出

  (1)exp导出:

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

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

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

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

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

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://www.cnblogs.com/helq/p/13301302.html

延伸 · 阅读

精彩推荐