首页 > oracle imp dmp

oracle imp dmp

imp help=y

导入自己的表:

exp scott/tiger@orcl tables=(student, address) file=D:scott_stu_add.dmp log=D:scott_stu_add.log

imp scott/tiger@orcl file=D:scott_stu_add.dmp log=D:log.log

imp scott/tiger@orcl file=D:scott_stu_add.dmp tables=student


导入别人的表:

conn sys as sysdba;

drop user test cascade;

create user test identified by test;

下面是对的:

imp test/test@orcl file=D:scott_stu_add.dmp fromuser=scott touser=test

imp sys/change_on_install@orcl file=D:scott_stu_add.dmp fromuser=scott touser=test

上面已经导入了,但又重复执行,会报错

imp test/test@orcl file=D:scott_stu_add.dmp fromuser=scott touser=test

加上ignore 后,create 语句错误被忽略了,接着会执行后面的语句

imp test/test@orcl file=D:scott_stu_add.dmp fromuser=scott touser=test ignore=y

下面这个是不对的:

imp scott/tiger@orcl file=D:scott_stu_add.dmp fromuser=scott touser=test

转载于:https://www.cnblogs.com/Mike_Chang/p/9278194.html

更多相关:

  • 可能很多朋友已经知道了这个消息,我觉得还是写一下,别让这个机会白白溜走。Scott Guthrie是谁,我就不介绍了,简单说:ASP.NET之父,Silverlight 的主要创始人,还管着太多微软的开发技术和工具,应该是微软最年轻的GM了!(这辈子,小弟估计没希望了。) 本次他是第一次来北京,我负责他的行程,具体行程不透露了,怕有小...

  • Powerdesigner老版本不支持64位Client,新版本弄不到破解码 解决方法,用Powerdesigner+32位Oracle Clent访问64位Oracle Server 遇到的坑分享下 安装完64位的Oracle Server  ,32位的 Oracle Clent默认的listener.ora文件有PROGRAM和...

  • 1.问题描述 新建了一个数据库testeos,但是在用scott用户登录时出现错误:ORA-28000: the account is locked。这是因为scott用户被锁定了,我们要做的就是将scott用户解锁。 2.解决方法 解锁方法是用system/sys用户登录数据库testeos,然后修改scott账户,具体如下图所示:...

  • 打开 build文件夹下面的webpack.base.conf.js; 找到下面这段代码,并将它注释掉: const createLintingRule = () => ({// test: /.(js|vue)$/,// loader: 'eslint-loader',// enforce: 'pre',// includ...

  • 写一个.cc文件,其中抱哈std::lock_guard以及std::thread等c++11特性,开始使用gcc编译,过程中出现如下问题 gcc test_lock.cc -o test_lock This file requires compiler and library support for the ISO C++ 201...

  • 在阅读ceph源码过程中发现部分C++语法还是不够熟悉,特此做一下笔记。 关于STL中的reserve函数的使用 reserve()是为容器预留空间,即为当前容器设定一个空间分配的阈值,但是并不会为容器直接allocate具体的空间,具体空间的分配是在创建对象时候进行分配得 以vector的reserve函数过程为例,直接看如下代码...

  • 第一种写法: 第二种写法:   转载于:https://www.cnblogs.com/w...

  • Rank() over()的用法 创建一个test表,并插入6条数据。 CREATE TABLE test (a INT,b INT,c CHAR ) INSERT INTO test VALUES(1,3,'E') INSERT INTO test VALUES(2,4,'A') INSERT INTO test VAL...