SAS Documentation
SASĀ® Solution for Stress Testing
Reference manual - version 08.2021
Loading...
Searching...
No Matches
map_ltv_type.sas
Go to the documentation of this file.
1/* Copyright (C) 2018 SAS Institute Inc. Cary, NC, USA */
2
3/*!
4\file
5
6\brief Mapping Loan-to-Value types
7
8 |PK |Variable |Type |Not Null * |Relationships |Label |Description |
9 |--------------|---------------------------------------|------------------|-----------|--------------|---------------------------------------------|-----------------------|
10 |![ ](pk.jpg) | <b>LTV_START</b> | NUMERIC(8) | Y | | Loan to Value Start Range | |
11 |![ ](pk.jpg) | <b>LTV_END</b> | NUMERIC(8) | Y | | Loan to Value End Range | |
12 | | LTV_DESC | VARCHAR(50) | N | | Loan to Value Description | |
13
14Notes:
15- (*) indicates a not-nullable variable.
16- Note that the indicated data types are SAS datatypes.
17
18
19\ingroup ddlMapping
20
21\author SAS Institute Inc.
22\date 2018
23
24*/
25CREATE TABLE &LIBREF..MAP_LTV_TYPE (
26 LTV_START NUMERIC(8) label='LTV Start Range',
27 LTV_END NUMERIC(8) label='LTV End Range',
28 LTV_DESC VARCHAR(50) label='LTV Type'
29);