SAS Documentation
SASĀ® Solution for Stress Testing
Reference manual - version 08.2021
Loading...
Searching...
No Matches
irmst_node_recombine.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 Collect data from multiple IRM partitions into a single output table.
7
8
9 \details
10
11 This node calls macro \link rsk_recombine.sas \endlink to append results from multiple IRM data partitions into a single table.
12
13 In addition the following macro utilities are called:
14
15 | Macro name | Description | Further information |
16 |---------------------------|--------------------------------------------------------------------------------------------------------------|-----------------------------------------------|
17 | irm_session_prepare | Reads RUN_OPTION table and sets logging options | \link irm_session_prepare.sas \endlink |
18 | 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 |
19
20 \ingroup nodes
21 \author SAS Institute Inc.
22 \date 2018
23*/
24
25/* Initialize session */
26%irm_session_prepare();
27
28/* Collect all partitions */
29%rsk_recombine(IN_DS_NM = &DS_IN.
30 , LIB_PREFIX = &LIBPREFIX.
31 , PARTITION_NO = &MAX_RANK.
32 , O_DS = &DS_OUT.
33 );
34
35/* Cleanup session */
36%irm_session_cleanup;