91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Oracle數據鏈創建及使用

發布時間:2020-07-28 01:10:54 來源:網絡 閱讀:3832 作者:yangxhxl 欄目:關系型數據庫

 

項目上需要將老系統中的數據導入到新系統中,決定用數據鏈dblink將老數據導入到目標數據庫中,將操作過程記錄如下:

1.創建Dblink

  create database link ygbgtest_portaltest_link
    connect to dbuser identified by password
    using '(DESCRIPTION =
     (ADDRESS_LIST =
       (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.xx.xx)(PORT = 1521))
     )
     (CONNECT_DATA =
       (SERVICE_NAME = orcl)
     )
   )';

2.用鏈表查詢

 執行SQL  select * from ygbgtest_portaltest_link@portal_information; 

 報錯“ORA-02019:未找到遠程數據庫的連接說明”。檢查發現表名和數據鏈名寫反了,⊙﹏⊙,調整后執行 select * from portal_information@ygbgtest_portaltest_link;

 報錯“ORA-22992:無法使用從遠程表選擇的LOB定位符”。檢查發現報錯原因是查詢的源數據表中含有CLOB類型字段。 

3.解決dblink查詢源數據表中含有大字段的問題

我解決該問題的方法是通過創建臨時表,并將源數據表中的數據導入到臨時表中。然后查詢臨時表以獲取CLOB字段數據。

--創建臨時表以獲取遠程表數據   
create global temporary table temp_ygbg_information on commit preserve rows 
as select * from portal_information@ygbgtest_portaltest_link;
select count(1from temp_ygbg_information t;

 

--從臨時表中將數據插入到目的表中
insert into portal_information
  (id,
   title,
   picture_url,
   status,
   author_id,
   author_name,
   create_time,
   modify_date,
   delete_date,
   view_num,
   order_flag,
   summary,
   type,
   promulgation_charge,
   information_source,
   sort_num,
   sub_title,
   is_slidenews)
 select 
   SEQ_PORTAL_INFORMATION.NEXTVAL,
   title,
   picture_url,
   status,
   author_id,
   author_name,
   create_time,
   modify_date,
   delete_date,
   view_num,
   order_flag,
   summary,
   type,
   promulgation_charge,
   information_source,
   sort_num,
   sub_title,
   is_slidenews from temp_ygbg_information t1 where t1.id=3338;

 

--查看大字段中的數據 
select dbms_lob.substr(t.summary,4000,1) ty,t.* from portal_information t where t.id=3338;

 

 

自此,通過Dblink查詢和獲取源數據庫中的表數據并插入到目標數據庫中的操作均能正常執行了。當然網上還有其它辦法可以查看大字段,例如使用視圖等。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

河间市| 连州市| 醴陵市| 荔浦县| 江达县| 临桂县| 绥中县| 抚宁县| 息烽县| 上杭县| 大理市| 闽清县| 永善县| 白城市| 保山市| 乌恰县| 固始县| 凤山县| 梁平县| 镇巴县| 吴旗县| 澜沧| 宁武县| 长春市| 金寨县| 伊金霍洛旗| 汨罗市| 五常市| 永清县| 九龙坡区| 安乡县| 集安市| 马关县| 扶沟县| 盈江县| 鱼台县| 廊坊市| 邵阳市| 石河子市| 天长市| 潼南县|