开发者

How to Import MicroSoft Access Database (mdb) into SQL Express File using SQLCMD?

开发者 https://www.devze.com 2023-01-30 23:30 出处:网络
For some reason开发者_开发技巧 neither SQL managment studio nor import and export wizard works on my friends network due to some security policy

For some reason开发者_开发技巧 neither SQL managment studio nor import and export wizard works on my friends network due to some security policy

i asked a question about OSQL two days ago and StackOverflow guys told me it is going to be obselete and that i should use SQLCMD instead.

now i am stuck with this screen and cant do anything :(

How to Import MicroSoft Access Database (mdb) into SQL Express File using SQLCMD?

to cut long things short my question is very precise:

using SQLCMD..

1-need to import and export command from AND to MDB/MDF

2-need attach / detach commands


mokokamello

below is how to attach new database and make sure your database is attached

How to Import MicroSoft Access Database (mdb) into SQL Express File using SQLCMD?

you also will need to check these links

http://msdn.microsoft.com/en-us/library/ms165673.aspx

http://msdn.microsoft.com/en-us/library/ms188031.aspx AND THE MOST IMPORTANT LINK

http://support.microsoft.com/kb/224071

if you want to dettach

sp_detach_db DatabaseName
Go


SQLCMD allows you to enter Transact-SQL statements to the chosen server.

The T-SQL command for connecting to an external data source is OPENDATASOURCE

More info here:

You should be able to construct a series of queries using this in order to pull in, and export the data you are working with.

The SProc to detatch a database is sp_detach_db, and to attach sp_attach_db

More information here, here and here

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号