Can anyone tell me what is the use of --split-by and boundary query in sqoop?
sqoop import --connect jdbc:mysql://localhost/my --username user --passw
Also if we specify --query value within double quotes(" "), we need to precede $CONDITIONS with a slash(\)
--query
$CONDITIONS
slash(\)
--query "select * from table where id=5 AND \$CONDITIONS"
or else
--query 'select * from table where id=5 AND $CONDITIONS'