sql access excel 資料互導

2021-06-04 06:48:24 字數 3541 閱讀 4656

一、sql server 和access的資料匯入匯出

常規的資料匯入匯出:

使用dts嚮導遷移你的access資料到sql server,你可以使用這些步驟:

○1在sql server企業管理器中的tools(工具)選單上,選擇data transformation

○2services(資料轉換服務),然後選擇 czdimport data(匯入資料)。

○3在choose a data source(選擇資料來源)對話方塊中選擇microsoft access as the source,然後鍵入你的.mdb資料庫(.mdb副檔名)的檔名或通過瀏覽尋找該檔案。

○4在choose a destination(選擇目標)對話方塊中,選擇microsoft ole db prov ider for sql server,選擇資料庫伺服器,然後單擊必要的驗證方式。

○5在specify table copy(指定**複製)或query(查詢)對話方塊中,單擊copy tables(複製**)。

○6在select source tables(選擇源**)對話方塊中,單擊select all(全部選定)。下一步,完成。

transact-sql語句進行匯入匯出:

1.在sql server裡查詢access資料:

select * from opendatasource( 'microsoft.jet.oledb.4.0','data source="c:\db.mdb";user id=admin;password=')...表名

2.將access匯入sql server

在sql server 裡執行:

select * into newtable from opendatasource ('microsoft.jet.oledb.4.0','data source="c:\db.mdb";user id=admin;password=' )...表名

3.將sql server表裡的資料插入到access表中

在sql server 裡執行:

insert into opendatasource( 'microsoft.jet.oledb.4.0','data source=" c:\db.mdb";user id=admin;password=')...表名 (列名1,列名2) select 列名1,列名2 from sql表

例項:

insert into openrowset('microsoft.jet.oledb.4.0','c:\db.mdb';'admin';'', test) select id,name from test

insert into openrowset('microsoft.jet.oledb.4.0', 'c:\trade.mdb'; 'admin'; '', 表名) select * from sqltablename

二、sql server 和excel的資料匯入匯出

1、在sql server裡查詢excel資料:

select * from opendatasource( 'microsoft.jet.oledb.4.0','data source="c:\book1.xls";user id=admin;password=;extended properties=excel 5.0')...[sheet1$]

下面是個查詢的示例,它通過用於 jet 的 ole db 提供程式查詢 excel 電子**。

select * from opendatasource ( 'microsoft.jet.oledb.4.0','data source="c:\finance\account.xls";user id=admin;password=;extended properties=excel 5.0')...xactions

2、將excel的資料匯入sql server :

select * into newtable from opendatasource( 'microsoft.jet.oledb.4.0','data source="c:\book1.xls";user id=admin;password=;extended properties=excel 5.0')...[sheet1$]

例項:

select * into newtable from opendatasource( 'microsoft.jet.oledb.4.0','data source="c:\finance\account.xls";user id=admin;password=;extended properties=excel 5.0')...xactions

3、將sql server中查詢到的資料導成乙個excel檔案

t-sql**:

exec master..xp_cmdshell 'bcp 庫名.dbo.表名out c:\temp.xls -c -q -s"servername" -u"sa" -p""'

引數:s 是sql伺服器名;u是使用者;p是密碼

說明:還可以匯出文字檔案等多種格式

例項:exec master..xp_cmdshell 'bcp saletesttmp.dbo.cusaccount out c:\temp1.xls -c -q -s"pmserver" -u"sa" -p"sa"'

exec master..xp_cmdshell 'bcp "select au_fname, au_lname from pubs..authors order by au_lname" queryout c:\ authors.xls -c -sservername -usa -ppassword'

在vb6中應用ado匯出excel檔案**:

dim cn as new adodb.connection

cn.open "driver=;server=websvr;database=webmis;uid=sa;wd=123;"

cn.execute "master..xp_cmdshell 'bcp "select col1, col2 from 庫名.dbo.表名" queryout e:\dt.xls -c -sservername -usa -ppassword'"

4、在sql server裡往excel插入資料:

insert into opendatasource( 'microsoft.jet.oledb.4.0','data source="c:\temp.xls";user id=admin;password=;extended properties=excel 5.0')...table1 (a1,a2,a3) values (1,2,3)

t-sql**:

insert into

opendatasource('microsoft.jet.oledb.4.0','extended properties=excel 8.0;data source=c:\training\inventur.xls')...[filiale1$] (bestand, produkt) values (20, 'test')

總結:利用以上語句,我們可以方便地將sql server、access和excel電子**軟體中的資料進行轉換,為我們提供了極大方便!

SQL Access Excel匯入匯出

熟悉sql server 2000的資料庫管理員都知道,其dts可以進行資料的匯入匯出,其實,我們也可以使用transact sql語句進行匯入匯出操作。在 transact sql語句中,我們主要使用opendatasource函式 openrowset 函式,關於函式的詳細說明,請參考sql聯機...

Catalan數(卡特蘭數)

卡特蘭數 規定h 0 1,而h 1 1,h 2 2,h 3 5,h 4 14,h 5 42,h 6 132,h 7 429,h 8 1430,h 9 4862,h 10 16796,h 11 58786,h 12 208012,h 13 742900,h 14 2674440,h 15 969484...

卡特蘭數 Catalan數

卡特蘭數 規定h 0 1,而h 1 1,h 2 2,h 3 5,h 4 14,h 5 42,h 6 132,h 7 429,h 8 1430,h 9 4862,h 10 16796,h 11 58786,h 12 208012,h 13 742900,h 14 2674440,h 15 969484...