PC Review
Forums
Newsgroups
Microsoft DotNet
Microsoft ADO .NET
Need to upgrade users from access db to SQL Server db through code...
Forums
Newsgroups
Microsoft DotNet
Microsoft ADO .NET
Need to upgrade users from access db to SQL Server db through code...
![]() |
Need to upgrade users from access db to SQL Server db through code... |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
I want to roll out an update that will update my users databases from Access
to SQL Server. Now, I have the scripts all written that will create all my tables and relationships and such, but I need to copy the data over. What is the recommended way to do this in code? |
|
|
|
#2 |
|
Guest
Posts: n/a
|
If you have the option, use DTS (SSIS in SQL Server). You can also export to
a CSV and use one of the SQL Server bulk loading methods. Or, you can create a DataSet in code, populate from Access and update SQL Server with it. It is a bit trickier this way, but uses a syntax you would understand if you have done a lot of ADO.NET. The longevity of the code is one of the keys. Is this a one time thing or do you need this to be done from time to time? If this is perpetuaal code, I would spend the time to set up DTS/SSIS if it were me. This can be expensive (time wise) on a one shot deal. -- Gregory A. Beamer MVP; MCP: +I, SE, SD, DBA ************************************************* Think outside of the box! ************************************************* "0to60" <holeshot60_nospam_@yahoo.com> wrote in message news:Owpwz3c1GHA.1288@TK2MSFTNGP03.phx.gbl... >I want to roll out an update that will update my users databases from >Access to SQL Server. Now, I have the scripts all written that will create >all my tables and relationships and such, but I need to copy the data over. >What is the recommended way to do this in code? > |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 

