最近在做正式台與測試台 Oracle 的資料轉檔,結果遇到這個錯誤 ORA-02069: global_names parameter must be set to TRUE for this operation 會遇到這個錯誤,小熊子初步分析是用 View 的結果轉入 DBLink 的遠端 Table 問題。 後來找到這麼一篇文章,我的解法是用暫存 table 轉入 DBLink 的遠端 Table 以下是範例: --依 select 結果建立暫存資料表 CREATE TABLE myTemp as Select * from v_myView; -... [More]
Tags: oracle