[重慶思莊每日技術分享]-ORA-01760 當表中出現物化檢視時,收集索引統計資訊失敗

xianhua_33發表於2022-04-13

日誌檔案中出現ORA-01760報錯(參考官方文件 ID317254.1)

現象:

Collecting

Index stats using dbms_stats.gather_index_stats might fail with

ORA-1760 when a materialized view is present on the base table.

The error can also happen when we use cascade=> TRUE option with either gather_schema_stats ot gather_table_stats.

當表中出現有物化檢視時,使用dbms_stats.gather_index_stats收集索引統計資訊可能會以報ORA-01760失敗

當使用gather_schema_stats ot gather_table_stats,並且cascade=> TRUE選項開啟時,也會發生這個錯誤

導致的原因是出現了查詢重寫,解決方法則是禁用查詢重寫

- alter session set query_rewrite_enabled=false;

- run your dbms_stats command


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69950318/viewspace-2886863/,如需轉載,請註明出處,否則將追究法律責任。

相關文章