The possible issue for the behaviour you are having
- Data Type Mismatches
- Null or Special Characters
- Filter Conditions
- Schema Mismatch
If you find that null values are causing rows to drop, you might want to replace nulls with a default value before sinking:
Derived Column Transformation:
ReplaceNull(column_name, default_value)
If the issue persists after these checks, you might want to provide more specific details or screenshots of your data flow configurations to further diagnose the problem.