Date: Fri, 8 Aug 2003 03:01:50 +0300
Reply-To: Arto Raiskio <arto.raiskio@SUOMENPOSTI.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Arto Raiskio <arto.raiskio@SUOMENPOSTI.COM>
Subject: Re: questions on datetime
"Schwarz, Barry A" wrote
> On my system, 29Jul03:12:58:35 is 1375102715.
mine too, see sample below.
the question was why this particular vendor might be running "4 years
behind" for the year value
I can't think of any reason as the DBF format is not proprietary and was
hoping someone might be able to suggest some obscure reason :)
data _null_;
informat d datetime.;
d = 1375102715;
put d datetime.;
d = 1059569915;
put d datetime.;
run;
29JUL03:12:58:35
29JUL93:12:58:35
|