I am using below Sqoop syntax to split Sqoop job by single column[mostly primary key].
sqoop import --connect jdbc:oracle:thin:@//oracle_server:1521/sid --username xxx --password xxx --table EMPLOYEE --split-by ID -m 10
Can we use multiple columns as combination, if primary key is not available to split Sqoop job?
sqoop import --connect jdbc:oracle:thin:@//oracle_server:1521/sid --username xxx --password xxx --table EMPLOYEE --split-by FIRST_NAME,LAST_NAME -m 10