Explain table?
No Answer is Posted For this Question
Be the First to Post Answer
What is snapshot is too old? Give and example for better understand.
Given two table employee and department EMP ---------------- empid deptid(fk) Dept --------------------- deptid(pk) deptname que-Write a query to find count of employee in each department. Expected Output- deptid countofEmployee --------------------------- 10 57 20 20 30 15
What is a user account in oracle?
Why use resource manager in Oracle?
How to see the table columns used in an index?
structural difference between bitmap and btree index ?
What is a deadlock ? Explain .
What is coalesce function?
How to create a new tablespace in oracle?
What is trigger associated with the timer ?
How to use existing values in update statements using oracle?
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.......