資料庫互導

2021-05-01 05:51:14 字數 1017 閱讀 4188

1 sqlserver與access互導

方法一:用sql語句

/*************匯出到access********************/

insert into openrowset(』microsoft.jet.oledb.4.0』,

』x:/a.mdb』;』admin』;』』,a表) select * from 資料庫名..b表

/*************匯入access********************/

insert into b表 selet * from openrowset(』microsoft.jet.oledb.4.0』,

』x:/a.mdb』;』admin』;』』,a表)

方法二:用乙個dataread讀取access資料表的資訊,用command執行插入操作。

3 sqlserver建立約束

[表名]->[右鍵]->設計表->管理索引/鍵->新建->選擇欄位->選中建立unique

4 更改資料庫結構

增加alter table tablename add fieldname set char(20)

更改alter table oasmenureg alter column link set data type char(50)

5 分母為0處理

(case when (sum(cb.qty))=0 then

0else

round(sum(cb.pamt) * 1.00/sum(cb.qty),2)

end)

as pprice

資料庫表互導

使用軟體 mysqlmigrationtool 執行軟體後,點next進入以下介面 選擇ms sql server,按提示填寫,connection string為 jdbc jtds sqlserver ip位址 埠 預設1433 資料庫教程名 user 使用者名稱 password 密碼 cha...

sql access excel 資料互導

一 sql server 和access的資料匯入匯出 常規的資料匯入匯出 使用dts嚮導遷移你的access資料到sql server,你可以使用這些步驟 1在sql server企業管理器中的tools 工具 選單上,選擇data transformation 2services 資料轉換服務 ...

資料庫MySQL與xls檔案的互導

最近的乙個專案需要將xls表匯入到mysql資料庫中和將mysql資料表匯出到xls表中,在網上搜了很多資料,經過多次嘗試終於實現了功能,廢話不多說,在這貼上出 希望可以幫到需要的朋友。一 將.xls表匯入到mysql資料表中。1 import tmpfile files file tmp name...