How can you avoid importing tables one-by-one when importing a large number of tables from a database?
Answer Posted / Poornima Yadav
To import multiple tables in one go, you can use the --tables option followed by a comma-separated list of table names. For example: sqoop import --connect jdbc:mysql://localhost/mydb --username myuser --password password --table table1,table2,table3
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers