I have this huge Oracle package that generates a .CSV file after executing a traditional ETL process. I am currently using a bunch of staging tables to load data from various sources and convert the data using the listagg function and ultimately dumping them like clob. I am looking at columns 300-400 with various data types.
What are we doing?
What am I looking for?
Save all the data in the form of a table in my database ... Problem: the data will be constantly changing, and the data in the table should be based on the session / transaction. In other words, old data needs to be truncated every time a new transaction is executed.
Create a metadata file for the columns in the existing .CSV file ... Preferred Solution
Generate a .SAV file (using the package) ... I examined this option, but no luck
I am looking for the best way to import data from an Oracle package into an SPSS program. If other options are available, I would be happy to explore this.
, SPSS / , , , CSV XML, "XMLTOSPSS". Oracle XML dbms_xmlquery.
CSV Oracle :
select c.column_name, from all_tab_columns c where c.owner=upper('{owner}') and c.table_name=upper('{table}') order by c.owner, c.table_name, c.column_id;
Source: https://habr.com/ru/post/1535052/More articles:I need to set State and StatusCode for a custom object - c #Android Camera setPictureSize parameter invokes line art - androidRailways on Google Maps - google-maps-api-3Kendo user interface, how to manually call validate () in a kendo grid cell - javascriptGroovy XmlSlurper Content Prohibited In Prolog - xmlCan I set screen capture sizes in QuickTime Player 10 - screenshotUse Pandoc to create YAML metadata from HTML tags META - htmlDoctest and Decorators in Python - pythonОбнаружить, если объект переопределил toString() - javaMap with clojure re-argument - clojureAll Articles