Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I tried to spool a CLOB to a CSV file using code that looks like below:

set pagesize 0
set heading off
set long 30000
set longchunksize 30000


SPOOL test.csv


select text from user_views;

But the above code returns the CLOB as multiple rows because of newline/carriage returns in the CLOB in the resulting CSV when viewed from a spreadsheet program(OOcalc). Is there anyway to keep the whole CLOB intact in a single cell?

share|improve this question

1 Answer

You'll probably want to look at the DBMS_LOB package for ideas on how to get the data out of there cleanly.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.