How to define a record variable to store a table row?
No Answer is Posted For this Question
Be the First to Post Answer
How to define an anonymous procedure with variables?
how to genarate random numbers in oracle for particular row?
How many data types are supported?
What are various joins used while writing SUBQUERIES?
How do I connect to oracle database?
Why do I get java.lang.abstractmethoderror when trying to load a blob in the db?
Does oracle charge for java?
Find all employees in Dept “Marketing”.
What is the max number of columns in an oracle table?
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.......
In Exception handling if we are using the when others first then what happens . whether it will show the compiler error
Explain oracle left join with an example?