What are two virtual tables available during database
trigger execution ?
Answers were Sorted based on User's Feedback
Answer / tulsi
The table columns are referred as OLD.column_name and
NEW.column_name.
For triggers related to INSERT only NEW.column_name values
only available.
For triggers related to UPDATE only OLD.column_name
NEW.column_name values only available.
For triggers related to DELETE only OLD.column_name values
only available
Is This Answer Correct ? | 12 Yes | 3 No |
What is sharding in sql?
What is sql deadlock?
i have some prob lem to tell me about my self in interview first round ...
what are the maximum number of rows that can be constructed by inserting rows directly in value list? : Transact sql
How can you view the errors encountered in a trigger?
Practice 1: Changes to data will only be allowed on tables during normal office hours of 8.45 in the morning until 5.30 in the afternoon, MONDAY through FRIDAY. A. Create a procedure called SECURE_DML that prevents the DML statement from executing outside of normal office hours, returning the message: “you may only make changes during normal office hours” b. Create a statement trigger on the PRODUCT table which calls the above procedure. c. Test it by inserting a new record in the PRODUCT table.
explain the delete statements in sql
What are the different tcl commands in sql?
what are the differences between char and nchar? : Sql dba
List and explain the different types of join clauses supported in ansi-standard sql?
How does an execution block start and end in pl sql?
What is a natural join sql?