I am writing a procedure to create a CSV file with the data in an Oracle table. I used "spool filename;" but an error is coming. Can I use spool in PL/SQL?
|
|
|
|
|
|
|
I think that there are better ways to implement this on Oracle 10g/11g, but this should work fine on Oracle 9i or higher:
|
||
|
|
|
|
If you only need the data in a cvs file you can do this: create a sql file with the query like this:
then call sqlplus from a terminal like this:
|
||
|
|
|
|
Here are a couple of links you might find helpful: |
||
|
|
|
|
No, SPOOL is a SQL Plus command so you would have to do this in SQL Plus:
You would probably also need to set some values before starting the process e.g.
... to get the correct formatting. |
||
|
|
|
|
spool is a sqlplus command. it cannot be used in pl/sql. it seems that you have been trying a variety of ways to get oracle to do your formatting and file saving. why not have your program that is calling the proc do this work for you? |
|||
|
|
