Click to See Complete Forum and Search --> : How do I export MS SQL table to MS Access table


faamugol
08-10-2006, 04:49 AM
hi,

I need to export MS SQL table to MS Access table without copying record by record as I have a table of 5.000.000.
how can I do:

Select * from my_tableSQL
Insert into my_tableMSAccess

Thanks in advance

silverbullet24
08-10-2006, 11:18 AM
do you have access to enterprise manager so you can export them to a text file and then import it into access?

russell
08-10-2006, 12:20 PM
use dts

metalman3d
08-11-2006, 02:03 PM
do you have access to enterprise manager so you can export them to a text file and then import it into access?

I'd say that's the easiest way to go. If you don't have enterprise manager, just do a quick script that spits out all the fields in asp as a comma delimiated list, copy and paste to a text file and upload that.

russell
08-11-2006, 02:35 PM
dts is easist, fastest (by far)

if u don't have EM then have to do something else

chrismartz
08-12-2006, 10:49 PM
Could map the access table as a mssql table. Then use sql enterprise manager to select what you want, then insert them into the access connection.