I need a exceptoin in pl/sql block so that if any errors
occur in the block then no exception should errors should
raise?
Answer Posted / joseph p v
I think your question is as follows.
I need an exception in pl/sql block so that if any errors
occur in the block then no exception should raise?
For that see the below code part :-
exception
when others then
null;
--Example
declare
cha char(5):='TEST';
num number;
begin
num := cha;
exception
when others then null;
end;
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What are triggers and its types?
what happens when the column is set to auto increment and you reach the maximum value for that table? : Sql dba
How can I make sql query run faster?
Is sql similar to python?
what are the different type of normalization? : Sql dba
What is a recursive join sql?
Could you please provide oca (oracle 10g) dumps for my certification ?
how to use in conditions? : Sql dba
what is data control language? : Sql dba
What is pivot query?
how to shutdown mysql server? : Sql dba
What does subquery mean in sql?
what is oltp (online transaction processing)? : Sql dba
How does postgresql compare to "nosql"?
Describe types of sql statements?