how to retrieve data from different tables ,place this data in different excel worksheets.
Answer Posted / mahesh_ch
declare
cursor c1 is select e.empno,e.ename,e.sal,e.deptno,d.deptno dno,d.dname,d.loc from emp e,dept d where e.deptno=d.deptno;
fp utl_file.file_type;
cfilename varchar2(20);
begin
cfilename:='office'||to_char(to_date('2007','yyyy'),'yyyy')||'.xls'; /*specifying filename*/
fp:=utl_file.fopen('DATA_PUMP_DIR',cfilename,'w'); /*DATA_PUMP_DIR is a default directory*/
for i in c1 loop
UTL_FILE.PUT_LINE(fp,i.empno||i.ename||i.sal||i.deptno);
end loop;
utl_file.fclose(fp);
end;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the difference between sharding and replication?
What is a synonym? What are its various types?
Give the various exception types.
What is the difference difference between $ORACLE_HOME and $ORACLE_BASE.
How to bring a tablespace offline?
What is meant by raw datatype?
What language does oracle use?
What is a dynamic performance view in oracle?
How to create a single index for multiple columns?
What is format trigger?
How to handle a single quote in oracle sql?
Which is faster join or subquery in oracle?
Can we create database in oracle using command line ?
How can I introduce multiple conditions in like operator?
What do you mean by group by clause?