Can you please suggest how can we export the oracle clob data field to csv file. The table contain other regular data types too. And also if the clob data cannot fit in a csv what are the other options available?
Thanks, Naveen
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Storing CLOBs in a CSV file is possible if you use a serious CSV writer that supports:
Then you can read the exported file in any other application that has a serious CSV parser, such as Excel.
Just don’t go for any CSV classes that have the word simple in their name. They certainly will be too simple.