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
Can a table have no primary key?
what is the difference between truncate and delete statement? : Transact sql
What is pl sql in dbms?
What is the purpose of the partition table?
What is cursor explain with example?
What is a sql profiler?
what happens if null values are involved in expressions? : Sql dba
What is a loop in sql?
What is interval partition?
Is sql a scripting language?
Write a sql query to find the names of employees that begin with ‘a’?
What is sql*loader and what is it used for?
What is the purpose of cursors in pl/sql?
what is “go” in t-sql? : Transact sql
what is the different between now() and current_date()? : Sql dba