濮阳杆衣贸易有限公司

主頁 > 知識(shí)庫 > SQL Server批量插入數(shù)據(jù)案例詳解

SQL Server批量插入數(shù)據(jù)案例詳解

熱門標(biāo)簽:實(shí)體店地圖標(biāo)注怎么標(biāo) 武漢AI電銷機(jī)器人 股票配資電銷機(jī)器人 南京電銷外呼系統(tǒng)哪家好 地圖標(biāo)注如何弄全套標(biāo) 萬利達(dá)綜合醫(yī)院地圖標(biāo)注點(diǎn) 在電子版地圖標(biāo)注要收費(fèi)嗎 電銷機(jī)器人 深圳 外呼系統(tǒng)會(huì)封嗎

在SQL Server 中插入一條數(shù)據(jù)使用Insert語句,但是如果想要批量插入一堆數(shù)據(jù)的話,循環(huán)使用Insert不僅效率低,而且會(huì)導(dǎo)致SQL一系統(tǒng)性能問題。下面介紹SQL Server支持的兩種批量數(shù)據(jù)插入方法:Bulk和表值參數(shù)(Table-Valued Parameters),高效插入數(shù)據(jù)。

新建數(shù)據(jù)庫:

--Create DataBase  
create database BulkTestDB;  
go  
use BulkTestDB;  
go  
--Create Table  
Create table BulkTestTable(  
Id int primary key,  
UserName nvarchar(32),  
Pwd varchar(16))  
go 

一.傳統(tǒng)的INSERT方式

