Access Apache Hive using ODBC driver
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Harry Cho
am 5 Aug. 2020
Kommentiert: Harry Cho
am 6 Aug. 2020
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.
0 Kommentare
Akzeptierte Antwort
Kojiro Saito
am 6 Aug. 2020
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.
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);
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!