SAS Documentation
SASĀ® Solution for Stress Testing
Reference manual - version 08.2021
Loading...
Searching...
No Matches
irmst_node_dq_run.sas
Go to the documentation of this file.
1/*
2 Copyright (C) 2018 SAS Institute Inc. Cary, NC, USA
3*/
4
5/** \file
6 \brief Run Data Quality Rules
7
8 \param[in] ST_STG.DQ_CONFIG Input table containing a record for each combination of AnalysisData key and RuleSet key
9
10 \details
11
12 The structure of the input table ST_STG.DQ_CONFIG is as follows:
13
14 | ANALYSIS_DATA_KEY | DQ_RULE_SET_KEY |
15 |-------------------------|------------------|
16 | <AnalysisDataKey1> | <RuleSetKey1> |
17 | <AnalysisDataKey2> | <RuleSetKey2> |
18 | ... | ... |
19 | <AnalysisDataKeyN> | <RuleSetKeyN> |
20
21
22 In addition the following macro utilities are called:
23
24 | Macro name | Description | Further information |
25 |---------------------------|--------------------------------------------------------------------------------------------------------------|-----------------------------------------------|
26 | irm_session_prepare | Reads RUN_OPTION table and sets logging options | \link irm_session_prepare.sas \endlink |
27 | irm_session_cleanup | Removes all non-IRM WORK datasets/views and deletes all user-created macro variables from workspace session | \link irm_session_cleanup.sas \endlink |
28
29 \ingroup nodes
30 \author SAS Institute Inc.
31 \date 2018
32*/
33
34/* Initialize session */
35%irm_session_prepare();
36
37%irmc_run_dq_rules(ds_in_dq_config = &ds_in_dq_config.
38 , ds_in_cardinality = &ds_in_cardinality.
39 , partition_no = &rank.
40 , dr_libref = &dr_libref.
41 , ds_out_summary = &ds_out_summary.
42 , ds_out_details = &ds_out_details.
43 );
44
45/* Cleanup session */
46%irm_session_cleanup;