Typically, where is the conventional directory structure
chosen for Oracle binaries to reside?
can any one help me with import/export options in oracle............
25. Display the client number and the value of the highest value order placed by that client.
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.......
a query to select maxmun 3 salaries of employee table
What is a cluster?
What happens if variable names collide with table/column names?
How to get a list of all tables in the database?
What WHERE CURRENT OF clause does in a cursor?
How to Truncate Table in Oracle
When does a Transaction end ?
what diffrence between function and procedure?
What happens internally when the user types userID/password@string in SQL PLUS Thanks-Bhaskar