惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
T
The Blog of Author Tim Ferriss
I
InfoQ
博客园_首页
G
Google Developers Blog
爱范儿
爱范儿
Last Week in AI
Last Week in AI
量子位
阮一峰的网络日志
阮一峰的网络日志
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
月光博客
月光博客
The GitHub Blog
The GitHub Blog
V
Visual Studio Blog
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 聂微东

博客园 - MainIsUsed

svg札记 rabbitmq 小记 nfc相关 MI卡UID (转)C++中指针和引用的区别 .net下的office开发(visio对象) 关于DataTable的GetChanges()方法 【转】C#中的非安全编程(key:unsafe,fixed) Oracle中UTL_FILE包的UTL_FILE.FOPEN用法 c# 获取串口设备的输入(unsigned char *和 char*) URL字符串编码 笔记HTML - MainIsUsed - 博客园 .net导出为powerpoint的一些参考代码 关于ClickOnce 发布过程中的错误:要求高版本的CAPICOM.dll Oracle EXTRACT()函数与to_char() 函数 c#接口使用方法 - MainIsUsed - 博客园 在 WinForm 中完整支持在多级目录中保存的 ASP.NET (转) - MainIsUsed (转)实现基于事件通知的.Net套接字 (转)什么是套接字(Socket)?
oracle9i导入导出命令
MainIsUsed · 2009-07-17 · via 博客园 - MainIsUsed

从cmd下面打入这些命令

--导入
--其中:
--sundun/sundun@sundun:用户/密码@数据库
--file:导入的dmp文件的存放路径
--log:日志文件用于记录导入时的相关信息(可选)
--full:等y代表导出所有用户下的表,/后面代表导入的用户与数据库的用户
imp sundun/sundun@sundun file=E:\数据库\has_jn.dmp log=E:\数据库\has.log

full=y/fromuser=sundun touser=sundun;

--导出
--其中:
--sundun/sundun@sundun:用户/密码@数据库
--file:导出的dmp文件的存放路径
--log:日志文件用于记录导入时的相关信息(可选)
--owener:表示要导出哪些用户下的表或数据,如果不写这个属性,则代表导出全部的用户的表
exp sundun/sundun@sundun file=E:\数据库\has.dmp log=E:\数据库\has.log owner=(sundun,fnd,meta,crm,hrm,info);