[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference azur::mcc

Title:DECmcc user notes file. Does not replace IPMT.
Notice:Use IPMT for problems. Newsletter location in note 6187
Moderator:TAEC::BEROUD
Created:Mon Aug 21 1989
Last Modified:Wed Jun 04 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:6497
Total number of notes:27359

6307.0. "MCC 1.4 crash, enabling rules..." by BLG01::ROSSI () Mon May 22 1995 17:19

Hello,
	I have a customer that works fine with MCC 1.3, OpenVMS 5.5-2
on a VaxStation 4000/90, 64Mbyte RAM. 

There are about 300 rules and about 300 Notification Requests activated
at the same time. About 300 Decnet nodes are managed. A Network status 
Map is always running on the screen. 

The working sets of MCC processes are at about 40,000 pages.
The virtual memory of that processes are at about 150,000 pages.
There are 2 Main processes running the MCC_MAIN.EXE image:

	- The iconic map (Motif)
	- A batch process that enable all the rules.

No problem with MCC 1.3.

After the installation MCC 1.4 there is the following problem:

 The batch process that enables the whole set of rules (about 300) 
 starts normally, but, when its working set goes over 22,000 pages
 and the virtual space goes above 48,000 pages, the process ends
 with an "acces violation" exception. 
 Starting many times this process, I notice that the crash is not
 at the same point of execution (not the same rule activated). 

 MCC_AUDIT.COM tests passed successfully. 

 System and user parameters are set very large:

	- WSMAX = 48,000
	- VIRTUALPAGECNT = 150,000
	- WSQUO = 48,000
	- PGFLQUO = 150,000
	- 2 contigous pagefiles (2x150,000 blocks) 

Could someone help us about this problem with MCC 1.4 ?

Many thanks in advance.

Bye,


Giuseppe


 
Here there is the log: 




$! sylogin.com
$!-------------------------------------------------------------------------
$!
$! This command procedure is always run when anybody on the entire system
$! logs in. It is equivalent to LOGIN.COM except that the instructions
$! contained herein are executed everytime anyone on the VMS system
$! logs in to their account.
$!
$! For interactive processes, turn on Control T, and set the terminal type
$!
$ IF (F$MODE() .EQS. "INTERACTIVE") 
$ ENDIF
$!
$! For MicroVAX systems only, use the command MOUNT/NOASSIST.
$!
$ IF (.NOT. F$TRNLNM("SYS$MICROVAX")) THEN GOTO SKIP_MICROVAX_COMMANDS
$ MOU*NT :== MOUNT/NOASSIST
$SKIP_MICROVAX_COMMANDS:
$!
$! Place your site-specific LOGIN commands below
$!
$ E*DIT:==EDIT/EDT/COMMAND=SYS$MANAGER:EDTINI.EDT
$ USERNAME = F$GETJPI("","USERNAME")
$ USERNAME = F$EDIT(USERNAME,"TRIM,UPCASE,COMPRESS")
$!
$ CD:==@SYS$MANAGER:CD.COM
$ STAMPA_PS:==@SYS$MANAGER:POST_PRINT
$ NCLC:== $SYS$UPDATE:DECNET_MIGRATE CONV COMM """
$ RETOS:==$RETOS
$!
$ SEND :== "$disk$user1:[mcc.procedure]MCC_EVC_SEND.EXE"
$!
$! STC :== $STC$CLI
$! STC$GET_INFO :== $STC$GET_INFO
$! STC$SET_MESSAGE :== SET MESSAGE SYS$MESSAGE:STC$MSG
$! STC$SET_FTSV_MESSAGE :== SET MESSAGE SYS$MESSAGE:STC_FTSV_MSG
$!
$ posta           :== @posta_com:posta.com
$ POS*TCRIPT == "PRINT /QUEUE=POSCRIPT" + -
                "/PARAMETERS=(""DATA_TYPE=POSTSCRIPT"") /NOFEED"
$! LOGIN.COM dell'utente MCC ---
$!-------------------------------------------------------------------------
$! Set parametri di sysgen per mcc per indurre paginazione non
$! traumatica in caso di scarsita` di memoria.
$!-------------------------------------------------------------------------
$!
$  IF ((F$MODE() .NES. "INTERACTIVE").AND. -
	 (F$MODE() .NES. "NETWORK")) THEN GOTO ENDINTER 
$ENDINTER:
$  IF F$MODE() .NES. "BATCH" THEN GOTO ENDBATCH
$!
$! Put commands you want executed only in batch mode between this comment
$! and the "ENDBATCH:" symbol.
$!
$
$ENDBATCH:
$!
$! Put commands that you want executed in any mode of login below.
$!
$ SET PROCESS/NOSWAP
$!
$!
$!
$! FILE: MCC_ALARMS_SECURITY.COM
$!  
$!  **************************************************************
$!  * ********************************************************** *
$!  * *                                                        * *
$!  * *  Copyright (c) Digital Equipment Corporation, 1990     * *
$!  * *  All Rights Reserved.  Unpublished rights reserved     * *
$!  * *  under the copyright laws of the United States.        * *
$!  * *                                                        * *
$!  * *  The software contained on this media is proprietary   * *
$!  * *  to and embodies the confidential technology of        * *
$!  * *  Digital Equipment Corporation.  Possession, use,      * *
$!  * *  duplication or dissemination of the software and      * *
$!  * *  media is authorized only pursuant to a valid written  * *
$!  * *  license from Digital Equipment Corporation.           * *
$!  * *                                                        * *
$!  * *  RESTRICTED RIGHTS LEGEND   Use, duplication, or       * *
$!  * *  disclosure by the U.S. Government is subject to       * *
$!  * *  restrictions as set forth in Subparagraph (c)(1)(ii)  * *
$!  * *  of DFARS 252.227-7013, or in FAR 52.227-19, as        * *
$!  * *  applicable.                                           * *
$!  * *                                                        * *
$!  * ********************************************************** *
$!  **************************************************************
$!  
$! FACILITY:
$!     MCC -- Management Control Center
$! 
$! ABSTRACT:
$! 
$! This purpose of this command file is to normalize DCL symbols, set
$! user's privileges to NOALL, restrict logical trasnlation to searching
$! on the system logical translation table, all as a security measure.
$! 
$! When a RULE fires, this command file will be queued to the SYS$BATCH
$! or user specifed execution queue.  This file will call the user's
$! specified command file after taking the above security precautions. 
$! It will then set the user's environment back to its original state.
$! 
$! The LOGFILE for the execution of the batch job is written to the
$! directory where the user specified command procedure is located.
$!
$! The parameters p1-p8 are displayed if the MCC_ALARMS_FM_LOG debug mask
$! is set to ??
$! 
$! ========================================================================
$!++
$! If the MCC_ALARMS_FM_LOG set to ALARMS$M_LOG_SECURITY_WRITELNS then write
$! the values of P1 through P8 
$!--
$!
$ ALARMS$M_LOG_SECURITY_WRITELNS = %X08
$! 
$ ALARMS$STR_MASK = f$trnlnm ("MCC_ALARMS_FM_LOG")
$ ALARMS$INT_MASK = f$integer ("%x"+ ALARMS$STR_MASK)
$ ALARMS$BIT = ALARMS$INT_MASK .and. ALARMS$M_LOG_SECURITY_WRITELNS
$!
$    queue = f$getqui ("DISPLAY_JOB", "QUEUE_NAME",, "THIS_JOB")
$    write sys$output "Current queue:	  ",queue
Current queue:	  MCC_SYS
$!
$ if ALARMS$BIT .gt. 0
$ endif
$!
$!++
$! Delete all the users symbols.  This is done to NORMALIZE the DCL symbols
$!--
$ DELETE = "DELETE"
$ DELETE/SYMBOL/GLOBAL/ALL                                                
$!++                     
$! DELETE user defined logicals in PROCESS and JOB tables
$!--
$ if ALARMS$BIT .gt. 0 then SHOW LOG
$!
$! DEASSIGN/PROCESS/ALL		!For Debug - removed by RJS, 18-May-92
$! DEASSIGN/JOB/ALL		!For Debug - removed by RJS, 18-May-92
$!
$! Restrict logical translation to the PROCESS, JOB and SYSTEM logical 
$! translation tables.  GROUP is not used.
$ DEFINE/TABLE=LNM$PROCESS_DIRECTORY LNM$FILE_DEV LNM$PROCESS,-
               LNM$JOB, LNM$SYSTEM
$!
$ if ALARMS$BIT .gt. 0 then SHOW LOG
$!
$!++
$! Save all users privileges and turn them off
$!--
$ SAVEPRIVS = F$SETPRV ("NOALL,TMPMBX, NETMBX")
$!
$!++
$! Split the DATA filename off from the User's Procedure name
$!--                                          
$ COMMAND_PROCEDURE = F$ELEMENT(0, "/", P8)
$ DATA_FILE 	    = F$ELEMENT(1, "/", P8)
$!
$! The below 4 lines are to remove any trailing dot that have been
$!  known to show up in some cases.
$ FILE_NAME = f$parse(data_file,,,"NAME")
$ DATA_FILE = "SYS$SCRATCH:" + file_name + ".DAT"
$!++
$! Set ON incase user's command procedure returns error
$!--                                          
$ on sever_error then continue
$ on error then continue
$ on warning then continue
$
$!++
$! Run the User's Command Procedure
$!--                                          
$ @DSA100:[MCC.PROCEDURE]CNA_ER_ENABLE_RULES.COM;3 "Domain MCC_NS:.CNA_ER Rule Activation_Rules "-   	!rulename
		      ""-   	!category 
		      ""-   	!description
		      "(Node4 SIB004  STATE = ON, at  every=12:00:00)"-   	!expression
		      "19-MAY-1995 14:13:22.69"-   	!time
		      "Rule fired: Node4 MCC_NS:.dna_node.SIB004 State = On 19-MAY-1995 14:13:22.57"-   	!dtcrtf or error
		      ""-   	!notification params
        	      "SYS$SCRATCH:MCC_ALARMS_DATA_14132269.DAT"	!file that contains more info about the rule
$! CNA_ER_ENABLE_RULES.COM;3
$!------------------------------------------------------------------------
$! Lancio regole di tutti i domini con disabilitazione delle regole 
$! iniziali di polling.
$! ATTENZIONE: e` importante che questo command file abbia la versione
$! uguale a ;3 pena il non aggancio da MCC ALARM FM.  OCCHIO!!!!!!!!!
$!------------------------------------------------------------------------
$ STATO==0
$ @MCC$COM:QUE_MADRE_IN
$! QUE_MADRE_IN.COM
$!------------------------------------------------------------------------------
$! Verifica se nella coda vi e` la madre di tutte le regole attiva
$! ritorna nello status:
$!		$STATUS = >1   -->  MADRE DI TUTTE LE REGOLE GIA` ATTIVA
$!		$STATUS = 1   -->  MADRE ASSENTE DALLA CODA
$!------------------------------------------------------------------------------
$ STATO==0
$! puntatore al contesto code
$  TEMP = F$GETQUI("")
$! loop sulle code
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$  QLOOP:
$  QNAME = F$GETQUI("DISPLAY_QUEUE","QUEUE_NAME","*")
$! fine loop code
$  IF QNAME .EQS. "" THEN EXIT
$! reloop
$  IF QNAME .NES. "MCC_SYS" THEN GOTO QLOOP
$! trovata coda giusta
$!!!  WRITE SYS$OUTPUT ""
$!!!  WRITE SYS$OUTPUT "QUEUE: ", QNAME
$! loop sui job della coda giusta
$  JLOOP:
$  NOACCESS = F$GETQUI("DISPLAY_JOB","JOB_INACCESSIBLE",,"ALL_JOBS")
$  IF NOACCESS .EQS. "TRUE" THEN GOTO JLOOP
$  IF NOACCESS .EQS. "" 
$  ENDIF
$! trovato job
$  JNAME = F$GETQUI("DISPLAY_JOB","JOB_NAME",,"FREEZE_CONTEXT,ALL_JOBS")
$  IF JNAME .EQS. "CNA_ER_ENABLE_RULES"
$  THEN
$!  job giusto trovato!!!
$!!!	WRITE SYS$OUTPUT " MADRE ATTIVA "
$	STATO==STATO+1
$!!!	GOTO FINE
$  ENDIF
$!!!  WRITE SYS$OUTPUT "    JOB:  ", JNAME
$  GOTO JLOOP
$  JLOOP:
$  NOACCESS = F$GETQUI("DISPLAY_JOB","JOB_INACCESSIBLE",,"ALL_JOBS")
$  IF NOACCESS .EQS. "TRUE" THEN GOTO JLOOP
$  IF NOACCESS .EQS. "" 
$  THEN 
$	GOTO FINE
$FINE:
$ EXIT
$ IF STATO .GT. 1
$ ENDIF
$!
$! giro normale madre non in coda
$ MANAGE/ENTERPRISE
DECmcc (V1.4-1) 

 	ENABLE  DOMAIN .CNA_PC RULE ROU_CIR_CDCF 

Domain MCC_NS:.CNA_PC Rule ROU_CIR_CDCF 
AT 19-MAY-1995 14:13:32 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_PC RULE ROU_CIR_CDOI  

Domain MCC_NS:.CNA_PC Rule ROU_CIR_CDOI 
AT 19-MAY-1995 14:13:33 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_PC RULE ROU_CIR_CD  

Domain MCC_NS:.CNA_PC Rule ROU_CIR_CD 
AT 19-MAY-1995 14:13:33 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_PC RULE ROU_CIR_UP  

Domain MCC_NS:.CNA_PC Rule ROU_CIR_UP 
AT 19-MAY-1995 14:13:33 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_PC RULE ROU_AD  

Domain MCC_NS:.CNA_PC Rule ROU_AD 
AT 19-MAY-1995 14:13:33 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_PC RULE ROU_ADOI  

Domain MCC_NS:.CNA_PC Rule ROU_ADOI 
AT 19-MAY-1995 14:13:34 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_PC RULE ROU_AU  

Domain MCC_NS:.CNA_PC Rule ROU_AU 
AT 19-MAY-1995 14:13:34 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_PR RULE ROU_CIR_CDCF 

Domain MCC_NS:.CNA_PR Rule ROU_CIR_CDCF 
AT 19-MAY-1995 14:13:34 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_PR RULE ROU_CIR_CDOI  

Domain MCC_NS:.CNA_PR Rule ROU_CIR_CDOI 
AT 19-MAY-1995 14:13:34 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_PR RULE ROU_CIR_CD  

Domain MCC_NS:.CNA_PR Rule ROU_CIR_CD 
AT 19-MAY-1995 14:13:35 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_PR RULE ROU_CIR_UP  

Domain MCC_NS:.CNA_PR Rule ROU_CIR_UP 
AT 19-MAY-1995 14:13:35 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_PR RULE ROU_AD  

Domain MCC_NS:.CNA_PR Rule ROU_AD 
AT 19-MAY-1995 14:13:35 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_PR RULE ROU_ADOI  

Domain MCC_NS:.CNA_PR Rule ROU_ADOI 
AT 19-MAY-1995 14:13:35 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_PR RULE ROU_AU  

Domain MCC_NS:.CNA_PR Rule ROU_AU 
AT 19-MAY-1995 14:13:35 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RE RULE ROU_CIR_CDCF 

Domain MCC_NS:.CNA_RE Rule ROU_CIR_CDCF 
AT 19-MAY-1995 14:13:36 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RE RULE ROU_CIR_CDOI  

Domain MCC_NS:.CNA_RE Rule ROU_CIR_CDOI 
AT 19-MAY-1995 14:13:36 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RE RULE ROU_CIR_CD  

Domain MCC_NS:.CNA_RE Rule ROU_CIR_CD 
AT 19-MAY-1995 14:13:36 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RE RULE ROU_CIR_UP  

Domain MCC_NS:.CNA_RE Rule ROU_CIR_UP 
AT 19-MAY-1995 14:13:36 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RE RULE ROU_AD  

Domain MCC_NS:.CNA_RE Rule ROU_AD 
AT 19-MAY-1995 14:13:36 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RE RULE ROU_ADOI  

Domain MCC_NS:.CNA_RE Rule ROU_ADOI 
AT 19-MAY-1995 14:13:37 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RE RULE ROU_AU  

Domain MCC_NS:.CNA_RE Rule ROU_AU 
AT 19-MAY-1995 14:13:37 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_MO RULE ROU_CIR_CDCF 

Domain MCC_NS:.CNA_MO Rule ROU_CIR_CDCF 
AT 19-MAY-1995 14:13:37 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_MO RULE ROU_CIR_CDOI  

Domain MCC_NS:.CNA_MO Rule ROU_CIR_CDOI 
AT 19-MAY-1995 14:13:37 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_MO RULE ROU_CIR_CD  

Domain MCC_NS:.CNA_MO Rule ROU_CIR_CD 
AT 19-MAY-1995 14:13:37 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_MO RULE ROU_CIR_UP  

Domain MCC_NS:.CNA_MO Rule ROU_CIR_UP 
AT 19-MAY-1995 14:13:37 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_MO RULE ROU_AD  

Domain MCC_NS:.CNA_MO Rule ROU_AD 
AT 19-MAY-1995 14:13:38 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_MO RULE ROU_ADOI  

Domain MCC_NS:.CNA_MO Rule ROU_ADOI 
AT 19-MAY-1995 14:13:38 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_MO RULE ROU_AU  

Domain MCC_NS:.CNA_MO Rule ROU_AU 
AT 19-MAY-1995 14:13:38 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_BO RULE ROU_CIR_CDCF 

Domain MCC_NS:.CNA_BO Rule ROU_CIR_CDCF 
AT 19-MAY-1995 14:13:38 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_BO RULE ROU_CIR_CDOI  

Domain MCC_NS:.CNA_BO Rule ROU_CIR_CDOI 
AT 19-MAY-1995 14:13:39 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_BO RULE ROU_CIR_CD  

Domain MCC_NS:.CNA_BO Rule ROU_CIR_CD 
AT 19-MAY-1995 14:13:39 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_BO RULE ROU_CIR_UP  

Domain MCC_NS:.CNA_BO Rule ROU_CIR_UP 
AT 19-MAY-1995 14:13:39 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_BO RULE ROU_AD  

Domain MCC_NS:.CNA_BO Rule ROU_AD 
AT 19-MAY-1995 14:13:39 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_BO RULE ROU_ADOI  

Domain MCC_NS:.CNA_BO Rule ROU_ADOI 
AT 19-MAY-1995 14:13:39 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_BO RULE ROU_AU  

Domain MCC_NS:.CNA_BO Rule ROU_AU 
AT 19-MAY-1995 14:13:40 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_REGIONALE RULE ROU_CIR_CDCF 

Domain MCC_NS:.CNA_REGIONALE Rule ROU_CIR_CDCF 
AT 19-MAY-1995 14:13:40 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_REGIONALE RULE ROU_CIR_CDOI  

Domain MCC_NS:.CNA_REGIONALE Rule ROU_CIR_CDOI 
AT 19-MAY-1995 14:13:40 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_REGIONALE RULE ROU_CIR_CD  

Domain MCC_NS:.CNA_REGIONALE Rule ROU_CIR_CD 
AT 19-MAY-1995 14:13:40 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_REGIONALE RULE ROU_CIR_UP  

Domain MCC_NS:.CNA_REGIONALE Rule ROU_CIR_UP 
AT 19-MAY-1995 14:13:41 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_REGIONALE RULE ROU_AD  

Domain MCC_NS:.CNA_REGIONALE Rule ROU_AD 
AT 19-MAY-1995 14:13:41 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_REGIONALE RULE ROU_ADOI  

Domain MCC_NS:.CNA_REGIONALE Rule ROU_ADOI 
AT 19-MAY-1995 14:13:41 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_REGIONALE RULE ROU_AU  

Domain MCC_NS:.CNA_REGIONALE Rule ROU_AU 
AT 19-MAY-1995 14:13:41 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_IL RULE ROU_CIR_CDCF 

Domain MCC_NS:.CNA_IL Rule ROU_CIR_CDCF 
AT 19-MAY-1995 14:13:42 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_IL RULE ROU_CIR_CDOI  

Domain MCC_NS:.CNA_IL Rule ROU_CIR_CDOI 
AT 19-MAY-1995 14:13:42 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_IL RULE ROU_CIR_CD  

Domain MCC_NS:.CNA_IL Rule ROU_CIR_CD 
AT 19-MAY-1995 14:13:42 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_IL RULE ROU_CIR_UP  

Domain MCC_NS:.CNA_IL Rule ROU_CIR_UP 
AT 19-MAY-1995 14:13:42 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_IL RULE ROU_AD  

Domain MCC_NS:.CNA_IL Rule ROU_AD 
AT 19-MAY-1995 14:13:43 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_IL RULE ROU_ADOI  

Domain MCC_NS:.CNA_IL Rule ROU_ADOI 
AT 19-MAY-1995 14:13:43 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_IL RULE ROU_AU  

Domain MCC_NS:.CNA_IL Rule ROU_AU 
AT 19-MAY-1995 14:13:43 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_FE RULE ROU_CIR_CDCF 

Domain MCC_NS:.CNA_FE Rule ROU_CIR_CDCF 
AT 19-MAY-1995 14:13:44 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_FE RULE ROU_CIR_CDOI  

Domain MCC_NS:.CNA_FE Rule ROU_CIR_CDOI 
AT 19-MAY-1995 14:13:44 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_FE RULE ROU_CIR_CD  

Domain MCC_NS:.CNA_FE Rule ROU_CIR_CD 
AT 19-MAY-1995 14:13:44 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_FE RULE ROU_CIR_UP  

Domain MCC_NS:.CNA_FE Rule ROU_CIR_UP 
AT 19-MAY-1995 14:13:44 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_FE RULE ROU_AD  

Domain MCC_NS:.CNA_FE Rule ROU_AD 
AT 19-MAY-1995 14:13:45 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_FE RULE ROU_ADOI  

Domain MCC_NS:.CNA_FE Rule ROU_ADOI 
AT 19-MAY-1995 14:13:45 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_FE RULE ROU_AU  

Domain MCC_NS:.CNA_FE Rule ROU_AU 
AT 19-MAY-1995 14:13:45 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RA RULE ROU_CIR_CDCF 

Domain MCC_NS:.CNA_RA Rule ROU_CIR_CDCF 
AT 19-MAY-1995 14:13:46 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RA RULE ROU_CIR_CDOI  

Domain MCC_NS:.CNA_RA Rule ROU_CIR_CDOI 
AT 19-MAY-1995 14:13:46 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RA RULE ROU_CIR_CD  

Domain MCC_NS:.CNA_RA Rule ROU_CIR_CD 
AT 19-MAY-1995 14:13:46 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RA RULE ROU_CIR_UP  

Domain MCC_NS:.CNA_RA Rule ROU_CIR_UP 
AT 19-MAY-1995 14:13:47 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RA RULE ROU_AD  

Domain MCC_NS:.CNA_RA Rule ROU_AD 
AT 19-MAY-1995 14:13:47 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RA RULE ROU_ADOI  

Domain MCC_NS:.CNA_RA Rule ROU_ADOI 
AT 19-MAY-1995 14:13:47 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RA RULE ROU_AU  

Domain MCC_NS:.CNA_RA Rule ROU_AU 
AT 19-MAY-1995 14:13:47 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_FO RULE ROU_CIR_CDCF 

Domain MCC_NS:.CNA_FO Rule ROU_CIR_CDCF 
AT 19-MAY-1995 14:13:48 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_FO RULE ROU_CIR_CDOI  

Domain MCC_NS:.CNA_FO Rule ROU_CIR_CDOI 
AT 19-MAY-1995 14:13:48 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_FO RULE ROU_CIR_CD  

Domain MCC_NS:.CNA_FO Rule ROU_CIR_CD 
AT 19-MAY-1995 14:13:48 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_FO RULE ROU_CIR_UP  

Domain MCC_NS:.CNA_FO Rule ROU_CIR_UP 
AT 19-MAY-1995 14:13:49 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_FO RULE ROU_AD  

Domain MCC_NS:.CNA_FO Rule ROU_AD 
AT 19-MAY-1995 14:13:49 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_FO RULE ROU_ADOI  

Domain MCC_NS:.CNA_FO Rule ROU_ADOI 
AT 19-MAY-1995 14:13:49 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_FO RULE ROU_AU  

Domain MCC_NS:.CNA_FO Rule ROU_AU 
AT 19-MAY-1995 14:13:50 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RI RULE ROU_CIR_CDCF 

Domain MCC_NS:.CNA_RI Rule ROU_CIR_CDCF 
AT 19-MAY-1995 14:13:50 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RI RULE ROU_CIR_CDOI  

Domain MCC_NS:.CNA_RI Rule ROU_CIR_CDOI 
AT 19-MAY-1995 14:13:50 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RI RULE ROU_CIR_CD  

Domain MCC_NS:.CNA_RI Rule ROU_CIR_CD 
AT 19-MAY-1995 14:13:50 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RI RULE ROU_CIR_UP  

Domain MCC_NS:.CNA_RI Rule ROU_CIR_UP 
AT 19-MAY-1995 14:13:51 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RI RULE ROU_AD  

Domain MCC_NS:.CNA_RI Rule ROU_AD 
AT 19-MAY-1995 14:13:51 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RI RULE ROU_ADOI  

Domain MCC_NS:.CNA_RI Rule ROU_ADOI 
AT 19-MAY-1995 14:13:51 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_RI RULE ROU_AU  

Domain MCC_NS:.CNA_RI Rule ROU_AU 
AT 19-MAY-1995 14:13:52 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_MI RULE ROU_CIR_CDCF 

Domain MCC_NS:.CNA_MI Rule ROU_CIR_CDCF 
AT 19-MAY-1995 14:13:52 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_MI RULE ROU_CIR_CDOI  

Domain MCC_NS:.CNA_MI Rule ROU_CIR_CDOI 
AT 19-MAY-1995 14:13:52 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_MI RULE ROU_CIR_CD  

Domain MCC_NS:.CNA_MI Rule ROU_CIR_CD 
AT 19-MAY-1995 14:13:53 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_MI RULE ROU_CIR_UP  

Domain MCC_NS:.CNA_MI Rule ROU_CIR_UP 
AT 19-MAY-1995 14:13:53 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_MI RULE ROU_AD  

Domain MCC_NS:.CNA_MI Rule ROU_AD 
AT 19-MAY-1995 14:13:53 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_MI RULE ROU_ADOI  

Domain MCC_NS:.CNA_MI Rule ROU_ADOI 
AT 19-MAY-1995 14:13:54 

Normal operation has begun.
 	ENABLE  DOMAIN .CNA_MI RULE ROU_AU  

Domain MCC_NS:.CNA_MI Rule ROU_AU 
AT 19-MAY-1995 14:13:54 

Normal operation has begun.
	ENABLE  DOMAIN .SIAER RULE AUTOPOLL_SIAER

Domain MCC_NS:.SIAER Rule AUTOPOLL_SIAER 
AT 19-MAY-1995 14:13:55 

Normal operation has begun.
	ENABLE  DOMAIN .SIAER RULE AUTOPOLL_SIAER_PHASE_5

Domain MCC_NS:.SIAER Rule AUTOPOLL_SIAER_PHASE_5 
AT 19-MAY-1995 14:13:56 

Normal operation has begun.
	ENABLE  DOMAIN .CNA_PC RULE AUTOPOLL_CNA_PC  

Domain MCC_NS:.CNA_PC Rule AUTOPOLL_CNA_PC 
AT 19-MAY-1995 14:13:57 

Normal operation has begun.
	ENABLE  DOMAIN .CNA_PR RULE AUTOPOLL_CNA_PR

Domain MCC_NS:.CNA_PR Rule AUTOPOLL_CNA_PR 
AT 19-MAY-1995 14:13:59 

Normal operation has begun.
	ENABLE  DOMAIN .CNA_RE RULE AUTOPOLL_CNA_RE  

Domain MCC_NS:.CNA_RE Rule AUTOPOLL_CNA_RE 
AT 19-MAY-1995 14:14:00 

Normal operation has begun.
	ENABLE  DOMAIN .CNA_MO RULE AUTOPOLL_CNA_MO

Domain MCC_NS:.CNA_MO Rule AUTOPOLL_CNA_MO 
AT 19-MAY-1995 14:14:01 

Normal operation has begun.
	ENABLE  DOMAIN .CNA_BO RULE AUTOPOLL_CNA_BO

Domain MCC_NS:.CNA_BO Rule AUTOPOLL_CNA_BO 
AT 19-MAY-1995 14:14:02 

Normal operation has begun.
	ENABLE  DOMAIN .CNA_IL RULE AUTOPOLL_CNA_IL

Domain MCC_NS:.CNA_IL Rule AUTOPOLL_CNA_IL 
AT 19-MAY-1995 14:14:03 

Normal operation has begun.
	ENABLE  DOMAIN .CNA_REGIONALE RULE AUTOPOLL_CNA_REGIONALE

Domain MCC_NS:.CNA_REGIONALE Rule AUTOPOLL_CNA_REGIONALE 
AT 19-MAY-1995 14:14:05 

Normal operation has begun.
	ENABLE  DOMAIN .CNA_FE RULE AUTOPOLL_CNA_FE

Domain MCC_NS:.CNA_FE Rule AUTOPOLL_CNA_FE 
AT 19-MAY-1995 14:14:09 

Normal operation has begun.
	ENABLE  DOMAIN .CNA_RA RULE AUTOPOLL_CNA_RA

Domain MCC_NS:.CNA_RA Rule AUTOPOLL_CNA_RA 
AT 19-MAY-1995 14:14:13 

Normal operation has begun.
	ENABLE  DOMAIN .CNA_FO RULE AUTOPOLL_CNA_FO

Domain MCC_NS:.CNA_FO Rule AUTOPOLL_CNA_FO 
AT 19-MAY-1995 14:14:15 

Normal operation has begun.
	ENABLE  DOMAIN .CNA_RI RULE AUTOPOLL_CNA_RI

Domain MCC_NS:.CNA_RI Rule AUTOPOLL_CNA_RI 
AT 19-MAY-1995 14:14:17 

Normal operation has begun.
	ENABLE  DOMAIN .CNA_MI RULE AUTOPOLL_CNA_MI

Domain MCC_NS:.CNA_MI Rule AUTOPOLL_CNA_MI 
AT 19-MAY-1995 14:14:17 

Normal operation has begun.
	ENABLE  DOMAIN .SIAER RULE AUTOPOLL_STATION

Domain MCC_NS:.SIAER Rule AUTOPOLL_STATION 
AT 19-MAY-1995 14:14:19 

Normal operation has begun.
	ENABLE  DOMAIN .SIAER RULE POLL_STATION_SIAER

Domain MCC_NS:.SIAER Rule POLL_STATION_SIAER 
AT 19-MAY-1995 14:14:22 

Normal operation has begun.
 	ENABLE  DOMAIN .SIAER RULE ROU_CIR_CDCF 
%SYSTEM-F-ACCVIO, access violation, reason mask=00, virtual address=00000001, 
PC=80000010, PSL=03C00004

  Improperly handled condition, image exit forced.

	Signal arguments	      Stack contents

	Number = 00000005		 80447C40
	Name   = 0000000C		 00000002
		 00000000		 01581E48
		 00000001		 01581E30
		 80000010		 00000004
		 03C00004		 01582010
					 00000000
					 0326DE6A
					 0E2F8C01
					 05000001

	Register dump

	R0 = 03C00000  R1 = 00000001  R2 = 01582064  R3 = 015CA07C
	R4 = 0326DE6A  R5 = 00000000  R6 = 00089900  R7 = 00000000
	R8 = 015C52B8  R9 = 00000000  R10= 00000003  R11= 0053DF01
	AP = 01581DE4  FP = 01581DA4  SP = 01581E20  PC = 80000010
	PSL= 03C00004

%DCL-W-SKPDAT, image data (records not beginning with "$") ignored
$ !++
$ ! 	Delete the data file 
$ !--
$ 	DELETE SYS$SCRATCH:MCC_ALARMS_DATA_14132269.DAT;
$ !++
$ ! clean exit point
$ !--
$ clean_exit: 
$ !
$ !----------------------------------------------------------------------------
$ 		exit
  MCC          job terminated at 19-MAY-1995 14:14:29.60

  Accounting information:
  Buffered I/O count:            1569         Peak working set size:   22597
  Direct I/O count:               217         Peak page file size:     47172
  Page faults:                  15808         Mounted volumes:             0
  Charged CPU time:           0 00:00:34.94   Elapsed time:     0 00:01:06.47

T.RTitleUserPersonal
Name
DateLines