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 It performs an incremental import of new data, after having already imported the first 100,0rows of a table |
|