InterviewSolution
Saved Bookmarks
| 1. |
What does the following query do?$ sqoop import --connect jdbc:mysql://db.foo.com/somedb --table sometable \ --where "id > 1000" --target-dir /incremental_dataset --append |
|
Answer» It performs an incremental import of new data, after having already imported the first 100,0rows of a table |
|