Is there a way to create a new table(T1) from the CSV_data(BLOB) column of table(T2) in oracle SQL ?
I am able to do this with java, but it has performance issues as I have to first get the blob contents to java layer parse it and then create table and do batch insert. So, I want to know if we can do this directly at the database side itself ?
Many thanks in advance!
CREATE PROCEDUREprivilege you canCREATE JAVAstored procedure where you can set up a JDBC connection to the database (internal driver) and read theBLOBand insert to the new table without passing the data to client and back. Your user gets the privs once, you can execute it any times...