XYGATE Merged Audit Reference Manual

Table Of Contents
XYGATE Merged Audit
®
Reference Manual
Appendix B: Administrative Tables
XYPRO Technology Corporation 173 Proprietary and Confidential
MEASURE MOVER Processed Table =XMA_MEASMVPROCTBL
The MEASURE MOVERs use this table to record information regarding previously
collected MEASURE data. This prevents the creation of duplicates.
CREATE TABLE =XMA_MEASMVPROCTBL
( RECORDPROCESSKEY TIMESTAMP DEFAULT CURRENT NOT NULL
, NODE CHAR (8) NO DEFAULT NOT NULL
, ANCNODE CHAR (8) NO DEFAULT NOT NULL
, PROCESSNAME CHAR (8) NO DEFAULT NOT NULL
, ANCPROCESSNAME CHAR (8) NO DEFAULT NOT NULL
, CPU INTEGER NO DEFAULT NOT NULL
, ANCCPU INTEGER NO DEFAULT NOT NULL
, PIN INTEGER NO DEFAULT NOT NULL
, ANCPIN INTEGER NO DEFAULT NOT NULL
, PROGRAMVOL CHAR (8) NO DEFAULT NOT NULL
, PROGRAMSVOL CHAR (8) NO DEFAULT NOT NULL
, PROGRAMFILE CHAR (8) NO DEFAULT NOT NULL
, CAIDGRP SMALLINT NO DEFAULT NOT NULL
, CAIDUSR SMALLINT NO DEFAULT NOT NULL
, CREATION_LCT CHAR (26) NO DEFAULT NOT NULL
, PRIMARY KEY RECORDPROCESSKEY
)
B7: SAFEGUARD MOVER Table =XMA_SFGMVTBL
This table contains an entry for each SAFEGUARD MOVER Serverclass.
CREATE TABLE =XMA_SFGMVTBL
( ServerclassNAME CHAR (15) NO DEFAULT NOT NULL -- Server class name
, DELETED CHAR (1) DEFAULT 'N' NOT NULL -- Whether this server class has been
deleted
, AUDITFILEMASK CHAR (35) NO DEFAULT NOT NULL -- Location of the audits for
this node
, AUDITFILECODE SMALLINT NOT NULL -- Always 541 for safeguard
, CURRENTSTATUS VARCHAR(256) NO DEFAULT NOT NULL -- What is the server doing
, PRIMARY KEY ServerclassNAME
)
B8: SAFEGUARD Parameter Table =XMA_SFGMVPARAMSTBL
As of release 1.90 of XYGATE Merged Audit this table will not be used. The data will
be stored in the PARAMS table. When upgrading from a prior release, the data in the
individual product tables will be converted and placed in the PARAMS table.
This table contains sets of parameters for each MOVER identified in the SAFEGUARD
MOVER Table above.
CREATE TABLE =XMA_SFGMVPARAMSTBL
( RECORDPARAMSKEY TIMESTAMP DEFAULT CURRENT NOT NULL
, ServerclassNAME CHAR (15) NO DEFAULT NOT NULL -- Refers to =XMA_SFGMVTBL
, PARAMNAME VARCHAR (50) NO DEFAULT NOT NULL -- Name of the parameter
, PARAMVALUE VARCHAR (256) NO DEFAULT NOT NULL -- Value of the parameter
, PRIMARY KEY RECORDPARAMSKEY
)