oracle怎麼快速把資料庫其中表的內容插入到另資料庫裡面

時間 2021-08-11 18:15:23

1樓:咖哩小西瓜

1、先建立一個database link,將兩個庫連線起來語法:create database link 連結名 connect to 賬戶 identified by 口令 using 服務名;

例子:create database link mylink connect to user_name identified by password using 'test01'

2、用insert into將test01表a的資料寫入test表ainsert into [資料庫名].[dbo].[表名] select * from [資料庫名].

[dbo].[表名]@mylink where 時間》'2013-07-24'

2樓:

有2種解決方式,

1種是建立一個資料連結

create table t_b as select * from t_a@orcl_db;

2 直接通過 匯出、匯入解決

3樓:西門公子慶

資料都在一個資料庫的話,那就直接insert into table1 select * from table2 where 。。。時間條件。。 就可以了。

不再一個庫的話。可以建dblink,然後同樣。。

4樓:匿名使用者

create database link mylink1 connect to wms_beacn_new identified by aaaa using

'(description =

(address_list =

(address = (protocol = tcp)(host = 192.168.2.108)(port = 1521))

)(connect_data =

(service_name = sidb108)))'

select * from wms_user@mylink1;

insert into wms_user select * from wms_user@mylink1;

其中:使用者名稱:wms_beacn_new

密碼:aaaa

5樓:

imp userid/pwd@sid file=bkfile tables=(tablename) ignore=y query=\"where datecol\

6樓:匿名使用者

可以加個database link

sql資料庫和oracle資料庫哪個好

兄弟,聽我的。肯定學習oracle。原因 1 oracle是商用的最廣泛的關係型資料庫管理系統,廣泛應用於銀行 電信 電力 社保等各個領域。特別是對於unix和linux平臺,sqlserver怎麼用啊?我想你學習,肯定為了將來應用,或者工作,你的簡歷裡面寫oracle和sqlserver完全是不一...

oracle資料庫dblink怎麼用

select from 表名 dblink名 建立公開資料庫連結 create public database link 資料庫連結別名 connect to 登陸使用者 identified by 登陸密碼 using description address list address protoc...

如何將ORACLE資料庫資料檔案遷移到其它目錄

oracle 11g進行資料庫遷移 的意思不是很明確。如果是把一個資料庫的資料遷移到另外一個資料庫中時,與flash recovery area沒什麼關係。flash recovery area只是一個閃回區,作為一種短時間的備份恢復資料用的。如何將oracle資料庫資料檔案遷移到其它目錄 建使用者...