資料庫中大字段在不同庫表之間的讀寫
例如要將測試庫中的表匯入到生產庫,且表中含有大字段。
首先在生產庫建dblink。
然後:--建立臨時表 (在生產庫執行)
create global temporary table reprot_sql_bak
as select * from c_report_sql_bak@zbjs_test where report_id like '%cztf%' or report_id like '%gnsj%';
--在生產庫執行
--執行一下操作,但不要提交(commit)
insert into reprot_sql_bak
select * from c_report_sql@zbjs_test where report_id like '%cztf%' or report_id like '%gnsj%';
---執行如下指令碼。(在生產庫執行)
insert into c_report_sql
select * from reprot_sql_bak ;
2014-06-22 0:[email protected].
SQLserver不同資料庫不同表之間的複製
1.將eems庫中的dec towninfo表中的資料 複製到oem庫的c towninfo中 c towninfo表事先存在 先要將表的主鍵設為自增長型別,且列出列名 set identity insert oem dbo c towninfo oninsert into oem dbo c to...
Oracle資料庫匯出大字段 CLOB 資料
匯出clob的幾個sql語句 1.匯出含有大字段資料的m條記錄 expuser passwd statistics none compress n consistent y file oradata info backup exp article.dmp log oradata info backu...
MySQL不同資料庫之間表的簡單同步
mysql不同資料庫之間表的簡單同步,實用輕量級資料 如下案列展示 例如我現在主庫上面有users tenants兩張表需要同步到備庫上面 主庫 1 確認主庫資料條數 select count from users select count from tenants 2 將資料匯出到檔案,data ...