+1 vote
in Sqoop by

I am getting java.lang.IllegalArgumentException: during importing tables from oracle database.what might be the root cause and fix for this error scenario?

1 Answer

0 votes
by
Sqoop commands are case- sensitive of table names and user names.

By specifying the above two values in UPPER case, it will resolve the issue.

In case, the source table is created under different user namespace,then table name should be like USERNAME.TABLENAME as shown below

sqoop import

–connect jdbc:oracle:thin:@intellipaat.testing.com/INTELLIPAAT

–username SQOOP

–password sqoop

–table COMPANY.EMPLOYEES

Related questions

+1 vote
asked Dec 22, 2022 in Sqoop by SakshiSharma
0 votes
0 votes
asked Dec 22, 2022 in Sqoop by SakshiSharma
...