SQLServer 針對大批量資料入庫的解決方案

來源:互聯網
上載者:User

  1: 針對大批量資料入庫,為了減少資料庫的連結次數,使用xml的形式一次性的入庫。具體參考代碼如下:

SQL xml的格式寫法
  CREATE Procedure B2B_cPersonCard_Xml
--Author:sey
--Description:insert into B2B_cPersonCard
--DateTime:2009-08-13
@xml nvarchar(max)
AS
begin
    declare @idHandle int
    EXEC sp_xml_preparedocument @idHandle OUTPUT, @xml  --建立xml的控制代碼
    print @idHandle  
    
    INSERT INTO [B2B_cPersonCard] (cEmpID,cType,cName,cCode,cAirID)
      SELECT cEmpID,cType,cName,cCode,cAirID FROM OPENXML(@idHandle,N'/root/PersonCard') with [B2B_cPersonCard]
      
      IF @@ERROR=0
       BEGIN
           SELECT 1
       END
       ELSE
           BEGIN
               SELECT 0
           END
           
       EXEC sp_xml_removedocument @idHandle  --xml文檔會儲存在sqlserver的緩衝中,為了避免記憶體不足,執行該語句 以釋放記憶體。

end

 

 2:C#組織Xml的格式的方法如下:

 

 

C# 組織xml方法
  public bool ADDPersonCard(List<PersonCard> list, string pType, int pEmpID)
        {
            //throw new Exception("The method or operation is not implemented.");

            XmlDocument document = new XmlDocument();
            XmlElement root = document.CreateElement("root");
            document.AppendChild(root);
            foreach (PersonCard personEntity in list)
            {
                XmlElement xmlPerson = document.CreateElement("PersonCard");
                xmlPerson.SetAttribute("cEmpID", pEmpID.ToString());
                xmlPerson.SetAttribute("cType", pType);
                xmlPerson.SetAttribute("cName", personEntity.CradName);
                xmlPerson.SetAttribute("cCode", personEntity.CardCode);
                xmlPerson.SetAttribute("cAirID", personEntity.AirID);
                root.AppendChild(xmlPerson);
            }
            SqlParameter[] parameters = null;
            parameters = new SqlParameter[] { new SqlParameter("@xml", document.InnerXml) };
            try
            {
                int result = 0;
                result = int.Parse(DBLib.GetDataTableBySP("B2B_cPersonCard_Xml", parameters, DBConnEnm.B2BDB).Rows[0][0].ToString());
                if (result > 0)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            catch (Exception e)
            {
                throw e;
            }
        }

 

將資料群組織成list 就ok了!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.