中斷 SQL Server 中的 SQL 腳本執行
如果發生意外情況,大型或複雜的 SQL 腳本有時需要立即終止。 SQL Server 提供了多種方法來實現此目的。
使用raiserror
raiserror
語句透過觸發嚴重錯誤突然結束腳本執行。 嚴重等級為 20 或更高,並結合 WITH LOG
選項是必要的:
<code class="language-sql">raiserror('Critical error encountered', 20, -1) with log</code>
此操作將關閉資料庫連接,停止進一步的腳本處理。
僱用noexec
noexec
指令設定一個標誌,阻止執行後續語句。 與 raiserror
不同,它不會終止連線; 僅在 noexec
停用後才恢復執行:
<code class="language-sql">print 'Initial message' go print 'Error detected; script halted!' set noexec on print 'This message will not be displayed.' go -- End of script set noexec off -- Execution resumes here</code>
重要提示:
raiserror
需要管理權限並中斷資料庫連線。 noexec
只影響目前會話,不會中斷連線。 GO
批次分隔符號正確運作。 最佳方法取決於 SQL 腳本的特定需求和上下文。
以上是如何在進程中停止 SQL Server 腳本的執行?的詳細內容。更多資訊請關注PHP中文網其他相關文章!