用sqoop 把oracle表迁移到hive 上怎么处理字段类型不一样

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用sqoop 把oracle表迁移到hive 上怎么处理字段类型不一样相关的知识,希望对你有一定的参考价值。

[Steps]
1. Install oracle 11g for 32bit on a windows 32bit vm (windows server 2003)
see <在Windows Server 2003 32bit 中安装Oracle 11g 32bit>: http://blog.csdn.net/mozart_cai/article/details/8596352
2. Configure local listener(本地监听服务) in oracle Net Manager, add a listener
see <通过Net Manager 配置Oracle 11g本地监听服务(listener service)>: http://blog.csdn.net/mozart_cai/article/details/8596504
3. Load Oracle table to Hive table via Sqoop
In Oracle SQL Plus, check all tables owned by current user
SQL> select unique tname from col;
We choose table "DEPT" to migrate.

In cluster node
$ hive
$ show tables;
$ quit;
$ sqoop import --connect jdbc:oracle:thin:@IPAddressOfNodeInstallOracle:1521:orcl --username SCOTT --password 123456 --table DEPT -m 1 --hive-import --hive-table "HIVETEST"
NOTICE: IPAddressOfNodeInstallOracle is for windows run oracle(ex: 172.16.3.4); username and password are configured in oracle;tablename and username should be upper case
$ show tables;
$ select * from hivetest;
参考技术A 简单一点,Hive建表时候全部建成string类型。

以上是关于用sqoop 把oracle表迁移到hive 上怎么处理字段类型不一样的主要内容,如果未能解决你的问题,请参考以下文章

怎样用sqoop把navicat for mysql 里的表导入到hive中

如何从Oracle到hive

sqoop把hive表数据导入到mysql中

怎么用sqoop增量从hive往oracle数据库导数据

sqoop抽取oracle数据至hive并建表

sqoop从oracle导数据后是空表