The raiserror Metode
raiserror('Oh no a fatal error', 20, -1) with log
Ini akan menghentikan koneksi, sehingga menghentikan sisa skrip agar tidak berjalan.
Perhatikan bahwa tingkat keparahan 20 atau lebih tinggi dan WITH LOG
opsi diperlukan untuk bekerja dengan cara ini.
Ini bahkan berfungsi dengan pernyataan GO, mis.
print 'hi'
go
raiserror('Oh no a fatal error', 20, -1) with log
go
print 'ho'
Akan memberi Anda output:
hi
Msg 2745, Level 16, State 2, Line 1
Process ID 51 has raised user error 50000, severity 20. SQL Server is terminating this process.
Msg 50000, Level 20, State 1, Line 1
Oh no a fatal error
Msg 0, Level 20, State 0, Line 0
A severe error occurred on the current command. The results, if any, should be discarded.
Perhatikan bahwa 'ho' tidak dicetak.
CAVEAT:
- Ini hanya berfungsi jika Anda masuk sebagai admin (peran 'sysadmin'), dan juga membuat Anda tidak memiliki koneksi database.
- Jika Anda TIDAK masuk sebagai admin, panggilan RAISEERROR () itu sendiri akan gagal dan skrip akan terus dijalankan .
- Ketika dipanggil dengan sqlcmd.exe, kode keluar 2745 akan dilaporkan.
Referensi: http://www.mydatabasesupport.com/forums/ms-sqlserver/174037-sql-server-2000-abort-whole-script.html#post761334
Metode noexec
Metode lain yang berfungsi dengan pernyataan GO adalah set noexec on
. Ini menyebabkan sisa skrip dilewati. Itu tidak mengakhiri koneksi, tetapi Anda harus noexec
mematikan lagi sebelum perintah apa pun akan dijalankan.
Contoh:
print 'hi'
go
print 'Fatal error, script will not continue!'
set noexec on
print 'ho'
go
-- last line of the script
set noexec off -- Turn execution back on; only needed in SSMS, so as to be able
-- to run this script again in the same session.