先看下傳統(tǒng)的INSERT方式:一條一條的插入(性能消耗越來越大,速度越來越慢)

        //使用簡(jiǎn)單的Insert方法一條條插入 [慢]
        #region [ simpleInsert ]
        static void simpleInsert()
        {
            Console.WriteLine("使用簡(jiǎn)單的Insert方法一條條插入");
            Stopwatch sw = new Stopwatch();
            SqlConnection sqlconn = new SqlConnection("server=.;database=BulkTestDB;user=sa;password=123456;");
            SqlCommand sqlcmd = new SqlCommand();
            sqlcmd.CommandText = string.Format("insert into BulkTestTable(Id,UserName,Pwd)values(@p0,@p1,@p2)");
            sqlcmd.Parameters.Add("@p0", SqlDbType.Int);
            sqlcmd.Parameters.Add("@p1", SqlDbType.NVarChar);
            sqlcmd.Parameters.Add("@p2", SqlDbType.NVarChar);
            sqlcmd.CommandType = CommandType.Text;
            sqlcmd.Connection = sqlconn;
            sqlconn.Open();
            try
            {
                //循環(huán)插入1000條數(shù)據(jù),每次插入100條,插入10次。  
                for (int multiply = 0; multiply  10; multiply++)
                {
                    for (int count = multiply * 100; count  (multiply + 1) * 100; count++)
                    {
 
                        sqlcmd.Parameters["@p0"].Value = count;
                        sqlcmd.Parameters["@p1"].Value = string.Format("User-{0}", count * multiply);
                        sqlcmd.Parameters["@p2"].Value = string.Format("Pwd-{0}", count * multiply);
                        sw.Start();
                        sqlcmd.ExecuteNonQuery();
                        sw.Stop();
                    }
                    //每插入10萬條數(shù)據(jù)后,顯示此次插入所用時(shí)間  
                    Console.WriteLine(string.Format("Elapsed Time is {0} Milliseconds", sw.ElapsedMilliseconds));
                }
                Console.ReadKey();
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
        }
        #endregion

循環(huán)插入1000條數(shù)據(jù),每次插入100條,插入10次,效率是越來越慢。

二.較快速的Bulk插入方式:

使用使用Bulk插入[ 較快 ]

        //使用Bulk插入的情況 [ 較快 ]
        #region [ 使用Bulk插入的情況 ]
        static void BulkToDB(DataTable dt)
        {
            Stopwatch sw = new Stopwatch();
            SqlConnection sqlconn = new SqlConnection("server=.;database=BulkTestDB;user=sa;password=123456;");
            SqlBulkCopy bulkCopy = new SqlBulkCopy(sqlconn);
            bulkCopy.DestinationTableName = "BulkTestTable";
            bulkCopy.BatchSize = dt.Rows.Count;
            try
            {
                sqlconn.Open();
                if (dt != null  dt.Rows.Count != 0)
                {
                    bulkCopy.WriteToServer(dt);
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex.Message);
            }
            finally
            {
                sqlconn.Close();
                if (bulkCopy != null)
                {
                    bulkCopy.Close();
                }
            }
        }
        static DataTable GetTableSchema()
        {
            DataTable dt = new DataTable();
            dt.Columns.AddRange(new DataColumn[] { 
                new DataColumn("Id",typeof(int)),
                new DataColumn("UserName",typeof(string)),
                new DataColumn("Pwd",typeof(string))
            });
            return dt;
        }
        static void BulkInsert()
        {
            Console.WriteLine("使用簡(jiǎn)單的Bulk插入的情況");
            Stopwatch sw = new Stopwatch();
            for (int multiply = 0; multiply  10; multiply++)
            {
                DataTable dt = GetTableSchema();
                for (int count = multiply * 100; count  (multiply + 1) * 100; count++)
                {
                    DataRow r = dt.NewRow();
                    r[0] = count;
                    r[1] = string.Format("User-{0}", count * multiply);
                    r[2] = string.Format("Pwd-{0}", count * multiply);
                    dt.Rows.Add(r);
                }
                sw.Start();
                BulkToDB(dt);
                sw.Stop();
                Console.WriteLine(string.Format("Elapsed Time is {0} Milliseconds", sw.ElapsedMilliseconds));
            }
        }
        #endregion

循環(huán)插入1000條數(shù)據(jù),每次插入100條,插入10次,效率快了很多。

三.使用簡(jiǎn)稱TVPs插入數(shù)據(jù)

打開sqlserrver,執(zhí)行以下腳本:

--Create Table Valued  
CREATE TYPE BulkUdt AS TABLE  
  (Id int,  
   UserName nvarchar(32),  
   Pwd varchar(16))  

成功后在數(shù)據(jù)庫中發(fā)現(xiàn)多了BulkUdt的緩存表。

使用簡(jiǎn)稱TVPs插入數(shù)據(jù)

        //使用簡(jiǎn)稱TVPs插入數(shù)據(jù) [最快]
        #region [ 使用簡(jiǎn)稱TVPs插入數(shù)據(jù) ]
        static void TbaleValuedToDB(DataTable dt)
        {
            Stopwatch sw = new Stopwatch();
            SqlConnection sqlconn = new SqlConnection("server=.;database=BulkTestDB;user=sa;password=123456;");
            const string TSqlStatement =
                  "insert into BulkTestTable (Id,UserName,Pwd)" +
                  " SELECT nc.Id, nc.UserName,nc.Pwd" +
                  " FROM @NewBulkTestTvp AS nc";
            SqlCommand cmd = new SqlCommand(TSqlStatement, sqlconn);
            SqlParameter catParam = cmd.Parameters.AddWithValue("@NewBulkTestTvp", dt);
            catParam.SqlDbType = SqlDbType.Structured;
            catParam.TypeName = "dbo.BulkUdt";
            try
            {
                sqlconn.Open();
                if (dt != null  dt.Rows.Count != 0)
                {
                    cmd.ExecuteNonQuery();
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine("error>" + ex.Message);
            }
            finally
            {
                sqlconn.Close();
            }
        }
        static void TVPsInsert()
        {
            Console.WriteLine("使用簡(jiǎn)稱TVPs插入數(shù)據(jù)");
            Stopwatch sw = new Stopwatch();
            for (int multiply = 0; multiply  10; multiply++)
            {
                DataTable dt = GetTableSchema();
                for (int count = multiply * 100; count  (multiply + 1) * 100; count++)
                {
                    DataRow r = dt.NewRow();
                    r[0] = count;
                    r[1] = string.Format("User-{0}", count * multiply);
                    r[2] = string.Format("Pwd-{0}", count * multiply);
                    dt.Rows.Add(r);
                }
                sw.Start();
                TbaleValuedToDB(dt);
                sw.Stop();
                Console.WriteLine(string.Format("Elapsed Time is {0} Milliseconds", sw.ElapsedMilliseconds));
            }
            Console.ReadLine();  
        }
        #endregion

循環(huán)插入1000條數(shù)據(jù),每次插入100條,插入10次,效率是越來越慢,后面測(cè)試,將每次插入的數(shù)據(jù)量增大,會(huì)更大的體現(xiàn)TPVS插入的效率。

到此這篇關(guān)于SQL Server批量插入數(shù)據(jù)案例詳解的文章就介紹到這了,更多相關(guān)SQL Server批量插入數(shù)據(jù)內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • SQL Server 批量插入數(shù)據(jù)的完美解決方案
  • SQLServer2008存儲(chǔ)過程實(shí)現(xiàn)數(shù)據(jù)插入與更新
  • Python實(shí)現(xiàn)讀取SQLServer數(shù)據(jù)并插入到MongoDB數(shù)據(jù)庫的方法示例
  • SQLServer中防止并發(fā)插入重復(fù)數(shù)據(jù)的方法詳解
  • 詳解C#批量插入數(shù)據(jù)到Sqlserver中的四種方式

標(biāo)簽:濟(jì)寧 濟(jì)源 臺(tái)州 廣東 泰安 武威 汕頭 安徽

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《SQL Server批量插入數(shù)據(jù)案例詳解》,本文關(guān)鍵詞  SQL,Server,批量,插入,數(shù)據(jù),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《SQL Server批量插入數(shù)據(jù)案例詳解》相關(guān)的同類信息!
  • 本頁收集關(guān)于SQL Server批量插入數(shù)據(jù)案例詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    昌黎县| 武夷山市| 平顺县| 华容县| 湘阴县| 广南县| 蒲城县| 临澧县| 成武县| 闵行区| 舒兰市| 博湖县| 伊宁市| 莲花县| 康平县| 大渡口区| 和龙市| 巴楚县| 尚志市| 平度市| 新蔡县| 成都市| 民和| 怀仁县| 芦溪县| 丹江口市| 安塞县| 邯郸市| 平定县| 辽宁省| 北宁市| 柳林县| 汉中市| 遵义市| 黄山市| 伊宁县| 南漳县| 临潭县| 丰镇市| 阳西县| 岐山县|