is it possible to specify the hive-table destionation when using sqoop with the -hive-import switch.
the script below is creating the tables at the root of /user/hive/warehouse. I'd like them in a single directory that I specify.
using --hive-home was a guess but it is not working. Thanks
sqoop import-all-tables \
--connect jdbc:oracle:thin:@//schema.domain.org:1521/schema \
--username=user -P \
--warehouse-dir '/user/choa/dev/HBOC' \
--fields-terminated-by '|' \
--hive-import \
--hive-home '/user/hive/warehouse/hboc.db' \
-m 1