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
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.