I have tried below to import from netezza table to hdfs ,
sqoop import --connect <***> \
--username *** \
--password *** \
--query "select * from table_name LIMIT 5" \
--split-by col_name \
--fields-terminated-by '\t' \
--input-null-string '\\N' \
--target-dir /path
Error is - ERROR
tool.ImportTool: Import failed: java.io.IOException: Query [select * from ADMIN.ORANGE_FF_PRMNC_DLY_MV WHERE \ LIMIT 5] must contain '$CONDITIONS' in WHERE clause. then i have tried
--query "select * from table_name WHERE \\$CONDITIONS LIMIT 5" \
still getting error.