Created 06-24-2017 05:51 PM
I'm having issues ingesting calculation views from Hana into Hive.
The issue is with the --table parameter. The calculation view's table name is "/path/to/hana/calculation"
How can I pass this to Sqoop?
Created 06-24-2017 06:01 PM
Try this:
sqoop import \ --username username \ --P \ --connect jdbc:sap://hostname:portnumber/ \ --driver com.sap.db.jdbc.Driver \ --query "select * from \"schema\".\"/path/to/hana/calculation\" where \$CONDITIONS" \ --hcatalog-database hivedatabase \ --hcatalog-table hivetable \ --create-hcatalog-table \ --hcatalog-storage-stanza "stored as orc"
View solution in original post