標籤:des style blog color 使用 io strong 資料
如果要在Production執行資料改動必須小心,可以使用事務提前驗證一下自己寫的SQL是不是你期望的。尤其是Update的where 條件有問題的話,跟新的記錄就會超出預期的範圍。如下面的語句,一著急我差點把cartid = 678417 忘了,要是在Production執行影響就大了。
BEGIN TRANSACTIONupdate cartitem set deleted=0 where cartid = 678417 and modifieddate > ‘2014-08-07‘select * from cartitem where cartid = 678417 order by modifieddate descROLLBACK TRANSACTION
下面語句實現begin tran 和commit tran之間的語句,任一如果出現錯誤,所有都不執
set XACT_ABORT ON ---如果不設定該項為ON,在sql中預設為OFF,那麼只只復原產生錯誤的 Transact-SQL 陳述式;設為ON,復原整個事務begin tran t1 ---啟動一個事務update cartitem set deleted=0 where cartid = 678417 and modifieddate > ‘2014-08-07‘
delete from [Order] where Id=2103264408
commit tran t1 ---提交事務
事務的try, Catch
BEGIN TRY BEGIN TRANSACTION insert into dbo.area values(‘1111‘) insert into dbo.area values(‘2222‘) select 1/0 insert into dbo.area values(‘333‘) COMMITEND TRYBEGIN CATCH IF @@TRANCOUNT > 0 ROLLBACK DECLARE @ErrMsg nvarchar(4000), @ErrSeverity int SELECT @ErrMsg = ERROR_MESSAGE(), @ErrSeverity = ERROR_SEVERITY() RAISERROR(@ErrMsg, @ErrSeverity, 1)END CATCH