/* C01S2D01.sas */ /* Turn on resource measurement SAS system options and check the log: */ libname ia 'c:\workshop\winsas\effi'; options fullstimer msglevel = i; data RDUSchedule; set ia.Schedule; where RouteStart = 'RDU' or RouteDestination = 'RDU'; run;