.NET Tutorials, Forums, Interview Questions And Answers
Welcome :Guest
 
Sign In
Register
 
Win Surprise Gifts!!!
Congratulations!!!



Home >> Code Snippets >> ADO.NET >> Post New Resource Bookmark and Share

 Subscribe to Code Snippets

Bulk Copy Operation

Posted By :Nikhil Kumar      Posted Date :27/02/2010   Points :10   Category: ADO.NET    URL: http://fast-get.com

This code shows you how to do bulk copy operation using C#.
 


string connectionString = "";
using (SqlConnection sc = new SqlConnection(connectionString))
{ 
    sc.Open();

    SqlCommand commandSourceData = new SqlCommand("SELECT * FROM StoresBackup;", sc);
    SqlDataReader reader =  commandSourceData.ExecuteReader();
    using (SqlConnection dc = new  SqlConnection(connectionString))
    { 
        dc.Open();
        using (SqlBulkCopy bulkCopy = new SqlBulkCopy(dc))
        {
             bulkCopy.DestinationTableName = "Stores";
             bulkCopy.WriteToServer(reader);
        }
    }
}



Featured Articles


Design Pattern Interview Questions Part (3)
Software Architecture Interview Questions Part 3 State Pattern, Stratergy pattern,Visitor pattern, Adapter and fly weight ... Read More
Software Architecture Interview Questions Part 4- Design Patterns
(A) Can you explain bridge pattern? (A) Can you explain composite pattern? (I) Can you explain decorator pattern ? (A) Can you explain Façade pattern? (A) Can you explain chain of responsibility ( COR)? (I) Can you explain proxy pattern? (B) Can you explain template pattern? ... Read More
UML Interview Question Part 1
(B) Define UML? (I) Can you explain use case diagrams? (I) Can you explain primary and secondary actors? (I) How does a simple use case look like? (I) Can you explain 'Extend' and 'Include' in use cases? (I) Can you explain class diagrams? (B) How do we represent private, public and protected in class diagrams? (I) what does associations in a class diagram mean? (I) Can you explain aggregation and composition in class diagrams? (A) What are composite structure diagram and reflexive association in class diagrams? ... Read More
Responses

No response found. Be the first to respond this post

Post Comment
You must Sign In To post reply
Find More code samples in C#, ASP.Net, Vb.Net and more Here

Hall of Fame    Twitter   Terms of Service    Privacy Policy    Contact Us    Archives   Tell A Friend