Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 Migrate from Access to SQL

Author  Topic 

guruchi_20
Starting Member

24 Posts

Posted - 2009-02-11 : 00:13:56
need help to migrate the Access Database to SQL Database without using the DTS (Data Transformation Services)

how to do this,

Thanks,
Joey Joya

PeterNeo
Constraint Violating Yak Guru

357 Posts

Posted - 2009-02-11 : 02:18:20
Its possible but tedious job.
Use OPENROWSET and need to write this for all tables manually.
some thing like
INSERT INTO tbale SELECT CustomerID, CompanyName
FROM OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'C:\Program Files\Microsoft Office\OFFICE11\SAMPLES\Northwind.mdb';
'admin';'',Customers)



"There is only one difference between a dream and an aim.
A dream requires soundless sleep to see,
whereas an aim requires sleepless efforts to achieve..!!"
Go to Top of Page

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2009-02-11 : 08:47:41
Use Tools like SSMA for Access to migrate .
Go to Top of Page
   

- Advertisement -