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 / 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 |
how to fetch common records from two tables? : Sql dba
Is it possible for a table to have more than one foreign key?
What is query syntax?
Is join and inner join the same?
Can you alter start with clause?
What are the uses of merge?
What is composite primary key in sql?
how to create a new view in mysql? : Sql dba
What are the types of join and explain each?
What is a data manipulation language?
How many row comparison operators are used while working with a subquery?
What is union and union all keyword in sql?