tomjscribe
Programmer
I want to create a generic trigger that KNOWS what table it is built against. I took a guess the @@tablename might be a system variable and hoped the following code would work:
declare @tblname as char(50)
select @tblname = @@tablename
It did not.
ANY CLUES.
Again I want to write a generic Trigger that knows which table it is build against.
Thanks
declare @tblname as char(50)
select @tblname = @@tablename
It did not.
ANY CLUES.
Again I want to write a generic Trigger that knows which table it is build against.
Thanks