How to define a procedure inside another procedure?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different oracle database objects?
Explain user account with reference to oracle.
how to find count rows in table without count function?
Explain the use of constraints option in exp command.
consider some table with 4 r 5 columns in that 1 col is DATE type. The data is like that,For each date in that col some 3 fields r there but all the records r having different data. Now i want to display all the columns by performing grouping on the date field ( as SELECTION Operator(*) cannot be used with group function having only one "group by clause". how to do this? can any one help me in finding out the solution plss?
how to find full database size
1 Answers BirlaSoft, Consultancy,
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 are data pump export and import modes?
How many types of cluster table in Oracle?
What is a trace file and how is it created in oracle?
What are the different types of partitions in oracle?
How to pass parameters to procedures in oracle?