What are the two virtual tables SQL Server maintains for
triggers?
Answer Posted / sri
The 2 virtual tables are the OLD and the NEW
OLD is invalid in the case of INSERT and NEW is invalid in
the case of DELETE statements
Inside the trigger we can use the OLD and NEW as follows
:OLD.columnname
:NEW.columnname
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
How to find the version of sql server? : sql server database administration
Benefits of Stored Procedures?
Does partitioning help performance?
What is the beast way to write CTE in SQL Server ?
What are alternate keys?
How to rebuild master databse?
What do we have to check in database testing?
Name some of the open source software that you can use in alternative to SSR?
What is microsoft sql server?
Can you pass expressions to stored procedure parameters?
What is an sql server agent?
What is use of attribute hierarchy optimized state? : sql server analysis services, ssas
what is an index? : Sql server database administration
What is change data capture (cdc) in sql server 2008?
What is the difference between insensitive and scroll cursor?