Latest Answer: Yes you can use commit or rollback in exception block;select * from test123;A----------51
Declare s varchar2(2); Begin update test123 set a = a+10; select a into s from test123 where a=20; exception when others then rollback; dbms_output.put_line('test'|| ...
Latest Answer: Using wrap utility we can encrypt source code of a function to byte code (Not a readable format). Becareful there is no decrypt utility to convert source code back to ascii format. if you aim is just ...
Latest Answer: The purity level defines what structure the function reads or modifies.the types of purity level:1)wnds--write no database stage I.e the function does not modify any database ...
Write sample code that can create a hierachical set of data without using a start with and connect by clause in PL/SQL
Latest Answer: Both are same. Right outer join returns all the reocrds that satisfy the join condtion + rest of the records from right (or second) table. ...
Latest Answer: DUAL is a part data dictionary and owned by SYS. You should not make modifications to this table. It contains only one row and one column of VARCHAR2 datatype.Used to refer an object which does not have any pysical reference in database ...
Latest Answer: To be callable from SQL statements, a stored function must obey the following "purity" rules, which are meant to control side effects:1. When called from a SELECT statement or a parallelized INSERT, UPDATE, or DELETE statement, the function ...
Latest Answer: late binding ...
What is the difference between using IS and AS while creating a procedure, function package and package body?
Latest Answer: We cant use functions with OUT parameter in sql statements because there is no way for you to declare a variable in a SQL query and in order to call an IN OUT -- you need a local variable (to supply a value to be read from and to supply a place to put ...
View page << Previous 1 2 3 4 [5] 6 7 8 9 10 Next >>

Go Top