SAS Documentation
SASĀ® Solution for Stress Testing
Reference manual - version 08.2021
Loading...
Searching...
No Matches
data_extraction_config.sas
Go to the documentation of this file.
1/* Copyright (C) 2017 SAS Institute Inc. Cary, NC, USA */
2
3/*!
4\file
5\brief The table DATA_EXTRACTION_CONFIG contains configuration for the retrieval of any analysis data from the data repository.
6
7 |PK |Variable |Type | Required? |Label |Description |
8 |--------------|-------------------|------------------|-----------|---------------------------|--------------------------------------------------------------------------------------------------------------------|
9 | ![ ](pk.jpg) | SOURCE_DATA_NAME | VARCHAR(32) | Y | Source Data Name | Name of the output table being the result of the extraction |
10 | | ANALYSIS_DATA_KEY | VARCHAR(32) | Y | Report Name | Key of the Analysis Data to retrieve |
11 | | AGGREGATE_FLG | VARCHAR(1) | Y | Aggregate Flag | Controls whether movement records should be aggregated |
12
13\details
14
15
16\ingroup ddlStaticReporting
17\author SAS Institute Inc.
18\date 2019
19*/
20
21CREATE TABLE &LIBREF..DATA_EXTRACTION_CONFIG (
22 SOURCE_DATA_NAME VARCHAR(32) label = 'Source Data Name',
23 ANALYSIS_DATA_KEY VARCHAR(32) label = 'Analysis Data Key',
24 AGGREGATE_FLG VARCHAR(1) label = 'Aggregate Flag',
25 CONSTRAINT PRIM_KEY PRIMARY KEY (SOURCE_DATA_NAME)
26);