5,446,823 members and growing! (17,805 online)
Email Password   helpLost your password?
Database » Database » General     Intermediate

ADO.NET Generic Copy Table Data Function

By Michael Ceranski

This generic function will allow you to copy data between any two ADO.NET providers with one simple method call
C# 2.0, C#, Windows, .NET, .NET 2.0, Visual Studio, ADO.NET, DBA, Dev

Posted: 24 Jul 2007
Updated: 25 Jul 2007
Views: 21,641
Bookmarked: 19 times
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
11 votes for this Article.
Popularity: 4.63 Rating: 4.45 out of 5
0 votes, 0.0%
1
0 votes, 0.0%
2
3 votes, 27.3%
3
0 votes, 0.0%
4
8 votes, 72.7%
5

Introduction

Have you ever wanted to move data from a production system to a development box without the overhead of using DTS or SSIS? This generic function will allow you to copy data between any two ADO.NET providers with one simple method call. I have already used this function in place of DTS jobs on several occasions, due to its simplicity and ability to extend into more complex transformations with very little modification.

The CopyTable method

The CopyTable method takes 4 parameters:

  1. The source database connection. This is the connection that you are going to copy data from.
  2. The target database connection. This is the connection that you are going to copy data into.
  3. The source SQL statement. Use "select *" to select all the fields. If you want to filter what columns get copied to the source table, then you can specify the columns.
  4. The destination table name. This is the name of the table that the data will get copied to. Currently, the code assumes that you have already generated the table on the target database before you copy the data. It would be hard to automatically generate the table DDL due to the differences in the syntax for each database system.
/// <summary>

/// This method will copy the data in a table 

/// from one database to another. The

/// source and destination can be from any type of 

/// .NET database provider.

/// </summary>

/// <param name="source">Source database connection</param>

/// <param name="destination">Destination database connection</param>

/// <param name="sourceSQL">Source SQL statement</param>

/// <param name="destinationTableName">Destination table name</param>

public static void CopyTable(IDbConnection source,
    IDbConnection destination, String sourceSQL, String destinationTableName)
{
    System.Diagnostics.Debug.WriteLine(System.DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss") + 
        " " + destinationTableName + " load started");
    IDbCommand cmd = source.CreateCommand();
    cmd.CommandText = sourceSQL;
    System.Diagnostics.Debug.WriteLine("\tSource SQL: " + sourceSQL);
    try 
    {
        source.Open();
        destination.Open();
        IDataReader rdr = cmd.ExecuteReader();
        DataTable schemaTable = rdr.GetSchemaTable();

        IDbCommand insertCmd = destination.CreateCommand();
        string paramsSQL = String.Empty;

        //build the insert statement

        foreach (DataRow row in schemaTable.Rows) 
        {
            if (paramsSQL.Length > 0)
            paramsSQL += ", ";
            paramsSQL += "@" + row["ColumnName"].ToString();

            IDbDataParameter param = insertCmd.CreateParameter();
            param.ParameterName = "@" + row["ColumnName"].ToString();
            param.SourceColumn = row["ColumnName"].ToString();

            if (row["DataType"] == typeof(System.DateTime)) 
            {
                param.DbType = DbType.DateTime;
            }

            //Console.WriteLine(param.SourceColumn);

            insertCmd.Parameters.Add(param);
        }
        insertCmd.CommandText = 
            String.Format("insert into {0} ( {1} ) values ( {2} )",
            destinationTableName, paramsSQL.Replace("@", String.Empty),
            paramsSQL);
        int counter = 0;
        int errors = 0;
        while (rdr.Read()) 
        {
            try 
            {
                foreach (IDbDataParameter param in insertCmd.Parameters) 
                {
                    object col = rdr[param.SourceColumn];

                    //special check for SQL Server and 

                    //datetimes less than 1753

                    if (param.DbType == DbType.DateTime) 
                    {
                        if (col != DBNull.Value) 
                        {
                            //sql server can not have dates less than 1753

                            if (((DateTime)col).Year < 1753) 
                            {
                                param.Value = DBNull.Value;
                                continue;
                            }
                        }
                    }

                    param.Value = col;

                    //uncomment this line to see the 

                    //values being used for the insert

                    //System.Diagnostics.Debug.WriteLine( param.SourceColumn + " --> " + 

                    //param.ParameterName + " = " + col.ToString() );

                }
                insertCmd.ExecuteNonQuery();
                //un-comment this line to get a record count. You may only want to show status for every 1000 lines

                //this can be done by using the modulus operator against the counter variable

                //System.Diagnostics.Debug.WriteLine(++counter);

            }
            catch (Exception ex ) 
            {
                if( errors == 0 )
                System.Diagnostics.Debug.WriteLine(ex.Message.ToString());
                errors++;
            }
        }
        System.Diagnostics.Debug.WriteLine(errors + " errors");
        System.Diagnostics.Debug.WriteLine(counter + " records copied");
        System.Diagnostics.Debug.WriteLine(System.DateTime.Now.ToString("MM/dd/yyyy hh:mm:ss") + 
        " " + destinationTableName + " load completed");
    }
    catch (Exception ex) 
    {
        Console.WriteLine( ex.StackTrace.ToString());
        System.Diagnostics.Debug.WriteLine(ex);
    }
    finally 
    {
        destination.Close();
        source.Close();
    }
}

