Oracle Loader for .xlsx file

后端 未结 2 795
长发绾君心
长发绾君心 2021-01-27 05:55

I am tring to load a .xlsx file into an Oracle database table. I am getting an error for my code. I normally use this code for .csv files but need to use it for .xlsx I have edi

2条回答
  •  后悔当初
    2021-01-27 06:31

    1) Option [ Pure PL/SQL]

    Xlsx document is zipped set of xml documents. You can change extension xlsx to zip, unzip and find out what is inside. Here is description how to deal with xlsx document in oracle environment. This solution works but implementation is very painful.

    2) Option (PL/SQL + apache POI) Create implementation in java. And use it in db.

    3) Convert xlxs to csv.

提交回复
热议问题