InterviewSolution
Saved Bookmarks
| 1. |
How can you avoid importing tables one-by-one when importing a large number of tables from a database? |
|
Answer» Using the command sqoop import-all-tables --connect --usrename --password --exclude-tables table1,table2 .. This will import all the tables except the ones mentioned in the exclude-tables clause. |
|