报错如下:
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/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/7728585/viewspace-1670889/

Logo

DAMO开发者矩阵,由阿里巴巴达摩院和中国互联网协会联合发起,致力于探讨最前沿的技术趋势与应用成果,搭建高质量的交流与分享平台,推动技术创新与产业应用链接,围绕“人工智能与新型计算”构建开放共享的开发者生态。

更多推荐