Support Questions

Find answers, ask questions, and share your expertise
Announcements
Now Live: Explore expert insights and technical deep dives on the new Cloudera Community BlogsRead the Announcement

Ingesting calculation views from Hana into Hive with Sqoop

avatar
New Member

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?

1 ACCEPTED SOLUTION

avatar
Rising Star

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

1 REPLY 1

avatar
Rising Star

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"