HOW TO CONVERT ORACLE TABLE DATA (RECORDS)INTO EXCEL SHEEET?

Answers were Sorted based on User's Feedback



HOW TO CONVERT ORACLE TABLE DATA (RECORDS)INTO EXCEL SHEEET?..

Answer / mats önnerby

Set up an ODBC connection with the database.
Then from Excel menu, select Data => Import external data
=> New database query. From there it is intuitive.

Is This Answer Correct ?    3 Yes 0 No

HOW TO CONVERT ORACLE TABLE DATA (RECORDS)INTO EXCEL SHEEET?..

Answer / 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

HOW TO CONVERT ORACLE TABLE DATA (RECORDS)INTO EXCEL SHEEET?..

Answer / ron

don't have a simple answer, you'll need to use oracle utils,
util_file and packages:
read about it in detail to download and running package at
website below:
http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:728625409049

hope this helps.

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Oracle General Interview Questions

What is the relation of a user account and a schema?

0 Answers  


What is meant by a deadlock situation?

0 Answers  


What exactly do quotation marks around the table name do?

0 Answers  


Describe the different type of Integrity Constraints supported by ORACLE ?

2 Answers  


How to convert characters to numbers in oracle?

0 Answers  






How to rename a tablespace in oracle?

0 Answers  


HOW TO DISPLAY MAXIMUM SALARIES FROM EMP DEPARTMENT VISE ALONG WITH DEPARTMENT NAMES? E.g EMP,DEPT

5 Answers   College School Exams Tests, DELL,


Where do we use decode and case statements?

0 Answers  


what is difference between sql plus and sql*plus? (not sql and sql plus).

0 Answers  


What is SYSTEM tablespace and When is it Created?

2 Answers  


Why use resource manager in Oracle?

0 Answers   MCN Solutions,


You have one employee table having 3 entries emp_id, Mgr_id and salary. Mgr_id is also referencing emp_id. so now find out the emp_id which are having the second highest salary, under a particular manager.

3 Answers   Amazon, HCL,


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)