Je zou kunnen controleren op NULL-heid in de sproc en RAISERROR
om de status terug te melden aan de oproepende locatie.
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
Bel dan:
exec dbo.CheckForNull @i = 1
of
exec dbo.CheckForNull @i = null