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 is a unique key?
What is the purpose of the partition table?
Why is a trigger used?
What is exception? What are the types of exceptions?
What are some emotional triggers?
Explain the difference between triggers and constraints?
What is difference between sql function and stored procedure?
what are the other commands to know the structure of table using mysql commands except explain command? : Sql dba
Is it possible to create startup or shutdown trigger for on-schema?
Differentiate between % rowtype and type record.
What is the use of & in pl sql?
How can you load microsoft excel data into oracle? : aql loader
What is pl sql in oracle?
How does one load ebcdic data? : aql loader
What is varchar data type in sql?