資料庫之間資料轉換最快方法

2022-02-28 17:36:15 字數 481 閱讀 2557

用txt匯入的方式是最快的,一般是秒級。

以access資料庫到sqlite資料庫為例:

第一步:匯出access資料庫到txt檔案:

select * into [text;database=e:\temp].testabc.txt from sheet2;

第二步:將txt檔案匯入sqlite中:

用sqlite expert 工具的匯入功能

選擇txt並匯入到已有表,180萬資料,匯入時間為9秒。

access資料庫匯出匯入的其它操作:

二、匯入txt檔案並生成新錶:

select * into abc from [text;database=e:\temp].testabc.txt;

三、將txt檔案匯入到乙個現有表中:

insert into abc select * from [text;database=e:\temp].testabc.txt;

oracle資料庫之間資料同步

這段時間負責某個專案開發的資料庫管理工作,這個專案中開發庫與測試資料庫分離,其中某些系統表資料與基礎資料資料經常需要進行同步,為方便完成指定資料表的同步操作,可以採用dblink與merge結合的方法完成,簡單方便。操作環境 此資料庫伺服器ip為192.168.196.76,有center與bran...

Oracle資料庫之間資料同步

源庫 env庫 中定義如下包 包定義如下 create or replace package pkg data report is author johnfnash created 2017 6 8 17 48 03 purpose data report to yw 資料同步儲存過程 proced...

Oracle資料庫之間資料同步

源庫 env庫 中定義如下包 包定義如下 create or replace package pkg data report is author johnfnash created 2017 6 8 17 48 03 purpose data report to yw 資料同步儲存過程 proced...