What is the difference between online and offline backups?
No Answer is Posted For this Question
Be the First to Post Answer
Explain oracle left join with an example?
How to list all indexes in your schema?
nw i'm doing MBA system and planning to do oracle,database management.tell me that whether it is useful r not?.refer any course for my carrier pls
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 is the syntax of UPDATE command?
How to use group functions in the select clause using oracle?
What privilege is needed for a user to insert rows to tables in another schema?
What are the differences between primary key and unique key?
What is mean by Program Global Area (PGA) ?
pls explain connect by prior with example and its real time use
How to create a new view in oracle?
how can get like this result table A col1 col2 --- ----- a A b B C C .. .. .. ... .. ... wants result like for a single column col1 ------ a,b,c,........n of data and another is col1 ------- A B C D ........ a b b d ........