What are the different types of record groups in oracle? Explain each of them
No Answer is Posted For this Question
Be the First to Post Answer
Explain the use of file option in exp command.
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.......
Query to retrieve record for a many to many relationship ?
How to rename an index in oracle?
What is connection pool in oracle?
HOW TO DISPLAY MAXIMUM SALARIES FROM EMP DEPARTMENT VISE ALONG WITH DEPARTMENT NAMES? E.g EMP,DEPT
5 Answers College School Exams Tests, DELL,
How to connect to oracle using service name instead of sid?
How to store pictures on to the database?
What is a data lock in oracle?
Is it possible to set second Primary Key Constraint in a table in Oracle Database ?
How to display employee records who gets more salary than the average salary in the department?
I know that i can create a table without a primary key.But is there any significance for that table???? while creating an application.