chore: automated commit

This commit is contained in:
Allan Bowe
2021-05-12 22:29:24 +03:00
parent fc4b5d839c
commit 88f10cb680
25 changed files with 23850 additions and 9 deletions

View File

@ -6,17 +6,35 @@ Dates & datetimes are actually stored as plain numerics in regular SAS tables. I
![displayed](img/dcc-dates1.png) ![source](img/dcc-dates2.png)
This format must also be present / updated in the metadata view of the (physical) table to be displayed properly. This can be done using DI Studio, or by running the following (template) code:
Supported date formats:
```
* DATE.
* DDMMYY.
* MMDDYY.
* YYMMDD.
* E8601DA.
* B8601DA.
Supported datetime formats:
* DATETIME.
Supported time formats:
* TIME.
* HHMM.
In SAS 9, this format must also be present / updated in the metadata view of the (physical) table to be displayed properly. This can be done using DI Studio, or by running the following (template) code:
```sas
proc metalib;
omr (library="Your Library");
folder="/Shared Data/your table storage location";
folder="/Shared Data/table storage location";
update_rule=(delete);
run;
```
If you have other dates / datetimes / times you would like us to support, do [get in touch](http://datacontroller.io/contact)!