SAS Documentation
SASĀ® Solution for Stress Testing
Reference manual - version 08.2021
Loading...
Searching...
No Matches
attribution_scenario_map.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 ATTRIBUTION_SCENARIO_MAP contains runtime parameters for the jobflow execution.
6
7 |PK |Variable |Type | Required? |Label |Description |
8 |--------------|-------------------------|------------------|-----------|----------------------|------------------------------|
9 |![ ](pk.jpg) | <b>FROM_SCENARIO_ID</b> | VARCHAR(32) | Y | From Scenario Id | Id of the source scenario |
10 |![ ](pk.jpg) | <b>TO_SCENARIO_ID</b> | VARCHAR(32) | Y | To Scenario Id | Id of the target scenario |
11
12
13
14\ingroup ddlStaticFlow
15\author SAS Institute Inc.
16\date 2019
17*/
18
19CREATE TABLE &LIBREF..ATTRIBUTION_SCENARIO_MAP (
20 FROM_SCENARIO_ID VARCHAR(32) label = 'From Scenario Id',
21 TO_SCENARIO_ID VARCHAR(32) label = 'To Scenario Id',
22 CONSTRAINT PRIM_KEY PRIMARY KEY (FROM_SCENARIO_ID, TO_SCENARIO_ID)
23);