在asp.net 2.0中使用SqlBulkCopy類遷移資料

來源:互聯網
上載者:User

標籤:des   style   blog   http   color   os   使用   io   strong   

在asp.net 2.0中使用SqlBulkCopy類遷移資料 (轉)

http://jackyrong.cnblogs.com/archive/2005/08/29/225521.html

我們經常要在一個表中將資料移轉到另一個表,當然,用的方法十分多了。在.net 2.0中,提供了一個sqlbulkcopy類,也可以實現如下的操作,下面簡單介紹下。比如一個表如下
CREATE TABLE Person3
(

PersonID int IDENTITY(1,1) PRIMARY KEY, 
Name nvarchar(200), 
Email nvarchar(200), 
Picture image 

)

INSERT INTO Person3(Name,Email,Picture) 
SELECT Name,Email,Picture FROM Person

假設person表已經存在了,則上面的語句可以往person3表中插入資料(在sql server 2005中執行)。現在我們使用下面的代碼來實現
   string connectionString = ConfigurationManager.ConnectionStrings["MyDatabase"].ConnectionString;

SqlConnection myConnection = new SqlConnection(connectionString);

SqlCommand myCommand = new SqlCommand("SELECT * FROM Person", myConnection);

myConnection.Open();

SqlDataReader dr = myCommand.ExecuteReader();

SqlConnection myNewConnection = new SqlConnection(connectionString);

myNewConnection.Open();

SqlBulkCopy bulk = new SqlBulkCopy(myNewConnection);

bulk.DestinationTableName = "[Person3]";

try

{

bulk.WriteToServer(dr);

}

catch (Exception ex)

{

Response.Write(ex.Message);

}

finally

{

myNewConnection.Close();

dr.Close();

myConnection.Close();

bulk.Close();

}

  下面來解析下。首先,建立一個資料庫連接,之後是很經典的代碼了,從person表中拿出資料,當到datareader中去。之後,我們又建立立了個資料連線,之後,使用

SqlBulkCopy bulk = new SqlBulkCopy(myNewConnection);

bulk.DestinationTableName = "[Person3]";

其中,將mynewconnection作為參數傳到 sqlbulkcopy類的構造參數中去,並指定目標遷移的表名是person3.
   之後,再使用bulk.WriteToServer(dr);就可以遷移了。
    而上面的person表和person3的結構是完全相同的,那麼如果結構不同的,怎麼辦呢?下面舉例子說明,建立一個表person2
  CREATE TABLE Person2 

PersonID int IDENTITY(1,1) PRIMARY KEY, 
FirstName nvarchar(200),
LastName nvarchar(200), 

Email nvarchar(200), 
Picture image
)
 如果我們按上面將person表遷移到person2表中去,將會出錯,因為欄位不同,而我們將採用下面的代碼
  string connectionString = ConfigurationManager.ConnectionStrings["MyDatabase"].ConnectionString;

SqlConnection myConnection = new SqlConnection(connectionString);

SqlCommand myCommand = new SqlCommand("SELECT * FROM Person", myConnection);

myConnection.Open();

SqlDataReader dr = myCommand.ExecuteReader();

SqlConnection myNewConnection = new SqlConnection(connectionString);

myNewConnection.Open();

SqlBulkCopy bulk = new SqlBulkCopy(myNewConnection);

bulk.DestinationTableName = "[Person2]";

bulk.ColumnMappings.Add("Name", "LastName");

bulk.ColumnMappings.Add("Email", "Email");

bulk.ColumnMappings.Add("Picture", "Picture");

try

{

bulk.WriteToServer(dr);

}

catch (Exception ex)

{

Response.Write(ex.Message);

}

finally

{

myNewConnection.Close();

dr.Close();

myConnection.Close();

bulk.Close();

}

  可以看到,這裡使用bulk.ColumnMappings.Add(“。。。”,“。。。”)來強制規定,源目標欄位和哪一個目標表的欄位相匹配了。
   據說用sqlbulkcopy類,在資料多的情況下,效能是十分好的,呵呵。

 

在asp.net 2.0中使用SqlBulkCopy類遷移資料

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.