Can we call procedure inside function in oracle?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between an implicit & an explicit cursor.?
What would you use to improve performance on an insert statement that places millions of rows into that table?
What is DTS and purpose of DTS ?
How to load a large xml file?
What are nested tables?
Why should I use oracle database?
create or replace procedure show_tab_rec ( P_tab VARCHAR2 ) IS cmd varchar2(50); begin cmd := 'select * from '|| P_tab; for int in ( execute immediate cmd ) loop dbms_output.put_line ( int.ename||' '||int.deptno); end loop; end; when i m compling this procedure i m getting this error PLS-00103: Encountered the symbol "IMMEDIATE" when expecting one of the following: . ( ) , * @ % & | = - + < / > at in is mod remainder not range rem => .. <an exponent (**)> <> or != or ~= >= <= <> and or like LIKE2_ LIKE4_ LIKEC_ between || multiset member SUBMULTISET_ PLZ solve this error give this question answer asap Thanks advance.......
Hello All, Could any one provide me FAQs/interview questions on oracle PL/SQL
what is the difference between joins and set operators.i am always confusing with two,can u pls kindly help me .
How do you find current date and time in oracle?
What privilege is needed for a user to delete rows from tables in another schema?
What is procedure overloading in oracle?