Du kan tjekke dens NULL-hed i sproc og RAISERROR
for at rapportere tilstanden tilbage til opkaldsstedet.
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
Så ring til:
exec dbo.CheckForNull @i = 1
eller
exec dbo.CheckForNull @i = null