-- WHERE conditions to parallelize single-table transfer

-- You can specify any boolean condition that can be used in a WHERE clause in the source database syntax, including any expressions 

-- Syntax: (do not specify WHERE keyword, use ; to terminate the list, you can use newlines and tabs)
-- source_table1, where_condition_chunk1, where_condition_chunk2, ... ;  

-- For Oracle, DB2 specify fully qualified name in uppercase: SCHEMA.TABLE
-- For Oracle, use TO_DATE function to define the format of datetime literals explicitly

-- Examples (uncomment):
-- SALES.ORDERS, id < 1000, id BETWEEN 1001 AND 2000, id > 2000;   -- defines 3 chunks to transfer the SALES.ORDERS table in parallel
-- SALES.ORDERS, region = 'A', region IN ('B', 'C'), region = 'D';  
-- SALES.ORDERS, category LIKE 'A%', category LIKE 'B%', category LIKE 'C%';  
