SAS Documentation
SASĀ® Solution for Stress Testing
Reference manual - version 08.2021
Loading...
Searching...
No Matches
irmst_node_load_reportmart.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 Load results to the Reporting Mart
7
8 \details
9
10
11 In addition the following macro utilities are called:
12
13 | Macro name | Description | Further information |
14 |---------------------------|--------------------------------------------------------------------------------------------------------------|-----------------------------------------------|
15 | irm_session_prepare | Reads RUN_OPTION table and sets logging options | \link irm_session_prepare.sas \endlink |
16 | 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 |
17
18 \ingroup nodes
19 \author SAS Institute Inc.
20 \date 2018
21*/
22
23/* Initialize session */
24%irm_session_prepare();
25
26%irmc_load_reportmart(partition_no = &rank.
27 , ds_in_cardinality = &ds_in_cardinality.
28 , ds_in_reportmart_config = &ds_in_reportmart_config.
29 , ds_out_load_result = &ds_out_load_result.
30 , irm_input_libraries = &irm_input_libraries.
31 , dr_libref = &dr_libref.
32 , dr_library_name = &dr_library_name.
33 , mart_libref = &mart_libref.
34 , rgf_protocol = &rgf_protocol.
35 , rgf_host = &rgf_host.
36 , rgf_port = &rgf_port.
37 , rgf_service = &rgf_service.
38 , rgf_solution = &rgf_solution.
39 );
40
41/* Cleanup session */
42%irm_session_cleanup;