1.

Point out the wrong statement.(a) We can have an INSTEAD OF insert/update/delete trigger on a table that successfully executed(b) DML Triggers are used to evaluate data after data manipulation using DML statements(c) INSTEAD OF triggers cause their source DML operation to skip(d) AFTER triggers cause their source DML operation to skipThis question was addressed to me in an online interview.The origin of the question is DML Triggers topic in section Developing with SQL Server of SQL Server

Answer»

The correct choice is (d) AFTER TRIGGERS CAUSE their SOURCE DML operation to skip

The best explanation: INSTEAD OF triggers cause their source DML operation to skip and they just execute the code provided inside them.



Discussion

No Comment Found

Related InterviewSolutions