Exporting a CLOB to a text file using Oracle SQL Developer

前端 未结 5 1498
無奈伤痛
無奈伤痛 2020-12-05 15:25

I am using Oracle SQL Developer and trying to export a table to a CSV file. Some of the fields are CLOB fields, and in many cases the entries are truncated when the export

5条回答
  •  孤城傲影
    2020-12-05 16:00

    assuming by an Oracle dump you meant a .dmp (either from export or expdp), you're looking at a binary file. You'll need to import the dumpfile into an Oracle database and then export the data to plain text using UTL_FILE or other means.

提交回复
热议问题