How do you export a result from an ORACLE database to a excel or txt with only scripting?
for instance like
export to c:\file.xls select * from table1
or something like that?
Best regards!
|
|
|
You might want to do it from within Excels VBA
MSDN says Copies the contents of an ADO or DAO Recordset object onto a worksheet, beginning at the upper-left corner of the specified range. If the Recordset object contains fields with OLE objects in them, this method fails. |
|||||||||
|
|
The export (exp) command is used to export data in a binary format (suitable for backup). Using sqlplus, you can use the spool command to export a query's result to a text file. That said, it is easier to do it using a tool like toad or sql developer. |
||||