Difference between revisions of "UC4"

From Vital Soft Wiki
Jump to: navigation, search
>Jeremyb
>Jeremyb
Line 1: Line 1:
 
Vital Signs relies on nightly run UC4 jobs to extract the Core data which is warehoused and provided to the applications
 
Vital Signs relies on nightly run UC4 jobs to extract the Core data which is warehoused and provided to the applications
  
 +
These jobs fall into two categories, daily and EOM.  The Daily is made up of 2 jobs, History and Membership Analysis.
  
== Daily Jobs ==
+
== Job Schedules ==
 +
 
 +
'''Daily'''
 +
*History
 +
**Run between 12:01 and 1am every day.
 +
*Membership Analysis
 +
**Run prior to 5am
 +
 
 +
'''EOM'''
 +
*Membership Analysis
 +
**Run after report databases have been created
 +
 
 +
 
 +
== Daily Job Examples ==
  
 
'''HISTORY'''
 
'''HISTORY'''
Line 27: Line 41:
  
  
== Month End Jobs ==
+
== Month End Example Job ==
  
 
'''MEMBERSHIP ANALYSIS'''
 
'''MEMBERSHIP ANALYSIS'''

Revision as of 20:01, 22 August 2012

Vital Signs relies on nightly run UC4 jobs to extract the Core data which is warehoused and provided to the applications

These jobs fall into two categories, daily and EOM. The Daily is made up of 2 jobs, History and Membership Analysis.

Job Schedules

Daily

  • History
    • Run between 12:01 and 1am every day.
  • Membership Analysis
    • Run prior to 5am

EOM

  • Membership Analysis
    • Run after report databases have been created


Daily Job Examples

HISTORY

##Run nightly- between 12:01 and 1 am.
##Login as bolive
set -e
cd /var/summit/spectrum/LIVE
/VSJOBS/JVSLOAD_HIST

MEMBERSHIP ANALYSIS

##Run nightly – after JVSLOAD_HIST and prior to 5am
##Do not run on days when the EOM job (see below) is scheduled
##Login as bolive
set -e
cd /var/summit/spectrum/LIVE
/VSJOBS/JVSLOAD_MBRSHLN


Month End Example Job

MEMBERSHIP ANALYSIS

##Run after report databases have been created
##Login as bolive
set -e
cd /var/summit/spectrum/LIVE
/VSJOBS/JVSLOAD_MBRSHLN eom &YYYYMMDD
#Where &YYYYMMDD is a UC4 variable containing the last day of the month being closed


Note: There is no need to have your job plans pause and wait for completion of these jobs before continuing with the next step