I am trying to spool data using the sql script shown below creating a file without data where it has 3 rows of data when ran select statement.
SPOOL "C:\Users\nmirza\Desktop\\YourFile.csv" REP
SELECT * FROM SATURN.SPRIDEN A1
WHERE
A1.SPRIDEN_PIDM = 3075205;
/
SPOOL OFF;
/
Is someone can help me why I am not getting any data in CSV file?
SPOOL "C:\Users\nmirza\Desktop\\YourFile.csv" REP
SELECT * FROM SATURN.SPRIDEN A1
WHERE
A1.SPRIDEN_PIDM = 3075205;
/
SPOOL OFF;
/
That code should create a CSV file. I don't have your table, but I tested it on mine, more or less literally typing what you did:
type
command lists contents of the file:This is the result - as you can see, everything is here:
If you wonder why there's triplicate of data in SQLPlus (and duplicate in CSV file), that's because you misused slash. In SQLPlus, it means "re-execute the last statement", which - applied to your code - does this:
isn't contained in CSV file because of
spool off
)How come YOU don't see anything in CSV file? I wouldn't know. You tagged the question with
PLSQL
tag, but that's hardly true.spool
works in SQL*Plus and has nothing to do with PL/SQL. I removed that tag and put another ones that seem to be more appropriate.Therefore, could you explain what you exactly did? Which tool do you use? Post a screenshot if you think it might help us help you.