I am only getting results for converting a MS Accss 'database' to a SQL 'database'. ...... I just want to convert one MS Access 'table' to SQL Server (2008) 'table'.
What is the difference ?
debasisdas
Posting Genius
6,872 posts since Feb 2007
Reputation Points: 666
Solved Threads: 434
You can simply use the Import and Export wizard in SQL server Management studio
Netcode
Veteran Poster
1,021 posts since Jun 2009
Reputation Points: 43
Solved Threads: 67
Try to export the access table into a CSV file and import/load the same in SQL Server.
debasisdas
Posting Genius
6,872 posts since Feb 2007
Reputation Points: 666
Solved Threads: 434
If I use the Import and Export wizard then I have to create a whole NEW database in SQL server. But our project already has an existing database. I am looking for a way to convert/marge that one single Access table to SQL table....without creating a new database.
Thank you!!!!
You can create a new database (if you have the necessary rights), and get the table from there:
select * into tablename from newdb.dbo.tablename
If you don't have the necessary rights on the server, then I guess you can always create the table manually and use Access with an Append Query to insert the data on a linked table, but it's way easier to just create a new db, get your data and drop the db.
adam_k
Practically a Posting Shark
803 posts since Jun 2011
Reputation Points: 256
Solved Threads: 149