I am using sqoop to import data into hadoop. I am using below command to import a table into hadoop.
 sqoop import \
 --connect jdbc:oracle:thin:@172.16.XXX.XXX:15XX:TABS \
 --username user \
 --password pass \
 --table TABS.ADM_LOG0009 \
 --target-dir /hadoop/hptabs/recharge
Now I have another table named IVM_IMAGE, which is a partitioned table. I want to import only 3 partitions from Oracle to hadoop. Please help me to write command for this.
- Oracle table name: TABS.IVM_IMAGE
 - Partitions: LESS20161101, LESS20161001, LESS20160901
 Partiton key: BILLDATE
HIVE table name: hptabs.IVM_IMAGE
Table properties:
PARTITIONED BY (BILLDATE TIMESTAMP) ROW FORMAT DELIMITED FIELDS TERMINATED BY ',' LOCATION 'hdfs:/hadoop/hptabs/usage';