BCP忽略触发器,我该怎么办?

时间:2012-03-21 13:53:58

标签: triggers bcp

当我将BCP数据用于数据库时,不会触发触发器。 我该怎么做才能使触发器有用?我可以仅更新数据而不更改值吗?

     try
        {
            //get all data
            string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + excelFile + ";" + "Extended Properties=Excel 8.0;";
            OleDbConnection conn = new OleDbConnection(strConn);
            conn.Open();
            string strExcel = "";
            strExcel = string.Format("select * from [{0}$] where xh<>''", sheetName);
            OleDbDataAdapter oda = new OleDbDataAdapter(strExcel, strConn);
            oda.Fill(ds, sheetName);

            //BCP data
            using (SqlBulkCopy bcp = new SqlBulkCopy(connectionString))
            {
                bcp.SqlRowsCopied += new SqlRowsCopiedEventHandler(bcp_SqlRowsCopied);
                bcp.BatchSize = 100;//the speed of import
                bcp.NotifyAfter = 100;
                bcp.DestinationTableName = sheetName;//target table
                bcp.WriteToServer(ds.Tables[0]);
            }
        }
   catch (Exception ex)
        {
            System.Windows.Forms.MessageBox.Show(ex.Message);
        }

触发器正在跟随。

创建触发器getAge
在桌子上 用于插入,更新
作为
如果更新(生日)
update tablename set age = DateDiff(year,birthday,getdate())

1 个答案:

答案 0 :(得分:0)

查看此MSDN文章:http://msdn.microsoft.com/en-us/library/ms187640.aspx

使用bcp,默认情况下禁用触发器。要启用它,请使用以下参数:

-h "FIRE_TRIGGERS"

使用.NET提供的SqlBulkCopy类时,请使用SqlBulkCopyOptions枚举启用触发器。