If one of the columns in the dataset holds a key or date that is repeated you can use the SORT transformation. Set the sort on the key field, and at the bottom check the box "Remove rows with duplicate sort values". Set the rest of the fields in the dataset to "Pass Thru".
The output of that will a distinct list based on the sorted column.
Another method would be on the OLE DB Source
Set the Data Access Mode to "SQL Command"
Then executing a query such as
SELECT DISTINCT * FROM MyTable
You could also use the GROUP BY Function to the same end.
Hope this Helps...Happy Holidays,
Eric