- 最后登录
- 2023-8-16
- 在线时间
- 1686 小时
- 威望
- 2135
- 金钱
- 50532
- 注册时间
- 2011-10-12
- 阅读权限
- 200
- 帖子
- 5207
- 精华
- 39
- 积分
- 2135
- UID
- 2
|
3#
发表于 2012-2-18 14:59:30
问题示例:- SQL> select * from v$version;
- BANNER
- --------------------------------------------------------------------------------
- Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
- PL/SQL Release 11.2.0.1.0 - Production
- CORE 11.2.0.1.0 Production
- TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
- NLSRTL Version 11.2.0.1.0 - Production
- SQL> create table mac as select 1 t1 from dual connect by level <=1001;
- 表已创建。
- SQL> 从 Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
- With the Partitioning, OLAP, Data Mining and Real Application Testing options 断开
- C:\Users\Maclean.Liu>exp maclean/maclean file=mac.dmp tables=mac
- Export: Release 11.2.0.1.0 - Production on 星期六 2月 18 14:53:19 2012
- Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
- 连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
- With the Partitioning, OLAP, Data Mining and Real Application Testing options
- 已导出 ZHS16GBK 字符集和 UTF8 NCHAR 字符集
- 服务器使用 AL32UTF8 字符集 (可能的字符集转换)
- 即将导出指定的表通过常规路径...
- . . 正在导出表 MAC导出了 1001 行
- 成功终止导出, 没有出现警告。
- C:\Users\Maclean.Liu>imp maclean/maclean file=mac.dmp full=y
- Import: Release 11.2.0.1.0 - Production on 星期六 2月 18 14:54:02 2012
- Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
- 连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
- With the Partitioning, OLAP, Data Mining and Real Application Testing options
- 经由常规路径由 EXPORT:V11.02.00 创建的导出文件
- 已经完成 ZHS16GBK 字符集和 UTF8 NCHAR 字符集中的导入
- 导入服务器使用 AL32UTF8 字符集 (可能的字符集转换)
- . 正在将 MACLEAN 的对象导入到 MACLEAN
- . 正在将 MACLEAN 的对象导入到 MACLEAN
- IMP-00015: 由于对象已存在, 下列语句失败:
- "CREATE TABLE "MAC" ("T1" NUMBER) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS"
- " 255 STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 FREELISTS 1 FREELIST G"
- "ROUPS 1 BUFFER_POOL DEFAULT) LOGGING NOCOMPRESS"
- 成功终止导入, 但出现警告。
复制代码 以上 imp 因为没有加ignore=y 且IMP-00015: 由于对象已存在, 下列语句失败 , 而失败了。
加上ignore=y 后 导入数据成功- C:\Users\Maclean.Liu>imp maclean/maclean file=mac.dmp full=y ignore=y
- Import: Release 11.2.0.1.0 - Production on 星期六 2月 18 14:54:14 2012
- Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
- 连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
- With the Partitioning, OLAP, Data Mining and Real Application Testing options
- 经由常规路径由 EXPORT:V11.02.00 创建的导出文件
- 已经完成 ZHS16GBK 字符集和 UTF8 NCHAR 字符集中的导入
- 导入服务器使用 AL32UTF8 字符集 (可能的字符集转换)
- . 正在将 MACLEAN 的对象导入到 MACLEAN
- . 正在将 MACLEAN 的对象导入到 MACLEAN
- . . 正在导入表 "MAC"导入了 1001 行
- 成功终止导入, 没有出现警告。
复制代码 若遇到的不是 创建对象的错误即 (IMP-00015: 由于对象已存在, 下列语句失败)则 ignore=y 也无效:- SQL> alter tablespace users read only;
- 表空间已更改。
- C:\Users\Maclean.Liu>imp maclean/maclean file=mac.dmp full=y ignore=y
- Import: Release 11.2.0.1.0 - Production on 星期六 2月 18 14:55:01 2012
- Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
- 连接到: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
- With the Partitioning, OLAP, Data Mining and Real Application Testing options
- 经由常规路径由 EXPORT:V11.02.00 创建的导出文件
- 已经完成 ZHS16GBK 字符集和 UTF8 NCHAR 字符集中的导入
- 导入服务器使用 AL32UTF8 字符集 (可能的字符集转换)
- . 正在将 MACLEAN 的对象导入到 MACLEAN
- . 正在将 MACLEAN 的对象导入到 MACLEAN
- . . 正在导入表 "MAC"
- IMP-00058: 遇到 ORACLE 错误 372
- ORA-00372: 此时无法修改文件 4
- ORA-01110: 数据文件 4: 'D:\APP\MACLEAN.LIU\ORADATA\PROD\USERS01.DBF'
- 成功终止导入, 但出现警告。
复制代码 |
|