将SAS datetime转换为oracleu datetime

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将SAS datetime转换为oracleu datetime相关的知识,希望对你有一定的参考价值。

Annoyingly hard to find, I'm sure others out there have felt the pain of converting sas dates to oracle date formats.

example:
data _null_;
x_dt = datetime();
x_d = date();
put x_dt oracle_datetime.;
put x_d oracle_date.;
run;
  1. proc format library=your.formats.library;
  2. picture oracle_datetime other='%0d/%0m/%0Y %0H:%0M:%0S' (datatype=datetime);
  3. run;
  4.  
  5. proc format library=your.formats.library;
  6. picture oracle_date other='%0d-%0b-%0Y' (datatype=date);
  7. run;
  8.  
  9. proc format library=your.formats.library;
  10. picture oracle_time other='%0H:%0M:%0S' (datatype=time);
  11. run;

以上是关于将SAS datetime转换为oracleu datetime的主要内容,如果未能解决你的问题,请参考以下文章

sas将几分几秒转化为秒

sas date - 将 today() 转换为 yyyymmdd 格式

Python numpy:无法将 datetime64[ns] 转换为 datetime64[D](与 Numba 一起使用)

将系列转换为熊猫DateTime

无法将 MySQL 日期/时间值转换为 System.DateTime

将SAS读入文件转换为SQL