Question:
How to transfer MS Access into SQL server?
george yen
2006-12-31 15:07:49 UTC
I am new to SQL server. Is there any one can tell me how to transfer the Tables, Forms, Querys, reports and Macros to SQL? (Using DTS ?)
Three answers:
Richard H
2007-01-02 12:04:59 UTC
Search the Access help file for "Upsizing Wizard".
Jhered
2006-12-31 15:46:40 UTC
You could use SSIS (built into sql server 2005) or DTS (sql server 2000) (also known as integration services)



You could use a Linked server (inside of sql you can create a link to your ms access database) then do an INSERT INTO [sqlserver.table] FROM [msaccess.table] command to copy your tables from access to SQL directly.



http://www.databasejournal.com/features/mssql/article.php/3085211



OR You could use the Access upsizing wizard:

http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q325017



i think those are the best 3 options.
Erika
2016-12-01 14:17:48 UTC
In EXCEL, export (keep AS) the information to a CSV (Comma Separated fee) document, it truly is a textual content document it truly is formatted by a comma frequently, or different delimeters alongside with a quote " or each so often an area or tab. Then IMPORT the information into your MySQL or *sq. database through phpMyadmin or similar software.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...