關於儲存過程通過DBLINK 訪問只讀資料庫報錯 PL/SQL: ORA-04063:的說明

gaopengtttt發表於2015-05-25
報錯如下:
ORA-06550: line 11, column 31:
PL/SQL: ORA-04063: table "ACCOUNTCORE.ACCOUNT_LEDGER" has errors
ORA-06550: line 10, column 23:
PL/SQL: SQL Statement ignored

關於這一點MOS有相關說明:

CAUSE

This is expected behavior.

Compiling the PL/SQL block we require internal structures of the table, which is not yet generated in the read only database.

This has been identified in:
Bug 2798026 ORA-6550 / PLS-905 WHEN RUNNING PL/SQL OVER DBLINK TO READ ONLY STANDBY DATABASE

SOLUTION

Workaround:

1. Populate internal structures by running PL/SQL before making remote Database READ ONLY

or

2. Or create a view in local database against the remote TABLE as:

Create view x_view as select count(*) y from x@ora102;

declare
    i number;
    begin
    select count(*) into i from x_view;
end;
/

記錄於此

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

相關文章