informat

sas informat datetime

Can anyone advise on the appropriate SAS informat to read in a datetime (dd/mm/yyyy hh:mm) ??? eg data _null_; informat from_dt datetime????.; input from_dt ; put from_dt=; cards; 01/01/1960 00:00 ;run; ...

SAS informat datetime milliseconds

Can SAS store and use datetimes that contain fractions of less than 1/10th of a second? eg: data _null_; input @1 from_dt:datetime22.; put from_dt= ; cards; 24Sep2009:11:21:19.856 ; run; ...