Viewing 6 posts - 1 through 6 (of 6 total)
Thanks. I will check the indexes and the order of the fields.
September 30, 2003 at 2:52 am
quote:
All the code has to be wrapped in an Execute or sp_executesql string input. You cannot substitute a table with a variable.Thanks...
January 17, 2003 at 9:35 pm
You will need to do something like this:
declare @iVar1 varchar
declare @oVar1 varchar
--Populate the vars (aliasing is necessary)
select @iVar1 = i.Var1 from inserted i
select @oVar1 = d.Var1 from deleted d
--Check if...
July 24, 2002 at 10:38 pm
Thanks for bringing out this article. This has set me thinking - we are about to finish an app (SQL being the RDBMS) and now this has set us thinking!!
...
June 26, 2002 at 5:24 am
Viewing 6 posts - 1 through 6 (of 6 total)