I wanted to show row and column where field is null.
i already see this example here
but i don't understand xml code.
my code is like this
if exists (select * from Header where [name] is Null or [zip] is Null or [age] is Null or [city] is Null )
begin
declare @error1 as varchar (50)
select @error1=[id] from Header where [name] is Null or [zip] is Null or [age] is Null or [city] is Null
declare @error2 AS varchar(50)
DECLARE ocur CURSOR FOR
select [id] from Header where [name] is Null or [zip] is Null or [age] is Null or [city] is Null
OPEN ocur
FETCH NEXT FROM ocur
INTO @error1
WHILE @@FETCH_STATUS = 0
BEGIN
--set @error2 = @error2 + @error1 + ', '
set @error2 = 'error -' + @error1
insert into yan values(@error2,@uploads, GETDATE() )
FETCH NEXT FROM ocur INTO @error1
END
--insert into table_error values(@error2,@uploads, GETDATE() )
CLOSE ocur
DEALLOCATE ocur
end
else
begin
insert code
end
so i just need row code that show where column is null.
Thanks