What is private procedure oracle?
What privilege is needed for a user to connect to oracle server?
What is system tablespace?
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.......
Explain parameter file in oracle.
Explain the use of show option in imp command.
how the Oracle Prepares the Execution Plan and how it chooses the Optimal one?
Can we insert data in view oracle?
why pl sql doesn't support retrieving multiple records
Please explain oracle data types with examples?
Explain the difference between a procedure and a function?
What is an Index ?
can you call insert/update/delete in select statements. If yes how? If no what is the other way?