How to use the code

Copying the Products table from the Northwind database:

//pre-requisite: Create the Products table in the target database

SqlConnection src = 
    new SqlConnection(Data Source=localhost; Initial Catalog=
    Northwind; Integrated Security=True);
OdbcConnection dest = 
    new OdbcConnection("DSN=my_database;Uid=northwind_user;Pwd=password");
Utils.CopyTable(src, dest, "select * from Products", "ProductsCopy");

With some imagination, you can find many uses for this method. For example, oftentimes I will join several tables in the source database and use the results of the complex query in order to create a "temporary working table" to run reports against. To create this temporary working area, just pass the complex SQL statement as the sourceSQL parameter, create a table in the destination database to accommodate the result set and run the CopyTable function to load the data.

Points of interest

As you may have noticed, there is a section of code that is SQL Server-specific. This basically has to do with date-time values that are less than 1/1/1753. Unfortunately, I could not figure out a way to deal with this in an abstract manner. You may want to remove the section of code if you are not using SQL Server. You could also wrap this block of code with an if statement and check to see if the target connection is of the type SqlConnection.

//special check for SQL Server and datetimes less than 1753

if (param.DbType == DbType.DateTime) 
{
    if (col != DBNull.Value) 
    {
        //sql server can not have dates less than 1753

        if (((DateTime)col).Year < 1753) 
        {
            param.Value = DBNull.Value;
            continue;
        }
    }
}

I currently have not had a need to make a user interface for this application because I have generally used it for "behind the scenes" operations. However, with a little bit of work you could make a UI for this application that simply passes parameters to the CopyTable method and displays a progress bar for the end user.

History

  • 24 July, 2007 -- Original version posted
  • 25 July, 2007 -- Updated code to remove the calls to Program.Log, replacing them with System.Diagnostics.Debug.WriteLine

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Michael Ceranski


Michael is the co-founder and master consultant for Concepts2Code (www.concepts2code.com), a software consulting company based in Amherst, New York. He's been programming since the early 1990's. His vast programming experience includes VB, Delphi, C#, ASP, ASP.NET, Coldfusion and PHP. Michael also is a Microsoft Certified Application Developer and a Certified Technology Specialist for SQL Server.
Occupation: Web Developer
Location: United States United States

Other popular Database articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 22 of 22 (Total in Forum: 22) (Refresh)FirstPrevNext
Subject  Author Date 
GeneralProblem with supposed null valuememberJinx10119:09 20 Aug '08  
GeneralRe: Problem with supposed null valuememberMichael Ceranski3:01 21 Aug '08  
GeneralRe: Problem with supposed null value (FIXED)memberJinx1019:56 21 Aug '08  
GeneralRe: Problem with supposed null value (FIXED)memberMichael Ceranski9:59 21 Aug '08  
GeneralSweetmemberJinx10115:44 20 Aug '08  
Questionthats very good program...membertusharparmar@rediffmail.com15:42 31 Oct '07  
AnswerRe: thats very good program...memberMichael Ceranski5:51 1 Nov '07  
GeneralAccess DateTime fields do not copymembernmg1968:00 18 Sep '07  
GeneralRe: Access DateTime fields do not copymemberMichael Ceranski3:16 19 Sep '07  
GeneralGreat code but I have a problemmembernmg1962:18 12 Sep '07  
GeneralRe: Great code but I have a problemmemberMichael Ceranski2:38 12 Sep '07  
GeneralRe: Great code but I have a problemmembernmg1962:42 12 Sep '07  
GeneralRe: Great code but I have a problemmemberMichael Ceranski2:54 12 Sep '07  
GeneralRe: Great code but I have a problemmembernmg1963:04 12 Sep '07  
GeneralRe: Great code but I have a problem [FIX FOR PROBLEM]membernmg1963:19 12 Sep '07  
GeneralRe: Great code but I have a problemmemberMichael Ceranski3:25 12 Sep '07  
GeneralRe: Great code but I have a problemmembernmg1963:50 12 Sep '07  
GeneralRe: Great code but I have a problemmemberMichael Ceranski5:16 12 Sep '07  
GeneralRe: Great code but I have a problemmembernmg1965:33 12 Sep '07  
Generalworks and works wellmemberAl Ortega14:03 31 Jul '07  
GeneralRe: works and works wellmemberMichael Ceranski3:02 1 Aug '07  
GeneralUpdate to ArticlememberMichael Ceranski7:04 24 Jul '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 25 Jul 2007
Editor: Genevieve Sovereign
Copyright 2007 by Michael Ceranski
Everything else Copyright © CodeProject, 1999-2008
Web16 | Advertise on the Code Project