Created 08-16-2016 01:02 PM
How can we load other than dbo schema tables into Hive by using hive import-all-tables command.
Created 08-16-2016 02:30 PM
This is a limitation with sqoop as only default schema under the userid would be used for extracting all the tables with sqoop import-all-tables. Workaround is to import tablewise using sqoop import.
Created 08-16-2016 02:03 PM
Try to pass --schema schemaname argument, alternatively, specify database and schema in your jdbc URL
sqoop import ... --table custom_table -- --schema custom_schema
Created 08-16-2016 02:30 PM
This is a limitation with sqoop as only default schema under the userid would be used for extracting all the tables with sqoop import-all-tables. Workaround is to import tablewise using sqoop import.