What are the differences between char and nchar in oracle?
No Answer is Posted For this Question
Be the First to Post Answer
What is an oracle database table?
how to hide the stored procedure inside a package
can a table has a column that has only view data and in other columns we can change data?
What are different Oracle database objects?
How do I recompile a procedure in oracle?
How to define a procedure inside another procedure?
What is the quickest way to export a table to a flat file?
How to compare dates in oracle sql?
Can the query output be sorted by multiple columns in oracle?
What is a cursor and what are the steps need to be taken?
What are the Characteristics of Data Files ?
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.......