Answer Posted / srividhya.s
Triggers are simply stored procedures that are executed
automatically by the database whenever
some event (usually a table update) happens.
sample:
CREATE [OR REPLACE]
TRIGGER trigger_name
BEFORE (or AFTER)
INSERT OR UPDATE [OF COLUMNS] OR DELETE
ON tablename
[FOR EACH ROW [WHEN (condition)]]
BEGIN
DBMS_OUTPUT.PUT_LINE(’Ur message to be
displayed ’ :NEW.NAME);
END;
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What does sqldatareader return?
What does ole stand for in excel?
What is DataReader Object?
Why do we use sqldataadapter?
Is bulk insert faster than insert?
What is ado.net components?
The answers which posted above is not satisfied my requirement? Can some one post teh exact answer? Thanx
What is the usage of the dataset object in ado.net?
What is ado connection?
Why do we need ado.net?
What is data adapter in ado.net with example?
What are all the classes that are available in System.Data Namespace?
Why ca not we use multiple inheritance and garbage collector paralelly in .net?
Explain all the classes those are used for database connections between sql server and asp.net?
What are the Features and disadvantages of dataset