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 |
What is out parameter used for eventhough return statement can also be used in pl/sql?
what are date and time intervals? : Sql dba
What are actual parameters and formal parameters?
Which is faster view or stored procedure?
what is query cache in mysql? : Sql dba
Is foreign key mandatory?
Does SQL*Plus contains pl/sql Engine?
Can you have multiple SPs with the same name on a database?
What is transaction control language (tcl)?
what are myisam tables? : Sql dba
write a query find which rows of a table is updated on 2 days before?
What is the unique index?
Oracle (3253)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)