oracle 8.1.7.4建立dblink出現ora-03113錯誤
oracle 8.1.7.4建立dblink出現ora-03113錯誤
oracle 8.1.7.4 版本 建立了一個dblink 目標版本為 oracle 9.2
現在用 select * from tabname@dblink
出現ora-03113錯誤,
已經確定是bug,
現在用 select * from tabname@dblink
出現ora-03113錯誤,
已經確定是bug,
目前解決方法是先建立檢視,然後再為
檢視建立同義詞
然後訪問
select * from 正常
以下是解決步驟:
1.oracle 9.2.0.8 資料庫
SQL> connect hpfs/password
已連線。
SQL> create or replace view port_client_test as select * from port_client;
已連線。
SQL> create or replace view port_client_test as select * from port_client;
檢視已建立。
SQL> grant select on port_client_test to test;
授權成功。
SQL> grant insert on port_client_test to test;
授權成功。
SQL> grant delete on port_client_test to test;
授權成功。
SQL> grant update on port_client_test to test;
授權成功。
SQL> conn test/test
已連線。
SQL> create synonym port_client for hpfs.port_client_test;
SQL> conn test/test
已連線。
SQL> create synonym port_client for hpfs.port_client_test;
同義詞已建立。
2. oracle 8.1.7.4 資料庫
SQL> conn hp/hp
Connected.
SQL> select count(*) from ; --連線到oracle 9.2.0.8資料庫
Connected.
SQL> select count(*) from ; --連線到oracle 9.2.0.8資料庫
COUNT(*)
----------
5170
----------
5170
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7199859/viewspace-466267/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- linux oracle 建立informix dblink 錯誤解決LinuxOracleORM
- Oracle資料庫關閉時,出現ORA-03113錯誤Oracle資料庫
- 使用DBLink出現ora-03113處理過程
- solaris上建立oracle資料庫出現:out of memory 錯誤Oracle資料庫
- [Oracle] ORA-03113錯誤分析與解決Oracle
- Oracle建立dblink MySQLOracleMySql
- ORA-03113錯誤分析
- Ora-03113 錯誤分析
- JDBC 連oracle 時出現錯誤,,求助???JDBCOracle
- 【PL/SQL】oracle建立dblinkSQLOracle
- ORA-03113錯誤分析(轉)
- dblink建立後訪問提示密碼錯誤問題解決密碼
- Oracle GoldenGate導致IMP出現ORACLE 32588錯誤OracleGo
- 轉貼 :ORA-03113錯誤分析
- GetDlgItem() 出現錯誤Git
- ORA-03113錯誤分析與解決
- 建立oracle dblink 的兩種方式Oracle
- Opencv出現detecMultiScale錯誤OpenCV
- ORACLE 使用DBCA安裝資料庫出現錯誤Oracle資料庫
- ORA-03113錯誤解決一例
- Laravel 出現 419 錯誤Laravel
- AS打包出現app:transformClassesAndResourcesWithProguardForRelease錯誤APPORM
- 使用 sudo 命令出現錯誤
- FTP出現426錯誤FTP
- 在做oracle standby時,出現ORA-12557錯誤.Oracle
- 【ORACLE 匯入匯出】exp 錯誤Oracle
- 一起由於Oracle 8.1.6 BUG而導致的ORA-03113錯誤Oracle
- Oracle->Mysql dblink 建立詳細過程OracleMySql
- Oracle儲存過程中呼叫DBLink同義詞出現錯誤:PLS-00201: 必須宣告識別符號Oracle儲存過程符號
- VMware中安裝ORACLE RAC出現的CRS錯誤總結Oracle
- Flutter 最常出現的典型錯誤Flutter
- 配置nagios出現的錯誤iOS
- 執行Bex 出現 61704 錯誤
- Servlet訪問WebService出現錯誤ServletWeb
- Oracle升級,Oracle8.1.7.4是一個坎哪Oracle
- ORACLE登入出現“ORA-12560:TNS:協議介面卡錯誤”錯誤修復Oracle協議
- ORACLE 建立DBLINK 自動加域名解決方案Oracle
- oracle DBLink oracleOracle