HOW TO CONVERT ORACLE TABLE DATA (RECORDS)INTO EXCEL SHEEET?
Answer Posted / karthik
In SQL Prompt:
-------------
set lines 100 pages 100;
set colsep"|"
spool c:\Datas.xls;
select * from emp
/
spool off;
In Excel Sheet, use Text to Column->Delimeter to replace
the "|" pipe symbol
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Explain the use of indexes option in exp command.
I just want to maintain data like an employee can belongs to 3 or more departments . We can resolve this by using composite key but it avoids normalization rules. So Can anyone tell me how can I maintain data.
What is program global area (pga) in oracle?
What is a trigger and what are its types in oracle?
What are the uses of synonyms?
What is integrity and what is constraint??Explain with example
What are the numeric comparison operations?
Can you tell me how to add new column in existing views?how?How is possible?
What language does oracle use?
How to create a new view in oracle?
What is the difference between a hot backup and a cold backup in oracle?
What are the four Oracle system processes that must always be up and running for the database to be useable?
How to execute the package in oracle?
Is a rollback possible to any savepoint?
What is tns name?