access升遷sqlserver(代理平臺(tái)數(shù)據(jù)庫(kù)轉(zhuǎn)換)注意:請(qǐng)使用office的microsoft access進(jìn)行轉(zhuǎn)換,推薦office 2007以上版本 。其他第三方office工具可能無法操作。 1.雙擊global.mdb打開access數(shù)據(jù)庫(kù)-數(shù)據(jù)庫(kù)工具-sqlserver
2.使用現(xiàn)有數(shù)據(jù)庫(kù)-下一步-dsn名稱后
3.選擇sqlserver
4.下一步-瀏覽,設(shè)置一個(gè)數(shù)據(jù)源名稱, 如test,下一步,完成
下一步,選擇使用用戶輸入登陸id和密碼的sqlserver驗(yàn)證,填寫數(shù)據(jù)庫(kù)帳號(hào)密碼
下一步,勾選”更改默認(rèn)的數(shù)據(jù)庫(kù)為”,并在下拉框中選擇對(duì)應(yīng)數(shù)據(jù)庫(kù)
下一步-完成-確定-確定
輸入數(shù)據(jù)庫(kù)密碼,確定
點(diǎn)擊雙箭頭將左側(cè)所有表都添加到右側(cè),下一步-下一步-下一步-完成 等待所有表都創(chuàng)建到sqlserver服務(wù)器的數(shù)據(jù)庫(kù)中即可
代理平臺(tái)升級(jí)數(shù)據(jù)庫(kù)后 編輯config/const.asp isdbsql=true ' 數(shù)據(jù)庫(kù)類型 SqlUsername="xiuzhanwang" ' 登陸帳號(hào) SqlPassword="******" ' 登陸密碼 SqlDatabaseName="xiuzhanwang" ' 數(shù)據(jù)庫(kù)名稱 SqlHostIP="sql.xxx.vhostgo.com" ' 連接地址
然后用sql管理器或者navicat for sqlserver等工具連接sqlserver數(shù)據(jù)庫(kù),執(zhí)行以下sql語(yǔ)句修改部分字段類型
alter table countlist alter column c_memo nvarchar(MAX) alter table productlist alter column p_name nvarchar(MAX) alter table ShopCart alter column addtime datetime alter table ShopCart ADD DEFAULT getdate() for addtime alter table UserDetail ADD DEFAULT getdate() for u_regdate alter table UserDetail ADD DEFAULT 0 for u_resumesum alter table UserDetail ADD DEFAULT 0 for u_usemoney alter table UserDetail ADD DEFAULT 0 for u_Invoice alter table UserDetail ADD DEFAULT 0 for u_remcount alter table UserDetail ADD DEFAULT 0 for u_borrormax alter table countlist ADD DEFAULT 0 for u_in update UserDetail set u_resumesum=0 where u_resumesum is null update userdetail set u_remcount=0 where u_remcount is null update userdetail set u_borrormax=0 where u_borrormax is null update countlist set u_in=0 where u_in is null set identity_insert serverroomlist ON 再取消serverroomlist 表r_id字段的標(biāo)識(shí)
|
|||||
| >> 相關(guān)文章 | |||||
|
|
|||||