Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Diff. types of triggers..

Answers were Sorted based on User's Feedback



Diff. types of triggers....

Answer / k. a. purushotham

Basically there are three types of triggers,

Row and statement triggers
Before and after triggers
Insteadof triggers

Possible combination of these triggers
Before row trigger
After row trigger
Before statement trigger
After statement trigger

Instead of trigger is mainly for a view.
if we want to write a trigger in such a way that the
trigger action is to be on underlying base tables of a view,
when an DML statement (insert,update,delete)is issued

Is This Answer Correct ?    2 Yes 0 No

Diff. types of triggers....

Answer / rakesh n

1) Action
2) Event
3) Condition

Is This Answer Correct ?    0 Yes 1 No

Diff. types of triggers....

Answer / pratap

There are mainily 3 types of triggers
1> DML Trigger
2> Instead of Trigger written on only view
3> System Trigger

DML Trigger written on table that gets fired on DML events
like
insert or delete or update operation
that trigger may fire
1> After dml event
2> Before dml event these are timings for trigger firing

Instead of trigger written only on view that view is not
modifiable that also gets fired
when dml event occurs

System trigger gets fired on system event like
before log off or after log on or before shutdown
this trigger may be written on
Database level
Schema level

Is This Answer Correct ?    0 Yes 2 No

Diff. types of triggers....

Answer / dev

static trigger
the icon or window background is clicked or double-clicked
without moving the mouse

dynamic trigger
the icon is dragged and dropped onto another icon or window
background

hold trigger
the mouse button is held down on an icon or window background

Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More JDBC Interview Questions

How to make updates to updatable result sets in jdbc?

0 Answers  


What are the standard isolation levels defined by JDBC?

0 Answers  


State the different connection methods used for creating different types of sql.

0 Answers  


What do you mean by two phase commits?

0 Answers  


Why is jdbc needed?

0 Answers  


What are the new features available in jdbc 4.0?

0 Answers  


What is in term of jdbc a datasource?

0 Answers  


java.lang.ClassNotFoundException:oracle.jdbc.driver.OracleDr iver? I get this error at run time.I used oracle10G. I set CLASS PATH:C:\oraclexe\app\oracle\product\10.2.0 \server\jdbc\lib\ojdbc14.jar; I write JDBC PROGRAM like import java.sql.*; class Example { public static void main(String args[]) { try { Class.forName ("oracle.jdbc.driver.OracleDriver"); System.out.println("Driver Loaded"); Connection con=DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:xe","system","salmas"); System.out.println("Driver Connected"); Statement st=con.createStatement(); ResultSet rs=st.executeQuery("select * from emp"); while(rs.next()) { System.out.println(rs.getInt(1)); System.out.println(rs.getString(2)); System.out.println(rs.getString(3)); } st.close(); con.close(); } catch(Exception e) { System.out.println(e); } finally { System.out.println("it's finally block executed"); } } }

6 Answers   CTS,


What is difference between odbc and jdbc?

0 Answers  


How many types of resultset are there in jdbc?

0 Answers  


How can you create jdbc statements?

0 Answers  


What does adapter class provide?

0 Answers  


Categories