Access Apache Hive using ODBC driver

3 ビュー (過去 30 日間)
Harry Cho
Harry Cho 2020 年 8 月 5 日
コメント済み: Harry Cho 2020 年 8 月 6 日
Is it possible to send SQL query to Apache Hive through ODBC and get the result in Matlab workspace? In Database toolbox, all examples are RDBMS,not Hive in HDFS. Thank you for your help in advance.

採用された回答

Kojiro Saito
Kojiro Saito 2020 年 8 月 6 日
I've tested Hive access via JDBC Driver, but not ODBC Driver yet, but I think possibly, yes.
First, 64 bit ODBC Driver is requied.
Next, configure ODBC data source in Database Toolbox. And I think you can access to Hive
datasource = 'Hive'; % The name of datasource specified in configureODBCDataSource
username = 'XXX';
password = 'YYY';
conn = database(datasource, username, password);
selectquery = 'SELECT TOP 10 * FROM TABLENAME';
data = select(conn,selectquery);
  1 件のコメント
Harry Cho
Harry Cho 2020 年 8 月 6 日
Thank you! ODBC driver works.

サインインしてコメントする。

その他の回答 (0 件)

製品


リリース

R2020a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by