|
|

楼主 |
发表于 2011/10/11 17:58:58
|
显示全部楼层
查询metalink
Patch failed on ODF Comparison Utility - aduoixrc: ERROR: Failed to find column [ID 845576.1]
如下解决办法:
好用的,粘贴如下
Cause
The issue is caused due to following custom indexes created on FA_BOOKS table
FA_BOOKS_IDX$$_25080062
FA_BOOKS_IDX$$_25080062
FA_BOOKS_IDX$$_25080088
FA_BOOKS_IDX$$_2508008C
Error can be cross verified by running adodfcmp utility manually as:
adodfcmp odffile=fabks.odf userid=fa/<fa_password> changedb=no
priv_schema=system/<password> mode=indexes touser=apps/apps logfile=fabks.log
.
Solution
To implement the solution, please execute the following steps :
1) Confirm the total number of indexes on FA_BOOKS table :
SQL> SELECT INDEX_NAME, COLUMN_NAME, COLUMN_POSITION FROM DBA_IND_COLUMNS
where TABLE_NAME = 'FA_BOOKS' and TABLE_OWNER ='FA';
2) Verify and drop these custom indexes.
Note: If not sure about custom indexes then raise SR with corresponding product support for confirmation
3) Restart failed workers.
4) If required recreate custom indexes which were dropped in step2 above.
|
|