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 provider ado.net use by default? Explain the role of data provider in ado.net? What is the role of data provider in ado.net?
Which namespaces are used for data access?
Explain the namespaces in which .net has the data functionality class.
What is the difference between a datareader and a dataset?
What are all the different authentication techniques used to connect to MS SQL Server?
What are typed and untyped dataset?
Explain the DataAdapter.Update() and DataSetAcceptChanges() methods.
If a table contains 20000 records. In a page at each time 100 records to be displayed.
What is sql command in ado net?
What is ole access?
Can we load multiple tables in a dataset?
What you mean by filtering of data?
What are good ado.net object to replace to ado recordset object.
What is difference between dataset and datatable?
What are the main differences between classic ado and ado.net?