How to delete a column in an existing table in oracle?
No Answer is Posted For this Question
Be the First to Post Answer
Is oracle a language?
1. Display the post code and the purchase order number for each purchase order. Sort the output set by postcode.
What are the ways tablespaces can be managed and how do they differ?
Which are the five query types available in oracle?
What is the difference between formal parameters and actual parameters?
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 an oracle recycle bin?
src name sex a,male b,female c,male d,female Required output : male female a,b c,d tried pivot but was not successfull select * from src pivot (max(name) for sex in ('MALE','FEMALE'));
What are the various oracle database objects?
How to rebuild an index in oracle?
how do u setup a replication site?
what is host string in sql plus? how does it related to database?