I am importing all tables from a schema using sqoop command.The map-column-hive works fine in table level. But when I run for schema level it gives an error.
sqoop import-all-tables --verbose --connect "jdbcconnectionstring" --username user --password password --hive-import --hive-database hiveschematest --map-column-hive "emptest.id=int,emptest.name=varchar(100),emptest.address=varchar(100)" -m 1
I need to map some table data type with hive data types. It is giving error as "No column name found while importing".Whether map-hive-column support for import-all-tables(Schema) option also?
--map-column-hivefor 1 table)? - Dev