vote up 0 vote down star
1

I want to write a code that transfers data from on server to my SQL Server. Before I put the data in, I want to delete the current data. Then put the data from one to the other. How do I do that. This is snippets from the code I have so far.

string SQL = ConfigurationManager.ConnectionStrings["SQLServer"].ToString();
string OLD = ConfigurationManager.ConnectionStrings["Server"].ToString();

SqlConnection SQLconn = new SqlConnection(SQL);
string SQLstatement = "DELETE * FROM Data";
SqlCommand SQLcomm = new SqlCommand(SQLstatement, SQLconn);
SQLconn.Open();

OdbcConnection conn = new OdbcConnection(OLD);
string statement = "SELECT * FROM BILL.TRANSACTIONS ";
statement += "WHERE (TRANSACTION='NEW') ";            
OdbcCommand comm = new OdbcCommand(statement, conn);
comm.CommandTimeout = 0;
conn.Open();


SqlDataReader myDataReader = SQLcomm.ExecuteReader();
while (myDataReader.Read())
{
    //...            
}
SQLconn.Close();
SQLconn.Dispose();
flag

Just curious. Why are you doing this in c#? Is this an ongoing thing? Once?? – GregD Feb 20 at 20:39
Ongoing, which is why I would delete the data every month. I have some code snippets for all that, except, I dont know how to copy from one database and put in the SQL Server – unknown (yahoo) Feb 20 at 20:47

5 Answers

vote up 6 vote down check

Depending on which version of SQL Server you are using, the standard solution here is to use either DTS (2000 and before) or SSIS (2005 and on). You can turn it into an executable if you need to, schedule it straight from SQL Server, or run it manually. Both tools are fairly robust (although SSIS much more so) with methods to clear existing data, rollback in case of errors, transform data if necessary, write out exceptions, etc.

link|flag
+1 ETL is both overused and underused at the same time, but this is a good candidate. – Michael Meadows Feb 20 at 21:49
vote up 2 vote down

If you only need to import the data once, and you have a lot of data, why not use the "BULK INSERT" command? Link

link|flag
vote up 2 vote down

T-SQl allows you to insert data from a select query. It would look something like this:

insert into Foo
select * from Bar;

As long as the field types align this will work - otherwise you will have to massage the data from Bar to fit the fields from Foo.

link|flag
vote up 2 vote down

If at all possible I'd try and do it all in SQL Server. You can create a linked server to your other database server. Then simply use T-SQL to copy the data across - it would look something like...

INSERT INTO new_server_table (field1, field2)
SELECT x, y
FROM mylinkedserver.myolddatabase.myoldtable

If you need to do this on a regular basis or clear out the data first you can do this as part of a scheduled task using the SQL Agent.

link|flag
If you take this route, and the table is very large, make sure to bypass transactions, or it will be verrry slow. Bulk inserts are much faster for moving an entire table. – Michael Meadows Feb 20 at 22:00
Yes, completely agree Michael - good point. – Miles D Feb 21 at 8:31
vote up 0 vote down

When you need to do this once, take a look at the database publishing wizard (just google) and generate a script which does everything.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.