1.

Give A Sqoop Command To Import The Columns Employee_id,first_name,last_name From The Mysql Table Employee?

Answer»

$ SQOOP import --connect JDBC:MYSQL://host/dbname --table EMPLOYEES
--COLUMNS "employee_id,first_name,last_name" 

$ sqoop import --connect jdbc:mysql://host/dbname --table EMPLOYEES
--columns "employee_id,first_name,last_name" 



Discussion

No Comment Found