InterviewSolution
Saved Bookmarks
| 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" |
|