How to open and close an explicit cursor in oracle?
What is a parameter file in oracle?
How do I use os authentication with weblogic jdriver for oracle and connection pools?
How to invoke the data pump export utility?
i have a table with the columns below as Emp_ID Address_ID Address_Line City Country -------- --------- ----------- ------ --------- Q: Display the Emp_ID's those having more than one Address_ID
where do i find oracle interview questions.
What are main difference between Stored Procedure and Functions.
Explain enable novalidate constraint.
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.......
What to do if the binary spfile is wrong for the default instance?
What are the most common interview questions on ETL Testing for experience?
What is a public synonym?
how table is defined in plsql table? how can i select column from plsql table? can i use select * from plsql table type?