I\'m trying to do this in Enterprise Guide, with a task, otherwise I would just use a data step.
In a data step, this would be:
data names; input name $
proc sql; create table inNamesNotIncheck as select * from names n where not exists (select name from check c where n.name=c.name); quit;