今天接到个case,有个exp的脚本导出报错了:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
. . exporting table SRIRAM_1 169 rows exported . . exporting table SRIRAM_10 126 rows exported . . exporting table SRIRAM_2 169 rows exported . . exporting table STATS 84915 rows exported . . exporting table T76B001 0 rows exported . . exporting table T76B002 0 rows exported . . exporting table TMP 284 rows exported . . exporting table TMP_F56024A_20110410 EXP-00008: ORACLE error 600 encountered ORA-00600: internal error code, arguments: [6191], [3], [11047], [16743], [], [], [], [] . . exporting table TMP_F56024A_20110417 EXP-00008: ORACLE error 600 encountered ORA-00600: internal error code, arguments: [6191], [3], [11419], [17180], [], [], [], [] . exporting synonyms . exporting views . exporting stored procedures . exporting operators . exporting referential integrity constraints . exporting triggers . exporting indextypes . exporting bitmap, functional and extensible indexes . exporting posttables actions . exporting materialized views . exporting snapshot logs . exporting job queues . exporting refresh groups and children . exporting dimensions . exporting post-schema procedural objects and actions . exporting statistics Export terminated successfully with warnings. |
从这个报错看,exp的时候有ora600,一般是遇到了bug。我们先手工的试试导出那个报错的表:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
JPJDE@NMTAS303 [/home/oracle] > exp PRODDTA/xxxxx tables=TMP_F56024A_20110410 direct=y file=TMP_F56024A_20110410.dmp log=TMP_F56024A_20110410.log Export: Release 9.2.0.4.0 - Production on Mon May 2 11:29:46 2011 Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved. Connected to: Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production With the Partitioning option JServer Release 9.2.0.4.0 - Production Export done in US7ASCII character set and UTF8 NCHAR character set server uses JA16SJIS character set (possible charset conversion) About to export specified tables via Direct Path ... . . exporting table TMP_F56024A_20110410 EXP-00008: ORACLE error 600 encountered ORA-00600: internal error code, arguments: [6193], [4], [1165], [12168], [16743], [], [], [] Export terminated successfully with warnings. |
确实,我们也看到了对 […]