I noticed a record count difference between a table I downloaded via ION ETL and the record count in Compass.
By changing my compass query to included deleted records I was able to get the record count to match. I.E.
SELECT
COUNT(RepSet_Variation_ID)
FROM
infor.IncludeDeleted('FHDL_FSM_Actor')
I tried to add a query string to the Read step of my transformation, but it made no difference. I believe the "queryAll" function overrides the query string.
Is there anyway I can filter out these deleted records?