网站首页
本站精华
免费下载
游客:
注册
|
登录
|
会员
|
搜索
|
帮助
LoveUnix
»
ORACLE等数据库
» sos:exp时报错,请指教
‹‹ 上一主题
|
下一主题 ››
投票
交易
悬赏
活动
打印
|
推荐
|
订阅
|
收藏
标题: sos:exp时报错,请指教
zhoujin0901
LU幼天使
UID 2253
精华 0
积分 20
帖子 39
活跃指数 0
LU金币 2006 个
LU金条 0 个
阅读权限 20
注册 2003-11-12
#1
大
中
小
使用道具
发表于 2003-11-21 10:18
资料
个人空间
短消息
加为好友
exp system/manager inctype=INCREMENTAL file=i01.dmp
Export: Release 8.1.7.3.0 - Production on Fri Nov 21 10:01:42 2003
© Copyright 2000 Oracle Corporation. All rights reserved.
Connected to: Oracle8i Enterprise Edition Release 8.1.7.3.0 - Production
With the Partitioning option
JServer Release 8.1.7.3.0 - Production
Export done in ZHS16CGB231280 character set and ZHS16CGB231280 NCHAR character s
et
About to export the entire database ...
. exporting tablespace definitions
. exporting profiles
. exporting user definitions
. exporting roles
. exporting resource costs
. exporting rollback segment definitions
EXP-00003: no storage definition found for segment(6, 2)
EXP-00000: Export terminated unsuccessfully
这是什么意识?????
SuperBlade
LU新生
UID 2989
精华 0
积分 2
帖子 3
活跃指数 0
LU金币 2006 个
LU金条 0 个
阅读权限 10
注册 2003-11-21
#2
大
中
小
使用道具
发表于 2003-11-21 10:23
资料
个人空间
短消息
加为好友
EXP-00003 no storage definition found for segment(number, number)
Cause: Export could not find the storage definitions for a cluster, index, or table.
Action: Record the accompanying messages and report this as an Export internal error to Oracle Customer Support
zdygk
荣誉斑竹
极品果壳大将军
UID 114
精华
17
积分 1269
帖子 2408
活跃指数 107
LU金币 1031 个
LU金条 16619 个
阅读权限 200
注册 2003-9-24
#3
大
中
小
使用道具
发表于 2003-11-21 10:29
资料
个人空间
主页
短消息
加为好友
metalink:
· fact: Oracle Server - Enterprise Edition 8.1.6
·
· fact: AIX-Based Systems
·
· fact: EXP
·
· symptom: EXP-00003: no storage definition found for segment(%lu, %lu)
·
· cause: This is <bug:1080833>.
·
· Two oracle users A and B exist.
· A owns a table T1 and has an index I1.
· B creates an index I2 on T1.
· When we export T1 as A , this fails with EXP-00003
· no storage definition found for segment(%lu, %lu)
· The file and the block specified belong to the I2 index created by B.
·
·
fix:
Fixed in 8.1.6.2 and 8.1.7
Workaround is to use system/manager for the export
Major : ETL AIX+JAVA+DB2
Hobby: shell+os-developer
DB2 is the Best Pure RDBMS; Oracle is an aspirant
zdygk
荣誉斑竹
极品果壳大将军
UID 114
精华
17
积分 1269
帖子 2408
活跃指数 107
LU金币 1031 个
LU金条 16619 个
阅读权限 200
注册 2003-9-24
#4
大
中
小
使用道具
发表于 2003-11-21 10:30
资料
个人空间
主页
短消息
加为好友
说明若你的oracle server 是 8173,这个bug应该OK了的。
Major : ETL AIX+JAVA+DB2
Hobby: shell+os-developer
DB2 is the Best Pure RDBMS; Oracle is an aspirant
zdygk
荣誉斑竹
极品果壳大将军
UID 114
精华
17
积分 1269
帖子 2408
活跃指数 107
LU金币 1031 个
LU金条 16619 个
阅读权限 200
注册 2003-9-24
#5
大
中
小
使用道具
发表于 2003-11-21 10:42
资料
个人空间
主页
短消息
加为好友
还有可能:
你创建了TEMPORARY tables 和相关索引。这时会可能报错。
Major : ETL AIX+JAVA+DB2
Hobby: shell+os-developer
DB2 is the Best Pure RDBMS; Oracle is an aspirant
zdygk
荣誉斑竹
极品果壳大将军
UID 114
精华
17
积分 1269
帖子 2408
活跃指数 107
LU金币 1031 个
LU金条 16619 个
阅读权限 200
注册 2003-9-24
#6
大
中
小
使用道具
发表于 2003-11-21 10:48
资料
个人空间
主页
短消息
加为好友
你的问题解决如下:
Export is failing when a tablespace containing rollback segments was converted
from dictionary to locally managed.
Solutions Description
---------------------
*** ****************************************************
*** Solution 1 Migrate the tablespace back to dictionary
*** ****************************************************
SQL> execute DBMS_SPACE_ADMIN.TABLESPACE_MIGRATE_FROM_LOCAL('TRY_RBS');
PL/SQL procedure successfully completed.
$ exp system/manager full=Y
Export: Release 8.1.6.1.0 - Production on Mon Nov 13 10:57:33 2000
© Copyright 1999 Oracle Corporation. All rights reserved.
Connected to: Oracle8i Enterprise Edition Release 8.1.6.1.0 - Production
With the Partitioning option
JServer Release 105.6.246.14.0
Export done in US7ASCII character set and US7ASCII NCHAR character set
About to export the entire database ...
. exporting tablespace definitions
. exporting profiles
. exporting user definitions
. exporting roles
. exporting resource costs
. exporting rollback segment definitions
. exporting database links
...
*** **************************************************
*** Solution 2 Drop and recreate the rollback segments
*** **************************************************
SQL> drop rollback segment TRY_RS01;
Rollback segment dropped.
SQL> drop rollback segment TRY_RS02;
Rollback segment dropped.
SQL> create rollback segment try_rs01 tablespace TRY_RBS
2 storage (minextents 5);
Rollback segment created.
SQL> create rollback segment try_rs02 tablespace TRY_RBS
2 storage (minextents 3);
Rollback segment created.
SQL> alter rollback segment TRY_RS01 online;
Rollback segment altered.
SQL> alter rollback segment TRY_RS02 online;
Rollback segment altered.
$ exp system/manager full=y
Export: Release 8.1.6.2.0 - Production on Mon Nov 13 13:29:01 2000
© Copyright 1999 Oracle Corporation. All rights reserved.
Connected to: Oracle8i Enterprise Edition Release 8.1.6.2.0 - Production
With the Partitioning option
JServer Release 8.1.6.2.0 - Production
Export done in US7ASCII character set and US7ASCII NCHAR character set
About to export the entire database ...
. exporting tablespace definitions
. exporting profiles
. exporting user definitions
. exporting roles
. exporting resource costs
. exporting rollback segment definitions
. exporting database links
...
Major : ETL AIX+JAVA+DB2
Hobby: shell+os-developer
DB2 is the Best Pure RDBMS; Oracle is an aspirant
[广告]
记录自己的思想火花,留住每日的技术积累,尽在拥有属于自己独立域名的博客。
投票
交易
悬赏
活动
LoveUnix
专项技术区
> AIX -IBM UNIX
> 其他UNIX & Linux
> i5 (AS400) & IBM大机
> PC Server & HPC
> 存储设备
> 备份软件
> 网络 & 安全
> 编程开发 & Rational
> DB2 & Informix
> ORACLE等数据库
> 中间件技术
行业综合区
> 职业咨询 前程无忧
> 培训认证 行业入门
> 行业应用 项目实施
> 产品信息 商务交流
> Free download下载
交流灌水区
> 蓝色太平洋
> 墨香雅韵
> 论坛建设
> 博客专区
当前时区 GMT+8, 现在时间是 2008-12-5 12:19
乐悠LoveUnix论坛-京ICP备05005823号
Thanks to
Discuz!
© 2001-2007 Power by
LoveUnix.net
Processed in 0.053439 second(s), 6 queries , Gzip enabled
TOP
清除 Cookies
-
联系我们
-
乐悠LoveUnix
-
Archiver
界面风格
----------
Discuz! 5 Default
新DISCUZ风格
控制面板首页
编辑个人资料
积分交易
公众用户组
好友列表
升级个人空间
基本概况
流量统计
客户软件
发帖量记录
论坛排行
主题排行
发帖排行
积分排行
在线时间
管理团队
管理统计