Anda dapat memeriksa NULL-nya di sproc dan RAISERROR
untuk melaporkan keadaan kembali ke lokasi pemanggilan.
CREATE proc dbo.CheckForNull @i int
as
begin
if @i is null
raiserror('The value for @i should not be null', 15, 1) -- with log
end
GO
Kemudian hubungi:
exec dbo.CheckForNull @i = 1
atau
exec dbo.CheckForNull @i = null