你知道有人如何将代表儒略日期的甲骨文数字转换为SAS吗?我在 SAS 中已经有一个表,其中有time_key
列。在甲骨文中,转换将to_date(time_key, 'j')
j
代表朱利安。您知道如何在 SAS 中执行此操作吗?
SAS 表示例:
TIME_KEY
2456658
2456689
预期产出:
TIME_KEY_DATE
31DEC2013
31JAN2014
我对 Oracle 的儒略日期格式一无所知,但似乎距离某个"第 0 天"只有几天,就像在 SAS 中一样。SAS 中的第 0 天是 01JAN1960,因此我们只需要计算出 Oracle 系统(其中 31DEC2013 是第 2456658 天(和 SAS 系统(其中 31DEC2013 是 22280(之间的偏移量:
data dates;
time_key = 24566658; output;
time_key = 24566689; output;
run;
* Calculate the offset, given 24566658 is 31-Dec-2013;
data _null_;
call symput("offset", 24566658 - "31DEC2013"d);
run;
%put Offset from SAS dates to Oracle dates is &offset days;
data converted;
set dates;
* Adjust the Oracle date values by subtracting the calculated offset;
sas_time_key_numeric = time_key - &offset;
sas_time_key = put(time_key - &offset, date9.);
put time_key= sas_time_key_numeric= sas_time_key=;
run;
输出为:
10 %put Offset from SAS dates to Oracle dates is &offset days;
Offset from SAS dates to Oracle dates is 24546935 days
11
12 data converted;
13 set dates;
14 sas_time_key_numeric = time_key - &offset;
15 sas_time_key = put(time_key - &offset, date9.);
16 put time_key= sas_time_key_numeric= sas_time_key=;
17 run;
time_key=24566658 sas_time_key_numeric=19723 sas_time_key=31DEC2013
time_key=24566689 sas_time_key_numeric=19754 sas_time_key=31JAN2014
这给出了正确的转换。
因此,幻数是24546935;从您的 Oracle 日期中减去它以获得相应的 SAS 日期值,然后应用您想要的日期格式。