Sqoop tutorial 4 : Transferring an Entire Table

Importing one table with Sqoop is very simple: you issue the Sqoop import command and specify the database credentials and the name of the table to transfer.

sqoop import \
--connect jdbc:mysql://mysql.example.com/sqoop \
--username sqoop \
--password sqoop \
--table cities

Comments

Popular posts from this blog

Unix Tutorial 16 : Command Line Arguments

Hive Tutorial 24 : MR vs Tez execution engines in Hive

Unix Tutorial 12 : Loop Types