I have this huge Oracle package that generates a .CSV file after performing the traditional ETL process. Currently, I am using a bunch of staging tables to load data from various sources and transforming the data using the listagg function and eventually dumping it as a clob. I am looking at about 300-400 columns with varying datatypes.
What we are doing?
- Export to .CSV file then import to SPSS... It requires a lot of work to import data and setup the formatting in SPSS
What I am looking for?
Save all data as a table in my database...Issue: The data will be changing constantly and the data in the table needs to be session/transaction based. In other words, the old data needs to be truncated every time a new transaction is run.
Generate metadata file for the columns in existing .CSV file...Preferable solution
Generate a .SAV File (using package)...I have explored this option but didn't have any luck
I am seeking for the best way to import data from an Oracle package into SPSS program. If other options are available, I would be happy to explore that.