A family of Microsoft relational database management systems designed for ease of use.
Just as another suggestion, you could create a Join to the table you're inserting into, using the "unmatched" query wizard. It might be something like
INSERT INTO targettable
SELECT A.ClientID, A.TypeID, A.DueDate, <other fields>
FROM sourcetable AS A LEFT JOIN targettable AS B
ON A.ClientID = B.ClientID
AND A.TypeID = B.TypeID
AND A.DueDate = B.DueDate
WHERE B.ClientID IS NULL;
If there is already a record in the target table which matches on ClientID, TYpeID and DueDate this query will return no records.