Is it possible to use some kind of reflection in the parameters in the T-SQL module (function, procedure)?
procedure x(@foo nvarchar(max),@bar nvarchar(max)) ... set @foo = isnull(@foo,0); set @bar = isnull(@bar,0);
Is it possible to iterate over my parameters and set their values ββin a loop? Or do I need to use SQLCLR for this?
source share