raigeek
raigeek

Reputation: 1

How to migrate XML type oracle data to Hadoop HDFS

I have huge data in Oracle in one table and one column type is XML type which contains main data. I need to move this data to HDFS. What should be the best way to migrate this data in Hadoop HDFC. Any sample code or instructions would be greatly appreciated.

Upvotes: 0

Views: 889

Answers (1)

Geetika Goyal
Geetika Goyal

Reputation: 71

Do you want to move data as flat (or csv) files to HDFS or import table to one of HIVE DB. In case of HIVE Import, you can use Sqoop. Sqoop is used to import data from RDBMS Databases to HIVE DB.

Upvotes: 2

Related Questions