Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Shafee
Contributor
Contributor

extract the metadata from the dynamic type field

  • Need to load data and metadata from source is Oracle and target is Hive
  •  Daily receive a file which have list of table names(daily the list count changes and even new table also added)
  • want to design a job which iterates on each table in file and load the metadata and data from source to target.

If my source(oracle) have int or date type or any data type then same type should be in target(hive) in the same job.

want load metadata and data in same job

 

Labels (2)
2 Replies
Anonymous
Not applicable

Hello,

You need to load files in oracle source into the HDFS first and  then you can use Hive to interpret such files as database files.

tSqoopImport calls Sqoop to transfer data from a relational database management system (RDBMS) such as Oracle into the Hadoop Distributed File System (HDFS).

For your hive server, you can create an external table into hive which points out a HDFS location or use thiveload, thiverow component.

Best regards

Sabrina

 

Shafee
Contributor
Contributor
Author

thanks for help, will try with this solution