Bagikan melalui


SqlBulkCopy.DestinationTableName Properti

Definisi

Nama tabel tujuan di server.

public:
 property System::String ^ DestinationTableName { System::String ^ get(); void set(System::String ^ value); };
public string DestinationTableName { get; set; }
member this.DestinationTableName : string with get, set
Public Property DestinationTableName As String

Nilai Properti

Nilai DestinationTableName string properti, atau null jika tidak ada yang disediakan.

Contoh

Aplikasi konsol berikut menunjukkan cara memuat data secara massal menggunakan koneksi yang sudah terbuka. Tabel tujuan adalah tabel dalam database AdventureWorks .

Dalam contoh ini, koneksi pertama kali digunakan untuk membaca data dari tabel SQL Server ke SqlDataReader instans. Data sumber tidak harus berada di SQL Server; Anda dapat menggunakan sumber data apa pun yang dapat dibaca ke IDataReader atau dimuat ke DataTable.

Penting

Sampel ini tidak akan berjalan kecuali Anda telah membuat tabel kerja seperti yang dijelaskan dalam Penyiapan Contoh Salinan Massal. Kode ini disediakan untuk mendemonstrasikan sintaks untuk menggunakan SqlBulkCopy saja. Jika tabel sumber dan tujuan berada dalam instans SQL Server yang sama, lebih mudah dan lebih cepat untuk menggunakan pernyataan Transact-SQL INSERT … SELECT untuk menyalin data.

using Microsoft.Data.SqlClient;

class Program
{
    static void Main()
    {
        string connectionString = GetConnectionString();
        // Open a sourceConnection to the AdventureWorks database.
        using (SqlConnection sourceConnection =
                   new SqlConnection(connectionString))
        {
            sourceConnection.Open();

            // Perform an initial count on the destination table.
            SqlCommand commandRowCount = new SqlCommand(
                "SELECT COUNT(*) FROM " +
                "dbo.BulkCopyDemoMatchingColumns;",
                sourceConnection);
            long countStart = System.Convert.ToInt32(
                commandRowCount.ExecuteScalar());
            Console.WriteLine("Starting row count = {0}", countStart);

            // Get data from the source table as a SqlDataReader.
            SqlCommand commandSourceData = new SqlCommand(
                "SELECT ProductID, Name, " +
                "ProductNumber " +
                "FROM Production.Product;", sourceConnection);
            SqlDataReader reader =
                commandSourceData.ExecuteReader();

            // Open the destination connection. In the real world you would 
            // not use SqlBulkCopy to move data from one table to the other 
            // in the same database. This is for demonstration purposes only.
            using (SqlConnection destinationConnection =
                       new SqlConnection(connectionString))
            {
                destinationConnection.Open();

                // Set up the bulk copy object. 
                // Note that the column positions in the source
                // data reader match the column positions in 
                // the destination table so there is no need to
                // map columns.
                using (SqlBulkCopy bulkCopy =
                           new SqlBulkCopy(destinationConnection))
                {
                    bulkCopy.DestinationTableName =
                        "dbo.BulkCopyDemoMatchingColumns";

                    try
                    {
                        // Write from the source to the destination.
                        bulkCopy.WriteToServer(reader);
                    }
                    catch (Exception ex)
                    {
                        Console.WriteLine(ex.Message);
                    }
                    finally
                    {
                        // Close the SqlDataReader. The SqlBulkCopy
                        // object is automatically closed at the end
                        // of the using block.
                        reader.Close();
                    }
                }

                // Perform a final count on the destination 
                // table to see how many rows were added.
                long countEnd = System.Convert.ToInt32(
                    commandRowCount.ExecuteScalar());
                Console.WriteLine("Ending row count = {0}", countEnd);
                Console.WriteLine("{0} rows were added.", countEnd - countStart);
                Console.WriteLine("Press Enter to finish.");
                Console.ReadLine();
            }
        }
    }

    private static string GetConnectionString()
    // To avoid storing the sourceConnection string in your code, 
    // you can retrieve it from a configuration file. 
    {
        return "Data Source=(local); " +
            " Integrated Security=true;" +
            "Initial Catalog=AdventureWorks;";
    }
}

Keterangan

Jika DestinationTableName belum diatur ketika WriteToServer dipanggil, akan ArgumentNullException dilemparkan. Jika DestinationTableName dimodifikasi saat WriteToServer operasi sedang berjalan, perubahan tidak memengaruhi operasi saat ini. Nilai baru DestinationTableName digunakan saat WriteToServer berikutnya metode dipanggil.

DestinationTableName adalah nama tiga bagian (<database>.<owningschema>.<name>). Anda dapat memenuhi syarat nama tabel dengan database dan skema pemiliknya jika Anda memilih. Namun, jika nama tabel menggunakan garis bawah ("_") atau karakter khusus lainnya, Anda harus menghindari nama menggunakan tanda kurung di sekitarnya seperti dalam ([<database>.<owningschema>.<name_01>]).

Anda dapat menyalin data secara massal ke tabel sementara dengan menggunakan nilai seperti tempdb..#table atau tempdb.<owner>.#table untuk DestinationTableName properti .

Berlaku untuk