程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> 限制sql server表更新和刪除行數

限制sql server表更新和刪除行數

編輯:關於SqlServer

不小心update忘記添加條件,簡單限制下!

trigger針對DML頻繁操作時性能不佳 ,注意自己實際情況!

create   trigger   tr_tblTime

on  tblTime

for   update,delete

as

if  ORIGINAL_LOGIN()in ('wind','snow')

and  (select   count(*)   from   deleted)> 10

BEGIN

     RAISERROR   ( 'Serious error, please contact the DBA',16,1)

     ROLLBACK   TRANSACTION

     RETURN

END

go

查看本欄目

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved