标题: sos:exp时报错,请指教
zhoujin0901
LU幼天使
Rank: 2



UID 2253
精华 0
积分 20
帖子 39
活跃指数 0
LU金币 2006 个
LU金条 0 个
阅读权限 20
注册 2003-11-12
 
发表于 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新生
Rank: 1



UID 2989
精华 0
积分 2
帖子 3
活跃指数 0
LU金币 2006 个
LU金条 0 个
阅读权限 10
注册 2003-11-21
 
发表于 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
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
极品果壳大将军


LU爱心使者  
UID 114
精华 17
积分 1269
帖子 2408
活跃指数 107
LU金币 1031 个
LU金条 16619 个
阅读权限 200
注册 2003-9-24
 
发表于 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
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
极品果壳大将军


LU爱心使者  
UID 114
精华 17
积分 1269
帖子 2408
活跃指数 107
LU金币 1031 个
LU金条 16619 个
阅读权限 200
注册 2003-9-24
 
发表于 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
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
极品果壳大将军


LU爱心使者  
UID 114
精华 17
积分 1269
帖子 2408
活跃指数 107
LU金币 1031 个
LU金条 16619 个
阅读权限 200
注册 2003-9-24
 
发表于 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
荣誉斑竹
Rank: 14Rank: 14Rank: 14Rank: 14
极品果壳大将军


LU爱心使者  
UID 114
精华 17
积分 1269
帖子 2408
活跃指数 107
LU金币 1031 个
LU金条 16619 个
阅读权限 200
注册 2003-9-24
 
发表于 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
&copy; 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
&copy; 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
顶部
[广告] 记录自己的思想火花,留住每日的技术积累,尽在拥有属于自己独立域名的博客。
 



当前时区 GMT+8, 现在时间是 2008-12-5 12:41
乐悠LoveUnix论坛-京ICP备05005823号

Thanks to Discuz!  © 2001-2007    Power by LoveUnix.net
Processed in 0.054355 second(s), 6 queries , Gzip enabled

清除 Cookies - 联系我们 - 乐悠LoveUnix - Archiver