Guest User

Untitled

a guest
May 8th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. sqoop import \
  2. --connect jdbc:mysql://localhost/source_database_name \ (This is the path to access the Source DB using JDBC Driver)
  3. --username <username> \ (Source Database Username)
  4. --password <password> \ (Source Database password)
  5. --database source_database_name \
  6. --where "query" \
  7. --table source_table_name \
  8. --target-dir <path of the file> \ (This is optional and base on requirement)
  9. -m 4 (This is based on requirement)
Add Comment
Please, Sign In to add comment