Compare commits

..

No commits in common. "5715d17312e6fef9ddf40e9be59508f355d08e4c" and "f96c594a8cf6095ab5614e4e8ca480097b18f042" have entirely different histories.

2 changed files with 6 additions and 9 deletions

View File

@ -2,8 +2,7 @@
## Overview ## Overview
Dates & datetimes are stored as plain numerics in regular SAS tables. In order for the Data Controller to recognise these values as dates / datetimes a format must be applied. Dates & datetimes are actually stored as plain numerics in regular SAS tables. In order for the Data Controller to recognise these values as dates / datetimes a format must be applied.
![displayed](img/dcc-dates1.png) ![source](img/dcc-dates2.png) ![displayed](img/dcc-dates1.png) ![source](img/dcc-dates2.png)
@ -15,12 +14,10 @@ Supported date formats:
* YYMMDD. * YYMMDD.
* E8601DA. * E8601DA.
* B8601DA. * B8601DA.
* NLDATE.
Supported datetime formats: Supported datetime formats:
* DATETIME. * DATETIME.
* NLDATM.
Supported time formats: Supported time formats:
@ -37,9 +34,6 @@ proc metalib;
run; run;
``` ```
!!! note
Data Controller does not support decimals when EDITING. For datetimes, this means that values must be rounded to 1 second (milliseconds are not supported).
If you have other dates / datetimes / times you would like us to support, do [get in touch](https://datacontroller.io/contact)! If you have other dates / datetimes / times you would like us to support, do [get in touch](https://datacontroller.io/contact)!

View File

@ -22,12 +22,15 @@ The Stored Processes are deployed using a SAS Program. This should be executed
```sas ```sas
%let appLoc=/Shared Data/apps/DataController; /* CHANGE THIS!! */ %let appLoc=/Shared Data/apps/DataController; /* CHANGE THIS!! */
%let serverName=SASApp;
filename dc url "https://git.datacontroller.io/dc/dc/releases/download/latest/sas9.sas"; filename dc url "https://git.datacontroller.io/dc/dc/releases/download/latest/sas9.sas";
%inc dc; %inc dc;
``` ```
If you don't have internet access from SAS, download `sas9.sas` from [here](https://git.datacontroller.io/dc/dc/releases), and change the initial `compiled_apploc` and `compiled_serverName` macro variable assignments as necessary. If you don't have internet access from SAS, download `sas9.sas` from [here](https://git.datacontroller.io/dc/dc/releases), and change the `compiled_apploc` on line 2:
![](img/sas9_apploc.png)
You can also change the `serverName` here, which is necessary if you are using any other logical server than `SASApp`.
#### 2 - Deploy the Frontend #### 2 - Deploy the Frontend