Oracle数据导入导出imp/exp 两个应用实例

Oracle数据导入导出imp/exp
参考:http://www.cnblogs.com/tohen/articles/1083323.html
在命令提示符下执行exp   help=y   和imp   help=y 可以查看更详细的帮助文档.

任务要求:导出SCC数据库下的用户LIN下的三张表:lin.course,lin.sc,lin.student

C:\Documents and Settings\Administrator>exp sys/sys@SCC file=d:\scc
lin.course,lin.sc,lin.student)

Export: Release 9.2.0.1.0 - Production on 星期三 10月 8 10:43:48 20

Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.


EXP-00056: 遇到 ORACLE 错误 28009
ORA-28009: connection to sys should be as sysdba or sysoper
用户名:  system
口令:

连接到: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production
已导出 ZHS16GBK 字符集和 AL16UTF16 NCHAR 字符集

即将导出指定的表通过常规路径 ...
当前的用户已更改为 LIN
. . 正在导出表                          COURSE          7 行被导出
. . 正在导出表                              SC          5 行被导出
. . 正在导出表                         STUDENT          4 行被导出
在没有警告的情况下成功终止导出。

第一次要求有DBA权限,以下第二次:
第二次实验:
C:\Documents and Settings\Administrator>exp system/system@SCC file=C:\scc.dmp ta
bles=(lin.course,lin.sc,lin.student)

Export: Release 9.2.0.1.0 - Production on 星期三 10月 8 10:46:56 2008

Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.


连接到: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production
已导出 ZHS16GBK 字符集和 AL16UTF16 NCHAR 字符集

即将导出指定的表通过常规路径 ...
当前的用户已更改为 LIN
. . 正在导出表                          COURSE          7 行被导出
. . 正在导出表                              SC          5 行被导出
. . 正在导出表                         STUDENT          4 行被导出
在没有警告的情况下成功终止导出。

 

任务要求:把SCC数据库中用户LIN下导出的数据表导入到用用户stu下:

C:\Documents and Settings\Administrator>imp system/system@scc file=c:\scc.dmp fr
omuser=lin touser=stu

Import: Release 9.2.0.1.0 - Production on 星期三 10月 8 11:01:58 2008

Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.


连接到: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production

经由常规路径导出由EXPORT:V09.02.00创建的文件
已经完成ZHS16GBK字符集和AL16UTF16 NCHAR 字符集中的导入
. 正在将LIN的对象导入到 STU
. . 正在导入表                        "COURSE"          7行被导入
. . 正在导入表                            "SC"          5行被导入
. . 正在导入表                       "STUDENT"          4行被导入
成功终止导入,但出现警告。

 

你可能感兴趣的:(oracle,C++,c,C#)