what is the order of pre-defined exceptions.

Answers were Sorted based on User's Feedback



what is the order of pre-defined exceptions...

Answer / roopesh kumar

We can directly handle them in exception section need not
to declare them. We need to declare them onle in case when
we want to put user friendly message instead of oracle's
default one.

Note: When others should be handle in last of exception
handling part of block.

Is This Answer Correct ?    3 Yes 0 No

what is the order of pre-defined exceptions...

Answer / rajadurai r

There are 20 pre-defined exceptions.

When an exception is raised,normal execution of your PL/SQL
block or subprograms stops and control transfers to its
exception-handling part.

Is This Answer Correct ?    2 Yes 0 No

what is the order of pre-defined exceptions...

Answer / rahul khanke

pre defined exception u should not have to declare in
declare section
ex. dul_value_error
when_duplicate_row
etc

Is This Answer Correct ?    1 Yes 1 No

what is the order of pre-defined exceptions...

Answer / chandra shekher

User Defined exceptions are executed prior to system
defined exceptions.

User defined exceptions are executed in the order in which
they are defined.

Is This Answer Correct ?    1 Yes 1 No

what is the order of pre-defined exceptions...

Answer / avi007

order of preddfined exceptions is to first catch the
exception in begin end; block

Is This Answer Correct ?    0 Yes 0 No

what is the order of pre-defined exceptions...

Answer / suresh somayajula

In these we will use 19+1 exceptions.

it means " When Others " is the last exception in

pl/sql block.execution will be end at When Others exception

Stmt.

suresh.

suresh.somayajula@gmail.com

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More SQL PLSQL Interview Questions

what are the differences between public, private, protected, static, transient, final and volatile? : Sql dba

0 Answers  


ex: take one schema in that t1,t2,.....tn tables and you don't no the table name also. write a procedure if enter columns name then display the maching columns .otherwise display the unmatch columns.

1 Answers   Zensar,


What is the difference between having clause and where clause?

0 Answers  


A table has 150 records. How do you retrieve 100th row to 120th row from that table ?

21 Answers   IBM,


What is crud sql?

0 Answers  






How can I make sql query run faster?

0 Answers  


What is difference between stored procedures and application procedures?

0 Answers  


Can a select statement fire a trigger?

0 Answers  


what is 'trigger' in sql? : Sql dba

0 Answers  


Can we use SQL%ISOPEN in implicit cursors? Does this attribute works properly in Implicit Curosors?

3 Answers  


How to process query result in pl/sql?

0 Answers  


How to return multiple rows from the stored procedure?

0 Answers  


Categories