ClearPath MCP Database Update. Session 3027, Tuesday, May 15, 2012, 8:00AM Ron Neubauer, Principal Engineer, Unisys Corporation

Size: px
Start display at page:

Download "ClearPath MCP Database Update. Session 3027, Tuesday, May 15, 2012, 8:00AM Ron Neubauer, Principal Engineer, Unisys Corporation"

Transcription

1 ClearPath MCP Database Update Session 3027, Tuesday, May 15, 2012, 8:00AM Ron Neubauer, Principal Engineer, Unisys Corporation

2 What s New Larger alpha item size & larger record size Persistent RSN Reduced fine-table locking Remote Database Backup Automation Database Operations Center Enhancements 2012 Unisys Corporation. All rights reserved. 2

3 Larger Alpha Item Size & Larger Record Size Maximum alpha item size increased from 2**12-1 (4095) bytes to 2**16 1 (65535) bytes Maximum record size increased from 2**12-1 (4095) words to 2**16 1 (65535) words 2012 Unisys Corporation. All rights reserved. 3

4 Persistent RSN RSNs can be preserved across database reorganization SYSTEM/BUILDREORG Option KEEPRSN If SET, preserves the RSN value of new records created during a USEREORGDB reorganization If RESET the reorganization guarantees the uniqueness of RSNs for data set records but does not guarantee that old RSN values are preserved Default: RESET Example: GENERATE EMPLOYEES KEEPRSN; 2012 Unisys Corporation. All rights reserved. 4

5 Reduced Fine Table Locking Current behavior DMSII removes a set entry immediately upon deletion Fine table is locked until transaction is completed or aborted May cause unnecessary blockages and even DEADLOCKs if multiple programs are deleting entries in the same or adjacent tables New DASDL NOFTLOCK option Set entries are marked for deletion Fine table does not have to remain locked for duration of transaction Entry is logically deleted in the eyes of other programs Other programs trying to insert or lock related records are no longer blocked 2012 Unisys Corporation. All rights reserved. 5

6 Reduced Fine Table Locking Only available for XE Disjoint Index-Sequential Set DUPLICATE option must not be set Deleted set entries not automatically removed Use On-Line Garbage Collection (OLGC via Visible Database Command) -or- Garbage Collection via DMSII Reorganization procedure 2012 Unisys Corporation. All rights reserved. 6

7 Remote Database Backup Automation Current mechanism for managing RDB operations is with Database Operations Center 2012 Unisys Corporation. All rights reserved. 7

8 Remote Database Backup Automation SYSTEM/RDBOPS new command line utility INITIALIZE MODIFY ACKNOWLEDGEMENT ENABLE DISABLE TAKEOVER STATUS Creates a Remote Database Backup control file Updates file with complete primary and secondary host configuration options Reads a configuration file Updates the RDB control file at both hosts with configuration options read from a configuration file Accepts an AUDIT FILE NUMBER as input and performs a Remote Database Backup ACKNOWLEDGEMENT operation Performs a Remote Database Backup ENABLE operation Performs a Remote Database Backup DISABLE operation Performs a Remote Database Backup takeover Retrieves, displays, prints status and statistical information 2012 Unisys Corporation. All rights reserved. 8

9 Remote Database Backup Automation Configuration File Used with SYSTEM/RDBOPS INITIALIZE & MODIFY commands Contents Host and family specification information Transfer mode information Error handling options ACK rate specification 2012 Unisys Corporation. All rights reserved. 9

10 Remote Database Backup Automation Template configuration file starts with some how to % This Configuration File is specifically for input to the % SYSTEM/RDBOPS program. % % Copy this template file as a local file that you can tailor with % database-specific information. % % EXAMPLE: % COPY TEMPLATE/RDB/CONFIG AS RDB/CONFIG/INIT % % User-required specifications are marked below using <...> notation. % User-required specifications must be completed for all primary % and secondary host attributes of the config file. % % Product defaults are provided for many specifications. Defaults % can always be replaced by user specifications. % % An example CONFIG file with completed input is provided at the end % of this file. % % Complete documentation and example usage of this CONFIG file is % provide in the Remote Database Backup Planning and Operations Guide. % % Examples: % RUN SYSTEM/RDBOPS("DB=(PROD)PRODDB ON DBPACK INITIALIZE"); % FILE CONFIG = (PROD)RDB/CONFIG/INIT ON DBPACK % RUN SYSTEM/RDBOPS("DB=(PROD)PRODDB ON DBPACK MODIFY"); % FILE CONFIG = (PROD)RDB/CONFIG/MOD ON DBPACK % % Beginning of CONFIG options. % Replace all <...> tokens with actual configuration options: 2012 Unisys Corporation. All rights reserved. 10

11 Remote Database Backup Automation and continues with a framework for primary DB_NAME <database name> CF_USERCODE <usercode> OR * PRI_HOSTNAME <host name> PRI_CF_FAMNAME <family name> PRI_AUDIT_FAMNAME <family name> PRI_DUPAUDIT_FAMNAME <family name> PRI_AUDIT_ALTFAMNAME <family name> PRI_DUPAUDIT_ALTFAMNAME <family name> PRI_RDBSERVER_FILE <file title> PRI_ACKRATE 10 % <integer> PRI_SYNC_RESTART_INTERVAL 100 % <integer> PRI_DELAY_AUDIT_REMOVAL <boolean> PRI_AUDITTRANSFER_MODE 1 % <mode option> % <mode option> values: % NSC = 0 % ABW = 1 % AFS = 2 % SCA = 3 % AFM = 4 PRI_ERROR_HANDLING 1 % <error handling option> % <error handling option> values for ABW mode: % DROP = 1 % OPERATOR = 2 PRI_AFS_TRANSFER 1 % <file transfer option> % <file transfer option> values for AFS mode: % NFT = 1 % FTRAPID = 2 PRI_AFM_COPYAUDIT <boolean> PRI_FTRAPID_TITLE OBJECT/RAPID ON DISK % <file title> PRI_PORTIO_TIMEOUT 60 % <integer> Corresponds to 2012 Unisys Corporation. All rights reserved. 11

12 Remote Database Backup Automation and secondary SEC_HOSTNAME <host name> SEC_CF_FAMNAME <family name> SEC_AUDIT_FAMNAME <family name> SEC_DUPAUDIT_FAMNAME <family name> SEC_AUDIT_ALTFAMNAME <family name> SEC_DUPAUDIT_ALTFAMNAME <family name> SEC_RDBSERVER_FILE <file title> SEC_ACKRATE 10 % <integer> SEC_SYNC_RESTART_INTERVAL 100 % <integer> SEC_AUDITTRANSFER_MODE 1 % <mode option> % <mode option> values: % NSC = 0 % ABW = 1 % AFS = 2 % SCA = 3 % AFM = 4 SEC_ERROR_HANDLING 1 % <error handling option> % <error handling option> values for ABW mode: % DROP = 1 % OPERATOR = 2 SEC_AFS_TRANSFER 1 % <file transfer option> % <file transfer option> values for AFS mode: % NFT = 1 % FTRAPID = 2 SEC_AFM_COPYAUDIT <boolean> SEC_FTRAPID_TITLE OBJECT/RAPID ON DISK % <file title> SEC_PORTIO_TIMEOUT 60 % <integer> 2012 Unisys Corporation. All rights reserved. 12

13 Remote Database Backup Automation Scripting Automated Configuration: Script BEGIN JOB SETUP/RDB; FAMILY DISK = RDBPK OTHERWISE DISK; TASK CT; DISPLAY("%%% INITIALIZE RDB %%%"); RUN SYSTEM/RDBOPS("DB=(DEMO)TESTDB ON RDBPK INITIALIZE"); FILE CONFIG=(DEMO)RDB/NSCMODE ON RDBPK; DISPLAY(" --- WAIT FOR 5 SECONDS"); WAIT(5); DISPLAY("%%% ENABLE RDB %%%"); RUN SYSTEM/RDBOPS("DB=(DEMO)TESTDB ON RDBPK ENABLE"); DISPLAY(" --- WAIT FOR 5 SECONDS"); WAIT(5); DISPLAY(" --- DUMP DATABASE ---"); RUN SYSTEM/DMUTILITY("DB=(DEMO)TESTDB ON RDBPK DUMP = TO TESTDB/DUMP " & " ON RDBPK"); DISPLAY(" --- WAIT FOR 5 SECONDS"); WAIT(5); DISPLAY(" --- COPY DUMP TO SECONDARY HOST ---"); COPY TESTDB/DUMP TO RDBPK (PACK, HOSTNAME=BKHOST); DISPLAY(" --- WAIT FOR 5 SECONDS"); WAIT(5); DISPLAY( MANUALLY START CLONEDB WFL AT DR HOST ); WAIT(OK); END JOB. Configuration file used with INITIALIZE & MODIFY commands Configuration file NOT used with other commands 2012 Unisys Corporation. All rights reserved. 13

14 Remote Database Backup Automation Scripting Automated Configuration: Config File DB_NAME TESTDB CF_USERCODE DEMO PRI_HOSTNAME PRHOST PRI_CF_FAMNAME RDBPK PRI_AUDIT_FAMNAME RDBPK PRI_DUPAUDIT_FAMNAME RDBPK PRI_AUDIT_ALTFAMNAME RDBPK PRI_DUPAUDIT_ALTFAMNAME RDBPK PRI_RDBSERVER_FILE (DEMO)SYSTEM/RDBSERVER ON RDBPK PRI_ACKRATE 10 PRI_SYNC_RESTART_INTERVAL 100 PRI_DELAY_AUDIT_REMOVAL TRUE PRI_AUDITTRANSFER_MODE 1 % ABW PRI_ERROR_HANDLING 1 % DROP PRI_AFS_TRANSFER 1 %NFT PRI_AFM_COPYAUDIT TRUE PRI_FTRAPID_TITLE OBJECT/RAPID ON DISK PRI_PORTIO_TIMEOUT 60 SEC_HOSTNAME BKHOST SEC_CF_FAMNAME RDBPK SEC_AUDIT_FAMNAME RDBPK SEC_DUPAUDIT_FAMNAME RDBPK SEC_AUDIT_ALTFAMNAME RDBPK SEC_DUPAUDIT_ALTFAMNAME RDBPK SEC_RDBSERVER_FILE (DEMO)SYSTEM/RDBSERVER ON RDBPK SEC_ACKRATE 10 SEC_SYNC_RESTART_INTERVAL 100 SEC_AUDITTRANSFER_MODE 1 % ABW SEC_ERROR_HANDLING 1 % DROP SEC_AFS_TRANSFER 1 %NFT SEC_AFM_COPYAUDIT TRUE SEC_FTRAPID_TITLE OBJECT/RAPID ON DISK SEC_PORTIO_TIMEOUT Unisys Corporation. All rights reserved. 14

15 Remote Database Backup Automation Scripting Automated Configuration: Output 5:54:31 PM 2583\2583 BOJ (DEMO) SETUP/RDB 5:54:31 PM 10850\2582 EOT (DEMO) (DEMO)NXEDIT STARTER 5:54:31 PM 2583 DISPLAY:%%% INITIALIZE RDB %%%. 5:54:31 PM 2583\2584 BOT (DEMO) (DEMO)SYSTEM/RDBOPS ON RDBPK 5:54:33 PM 2584 DISPLAY: The RDB Control File Initialization is complete. You may now Enable your RDB System. 5:54:33 PM 2583\2584 EOT (DEMO) (DEMO)SYSTEM/RDBOPS ON RDBPK 5:54:38 PM 2583 DISPLAY:%%% ENABLE RDB %%%. 5:54:38 PM 2583\2587 BOT (DEMO) (DEMO)SYSTEM/RDBOPS ON RDBPK 5:54:41 PM 2590\2590 BOJ (DEMO) (DEMO)DMSUPPORT/TESTDB ON RDBPK 5:54:41 PM 2590\2591 BOT (DEMO) (DEMO)DMSUPPORT/TESTDB ON RDBPK 5:54:41 PM 2587 DISPLAY:(DEMO)TESTDB: COPYING DB CONTROL FILE AND RDB CONTROL FILE. 5:54:42 PM 2598 DSS:(DEMO)TESTDB/CONTROL COPIED FROM RDBPK AT PRHOST TO RDBCP AT BKHOST 5:54:42 PM 2583\2598 EOT (DEMO) (DEMO)NFT/TO/BKHOST 5:54:42 PM 2583\2599 BOT (DEMO) (DEMO)NFT/TO/BKHOST 5:54:42 PM 2599 DSS:(DEMO)TESTDB/RDB/CONTROL COPIED FROM RDBCP AT PRHOSTTO RDBPK AT BKHOST 5:54:42 PM 2587 DISPLAY: The database is now remote capable at the selected host. Enable Completed.. 5:54:42 PM 2583\2587 EOT (DEMO) (DEMO)SYSTEM/RDBOPS ON RDBPK 2012 Unisys Corporation. All rights reserved. 15

16 Remote Database Backup Automation Scripting Mode Change: Script BEGIN JOB SETUP/RDB; FAMILY DISK = RDBPK OTHERWISE DISK; TASK CT; DISPLAY("%%% Change RDB mode to NSC %%%"); RUN SYSTEM/RDBOPS("DB=(DEMO)TESTDB ON RDBPK MODIFY"); FILE CONFIG=(DEMO)RDB/NSCMODE ON RDBPK; DISPLAY("%%% Audit Transfer Mode Changed to NSC %%%"); WAIT(OK); END JOB. Scripting Mode Change: Config File excerpt.. PRI_AUDITTRANSFER_MODE 0 % <mode option> %<mode option> values: % NSC = 0 % ABW = 1 % AFS = 2 % SCA = 3 % AFM = Unisys Corporation. All rights reserved. 16

17 Remote Database Backup Automation Scripting Failover: Script BEGIN JOB RDB/TAKEOVER; FAMILY DISK = RDBPK OTHERWISE DISK; TASK CT; DISPLAY("%%% Perform RDB Takeover %%%"); RUN SYSTEM/RDBOPS("DB=(DEMO)TESTDB ON RDBPK TAKEOVER"); DISPLAY("%%% RDB Takeover Complete %%%"); WAIT(OK); END JOB Unisys Corporation. All rights reserved. 17

18 Remote Database Backup Automation Feature Components SYSTEM/RDBOPS Command line utility TEMPLATE/RDBOPS/CONFIG Template configuration file for INITIALIZE and MODIFY commands Documentation New Section 14 of the Remote Database Backup (RDB) Planning and Operations Guide Form # Syntax diagrams Examples Sample config file 2012 Unisys Corporation. All rights reserved. 18

19 Database Operations Center Enhancements Structure Clone Warning (NFS) IC Release Information Capture Enhanced RDB Logging Additional Diagnostics SMS Notification Schema Compare Support of new DMSII Features 2012 Unisys Corporation. All rights reserved. 19

20 Database Operations Center Enhancements Structure Clone Warning Pop-up dialog displays when a structure clone is initiated Choose OK: the task will progress further Cancel:to return to the form User therefore has option to cancel current task without moving away from the form 2012 Unisys Corporation. All rights reserved. 20

21 Database Operations Center Enhancements IC Release Information Capture Release level information now captured in server log and environment XML ENVIRONMENT.XML extract DBCenter/Server Log extract 2012 Unisys Corporation. All rights reserved. 21

22 Database Operations Center Enhancements Enhanced RDB Logging Capture additional information about DBCENTER/SERVER and RDBSUPPORT interaction Example: 05:53:15 05:53:15 ( ) 10/03/11 MX=07211 [PROCESS_RDB_CONFIG_PREFILL_REQUEST] ( ) REAL(NEW_CFILE) : 0. ( ) REAL(DELAY_REMOVAL) : 0. ( ) CF_FAMILY_PRI :. ( ) HOSTNAME_PRI :. ( ) PRIMARY_AUDPK_PRI :. ( ) DUP_AUDPK_PRI :. ( ) ALT_AUDPK_PRI :. ( ) ALT_DUP_AUDPK_PRI :. ( ) SERVER_TITLE_PRI :. (continued) 2012 Unisys Corporation. All rights reserved. 22

23 Database Operations Center Enhancements Example (continued): 05:53:39 05:53:39 ( ) 10/03/11 MX=07211 [PROCESS_RDB_CONFIGURATION_REQUEST] ( ) MsgWriter init: Len=88. ( ) REAL(NEW_CFILE) : 0. ( ) Out Subfile = 2. ( ) REAL(DELAY_REMOVAL) : 0. OutMsg OutMsg 00001> < F0A > < ( ) CF_FAMILY_PRI : USERDATA. ( ) HOSTNAME_PRI : USTRMCP0065. ( ) PRIMARY_AUDPK_PRI : USERDATA. ( ) DUP_AUDPK_PRI :. ( ) ALT_AUDPK_PRI :. ( ) ALT_DUP_AUDPK_PRI :. ( ) SERVER_TITLE_PRI : *SYSTEM/RDBSERVER ON DISK. ( ) PORTIO_TIMEOUT_PRI : 60. ( ) ACK_RATE_PRI : 10. ( ) SYNC_INTERVAL_PRI : 100. ( ) TRANSMODE_PRI : 2. ( ) MODE_OPTION_PRI : 0. ( ) FILE_XFER_OPTION_PRI : Unisys Corporation. All rights reserved. 23

24 Database Operations Center Enhancements Additional Diagnostics Additional administrative events captures in event log Displayed under Analysis Monitor Database Events and Status 2012 Unisys Corporation. All rights reserved. 24

25 Database Operations Center Enhancements SMS Notification Notify user about a scheduled task s status through SMS Receive success/failure status messages on a mobile device 2012 Unisys Corporation. All rights reserved. 25

26 Database Operations Center Enhancements Schema Compare View differences between different versions of a schema stored in the MetaStore database On the schemas tab, select the schema and right click Choose Show History 2012 Unisys Corporation. All rights reserved. 26

27 Database Operations Center Enhancements Schema Compare Select the versions to compare Right mouse click Select Compare Schemas 2012 Unisys Corporation. All rights reserved. 27

28 Database Operations Center Enhancements Schema Compare Side-by-side views of the two selected versions identify the changes, additions, and deletions 2012 Unisys Corporation. All rights reserved. 28

29 Database Operations Center Enhancements Support for New DMSII Feature NOFTLOCK option The new NOFTLOCK (No Fine Table Lock) keyword added to DMSII is incorporated into all the DASIE (DASDL Import/Export) components The new option is retained when performing DASIE round trips 2012 Unisys Corporation. All rights reserved. 29

30 Database Operations Center Enhancements Support for New DMSII Feature Persistent RSN Option accessible in Applicable Database Operations Center dialogs: Generation: Defragment Database, Generate Structures Generation: Reorganization Required by Dasdl Update, Generate Structures 2012 Unisys Corporation. All rights reserved. 30

31 Questions? 2012 Unisys Corporation. All rights reserved. 31

unisys ClearPath Enterprise Servers Remote Database Backup Planning and Operations Guide ClearPath MCP 18.0 April

unisys ClearPath Enterprise Servers Remote Database Backup Planning and Operations Guide ClearPath MCP 18.0 April unisys ClearPath Enterprise Servers Remote Database Backup Planning and Operations Guide ClearPath MCP 18.0 April 2017 8600 2052-311 NO WARRANTIES OF ANY NATURE ARE EXTENDED BY THIS DOCUMENT. Any product

More information

Databridge Twin Administrator s Guide. Version 6.5

Databridge Twin Administrator s Guide. Version 6.5 Databridge Twin Administrator s Guide Version 6.5 Legal Notices Copyright 2017 Attachmate Corporation, a Micro Focus company. All Rights Reserved. No part of the documentation materials accompanying this

More information

Administrator's Guide Databridge Plus Guide. Version 6.5

Administrator's Guide Databridge Plus Guide. Version 6.5 Administrator's Guide Databridge Plus Guide Version 6.5 Legal Notices Copyright 2017 Attachmate Corporation, a Micro Focus company. All Rights Reserved. No part of the documentation materials accompanying

More information

Getting Started. A Getting Started Guide for Locum SecureAudit MANUAL RELATIVE TO VERSION 17.0 LOCUM SOFTWARE SERVICES LIMITED

Getting Started. A Getting Started Guide for Locum SecureAudit MANUAL RELATIVE TO VERSION 17.0 LOCUM SOFTWARE SERVICES LIMITED Getting Started A Getting Started Guide for Locum SecureAudit MANUAL RELATIVE TO VERSION 17.0 LOCUM SOFTWARE SERVICES LIMITED Locum House, 84 Brown Street, Sheffield, S1 2BS, England Telephone: +44 (0)

More information

T27 express Connect 8 May 2008

T27 express Connect 8 May 2008 8 May 2008 Contents Table of Contents Configuration...1 express Connect Visual Configuration...1 Mouse Actions...1 Buttons...2 Edit Route...3 Route Name...3 Station Name...3 Select Virt. Destination...3

More information

PHP Development for ClearPath. Session 3028, Tuesday, May 15, 2012, 10:30AM Ron Neubauer, Principal Engineer, Unisys Corporation

PHP Development for ClearPath. Session 3028, Tuesday, May 15, 2012, 10:30AM Ron Neubauer, Principal Engineer, Unisys Corporation PHP Development for ClearPath Session 3028, Tuesday, May 15, 2012, 10:30AM Ron Neubauer, Principal Engineer, Unisys Corporation Topics Introduction Architecture Installation Usage Obtaining the Product

More information

Table of Contents. Backing Up Files Getting Started. Installation of Open/A. Component for the A-Series Introduction Initial Installation

Table of Contents. Backing Up Files Getting Started. Installation of Open/A. Component for the A-Series Introduction Initial Installation Table of Contents Backing Up Files Getting Started Chapter 1 Chapter 2 Chapter 3 Installation of Open/A Mainframe Component for the A-Series Introduction Initial Installation Installation of Open/A Windows

More information

See Types of Data Supported for information about the types of files that you can import into Datameer.

See Types of Data Supported for information about the types of files that you can import into Datameer. Importing Data When you import data, you import it into a connection which is a collection of data from different sources such as various types of files and databases. See Configuring a Connection to learn

More information

SnapManager 7.2 for Microsoft Exchange Server Administration Guide

SnapManager 7.2 for Microsoft Exchange Server Administration Guide SnapManager 7.2 for Microsoft Exchange Server Administration Guide June 2017 215-10626_B0 doccomments@netapp.com Table of Contents 3 Contents Product overview... 8 Backing up and verifying your databases...

More information

RETRIEVE Utility for MCP Systems

RETRIEVE Utility for MCP Systems MGS, Inc. Computer Business Solutions RETRIEVE Utility for MCP Systems Reference Manual Version 1.09 September, 2012 Rev 1 RETRIEVE Utility for MCP Systems Reference Manual Version 1.09 Copyright 2009-2012

More information

Bluewave Professional Pet Sitter Demo Guide

Bluewave Professional Pet Sitter Demo Guide Bluewave Professional Pet Sitter Demo Guide This document is in draft status. We are actively writing, editing and changing the content. Once we ve finished the content, we will have a editor review the

More information

Administrator's Guide

Administrator's Guide Created Administrator's on December 18, Guide 2014 Databridge DMSII Client Version 6.3 2015 Attachmate Corporation. All rights reserved. No part of the documentation materials accompanying this Attachmate

More information

Configuration Management & Upgrades

Configuration Management & Upgrades Configuration Management & Upgrades Course # 1150 2/12/2014 1 Overview Exporting and Backing up the configuration Configuration Files Email - Automated Cloud Automated USB Automated Console Manual Email

More information

unisys Enterprise Database Server for ClearPath MCP Transaction Processing System (TPS) Programming Guide imagine it. done. ClearPath MCP 13.

unisys Enterprise Database Server for ClearPath MCP Transaction Processing System (TPS) Programming Guide imagine it. done. ClearPath MCP 13. unisys imagine it. done. Enterprise Database Server for ClearPath MCP Transaction Processing System (TPS) Programming Guide ClearPath MCP 13.1 April 2011 8807 6138 004 NO WARRANTIES OF ANY NATURE ARE EXTENDED

More information

Errata for ClearPath MCP Release: MCP 17.0 Last Updated: April 15, 2015

Errata for ClearPath MCP Release: MCP 17.0 Last Updated: April 15, 2015 Errata for ClearPath MCP Release: MCP 17.0 Last Updated: April 15, 2015 Introduction... 2 COBOL74... 2 EXIT PERFORM Faults with $TARGET=LEVEL6... 2 COBOL85... 3 Additional Compile-Time Overhead in programs

More information

SQL Server DBA Course Content

SQL Server DBA Course Content 1 SQL Server DBA Course Content SQL Server Versions and Editions Features of SQL Server Differentiate the SQL Server and Oracle Services of SQL Server Tools of SQL server SQL Server Installation SQL server

More information

Programmer s Reference Databridge Host

Programmer s Reference Databridge Host Programmer s Reference Databridge Host Version 6.3 2015 Attachmate Corporation. All rights reserved. No part of the documentation materials accompanying this Attachmate software product may be reproduced,

More information

AimBetter Database Monitor - Version

AimBetter Database Monitor - Version Upgrade Guide v2.0.18.4 AimBetter Database Monitor - Version 2.0.18.4 AimBetter is pleased to bring you this release document with details of our new version v.2.0.18.4 Important Note: In order for the

More information

unisys Enterprise Database Server for ClearPath MCP Application Program Interfaces Programming Guide imagine it. done. ClearPath MCP 13.

unisys Enterprise Database Server for ClearPath MCP Application Program Interfaces Programming Guide imagine it. done. ClearPath MCP 13. unisys imagine it. done. Enterprise Database Server for ClearPath MCP Application Program Interfaces Programming Guide ClearPath MCP 13.1 April 2011 8600 2409 107 NO WARRANTIES OF ANY NATURE ARE EXTENDED

More information

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices. MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.7. Much of the documentation also applies to the previous 1.2 series. For notes detailing

More information

Product Guide. McAfee Performance Optimizer 2.2.0

Product Guide. McAfee Performance Optimizer 2.2.0 Product Guide McAfee Performance Optimizer 2.2.0 COPYRIGHT Copyright 2017 McAfee, LLC TRADEMARK ATTRIBUTIONS McAfee and the McAfee logo, McAfee Active Protection, epolicy Orchestrator, McAfee epo, McAfee

More information

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices. MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.7. Much of the documentation also applies to the previous 1.2 series. For notes detailing

More information

Database Administration

Database Administration Unified CCE, page 1 Historical Data, page 2 Tool, page 3 Database Sizing Estimator Tool, page 11 Administration & Data Server with Historical Data Server Setup, page 14 Database Size Monitoring, page 15

More information

Metastorm BPM Release 7.6

Metastorm BPM Release 7.6 Metastorm BPM Release 7.6 Administration Guide May 2008 Metastorm Inc. email: inquiries@metastorm.com http://www.metastorm.com Metastorm BPM Release 7.6 Copyrights and Trademarks 1996-2008 Metastorm Inc.

More information

QuickStart Training Guide: The Accounting Review Role

QuickStart Training Guide: The Accounting Review Role Accounting Review Role Final Approval of Expense Reports If you are an Accountant who is using ExpensAble Corporate to make final approval of employees expense reports, this information is for you. This

More information

DB2 UDB Monitoring with Scripts

DB2 UDB Monitoring with Scripts Platform: DB2 UDB for Linux, UNIX, and Windows DB2 UDB Monitoring with Scripts Thomas Horner Senior DBA, S1 Corporation Session: D11 May 25, 2005 at 3:30 PM This presentation will cover in detail ten shells

More information

EOM from Scratch. EOM from Scratch. What You Will Need. What Else You May Need. Presentation Topics. Installing EOM

EOM from Scratch. EOM from Scratch. What You Will Need. What Else You May Need. Presentation Topics. Installing EOM What You Will Need EOM from Scratch Paul Kimpel 2012 UNITE Conference Session MCP-4033/4049 Wednesday, 16 May 2012, 10:30 a.m. & 1:30 p.m. EOM release software on CD (9.0) Windows system to run the server

More information

DocAve Governance Automation Online

DocAve Governance Automation Online DocAve Governance Automation Online Business User Guide Service Pack 9 Cumulative Update 6 Issued December 2017 Table of Contents What s New in this Guide... 5 About DocAve Governance Automation Online...

More information

Guide: Information Mapper

Guide: Information Mapper Guide: Information Mapper Table of Contents Introduction... 2 Entities Card Editor... 2 Add entity... 2 Remove entity... 3 Link to entity... 3 Unlink from entities... 4 View in Data Workbench... 4 View

More information

How to Make Driver Information Changes in the PL Policy Change Center

How to Make Driver Information Changes in the PL Policy Change Center This document provides step-by-step procedures for editing, adding, replacing or deleting drivers. On the Drivers tab you can change delete or add drivers. To make a change, do one of the following on

More information

User Guidelines Phase 2

User Guidelines Phase 2 2.11 Existing User Perform Change Passphrase Image And Slogan Existing user login to IDSS and change passphrase image and slogan 2.11.1 Event Handling Success Case NO STEPS 1. Go to IDSS via URL https://idss.tm.com.my/

More information

Database Administration

Database Administration Unified CCE, on page 1 Historical Data, on page 2 Database Statistics, on page 3 Tool, on page 3 Database Sizing Estimator Tool, on page 11 Administration & Data Server with Historical Data Server Setup,

More information

UltraTime Enterprise WebTime User Guide

UltraTime Enterprise WebTime User Guide UltraTime Enterprise WebTime User Guide This guide will explain how to use the WebTime view of UltraTime Enterprise. Sample screens have been provided for guidance. The WebTime time entry screen is the

More information

ACCESS CONTROL SOFTWARE V3.1 REFERENCE MANUAL

ACCESS CONTROL SOFTWARE V3.1 REFERENCE MANUAL ACCESS CONTROL SOFTWARE V3.1 REFERENCE MANUAL 01/2004 Centaur is a registered trademark of Position Technology INC. Pro-Report, Tracker, FrontGuard and FrontView are trademarks of Position Technology Inc.

More information

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites Oracle Database Real Application Security Administration 12c Release 1 (12.1) E61899-04 May 2015 Oracle Database Real Application Security Administration (RASADM) lets you create Real Application Security

More information

FOR AGENCY SECURITY LIAISONS Last Updated April 16, 2013 PART A

FOR AGENCY SECURITY LIAISONS Last Updated April 16, 2013 PART A RESETTING PASSWORDS IN CORE-CT PART A In accordance with OSC Memorandum 2011 23, November 7, 2011, Comptroller's Core-CT Systems Security for State Employees, the role of resetting passwords for users

More information

Quick Reference Card for Timestamp Hourly View Employees

Quick Reference Card for Timestamp Hourly View Employees Time & Attendance Quick Reference Card for Timestamp Hourly View Employees Navigator Version 7.0 The following instructions describe a typical Navigator configuration. The names and location of widgets

More information

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices. MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.7. Much of the documentation also applies to the previous 1.2 series. For notes detailing

More information

Troubleshooting and Monitoring ARX v6.1.1

Troubleshooting and Monitoring ARX v6.1.1 Troubleshooting and Monitoring ARX v6.1.1 Table of Contents Module1: Introduction COURSE OBJECTIVES... 1 COURSE OVERVIEW... 1 PREREQUISITES... 2 COURSE AGENDA... 2 F5 PRODUCT SUITE OVERVIEW... 4 BIG-IP

More information

Database Administration

Database Administration Unified CCE, page 1 Historical Data, page 2 Database Statistics, page 3 Tool, page 3 Database Sizing Estimator Tool, page 12 Administration & Data Server with Historical Data Server Setup, page 15 Database

More information

Security Escort Central Console Software. Table of Contents. Release Notes. Security Systems

Security Escort Central Console Software. Table of Contents. Release Notes. Security Systems Release Notes Security Escort Central Console Software Table of Contents 1 Security Escort v3.0.1... 3 1.1 Enhancements... 3 1.2 Errors Fixed... 3 1.3 Known Limitations and Restrictions... 4 1.4 Important

More information

Accounts Payable Workflow Guide. Version 14.6

Accounts Payable Workflow Guide. Version 14.6 Accounts Payable Workflow Guide Version 14.6 Copyright Information Copyright 2017 Informa Software. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored

More information

Nortel Quality Monitoring. Maintenance Guide NN

Nortel Quality Monitoring. Maintenance Guide NN NN44480-504 Document status: Standard Document version: 0102 Document date: 6 November 2009 All Rights Reserved While the information in this document is believed to be accurate and reliable, except as

More information

As ESS allows for customisation of certain screens, the client will be able to extract other information from the ESS system too.

As ESS allows for customisation of certain screens, the client will be able to extract other information from the ESS system too. Reporting on ESS Three different reports can be run from ESS Leave Balance Report Leave Transactions Report Manager Leave Calendar As ESS allows for customisation of certain screens, the client will be

More information

ATTENDANCE MANAGEMENT SYSTEM WEB (AMS)

ATTENDANCE MANAGEMENT SYSTEM WEB (AMS) ATTENDANCE MANAGEMENT SYSTEM WEB (AMS) HOW TO LOG AN ABSENCE SUPPORT STAFF This document will show you how to enter an absence through AMS. each page and explain how to enter the required information.

More information

How to update OS image from V1421 to V1501 by Exe file

How to update OS image from V1421 to V1501 by Exe file Author Sean Hsu Version 1.0.0 Date 2010/4/20 Page 1/13 How to update OS image from V1421 to V1501 by Exe file Applies to: Platform OS version WinPAC/ViewPAC utility version WP-8x3x N/A N/A WP-8x4x All

More information

Anti-pass Back. Quick Reference Guide. Training Services

Anti-pass Back. Quick Reference Guide. Training Services Anti-pass Back Quick Reference Guide 1 Several major configuration steps need to be taken to implement anti-pass back There are three types of anti-pass back applications and each one is configured differently

More information

[SQL MAINTENANCE PLAN] Create a maintenance plan to do integrity check, back up, shrink and clean old file created by the plan on database.

[SQL MAINTENANCE PLAN] Create a maintenance plan to do integrity check, back up, shrink and clean old file created by the plan on database. [SQL MAINTENANCE PLAN] Create a maintenance plan to do integrity check, back up, shrink and clean old file created by the plan on database. Maintenance Plan 1. Open Microsoft SQL Management Studio to find

More information

for Q-CHECKER Text version 15-Feb-16 4:49 PM

for Q-CHECKER Text version 15-Feb-16 4:49 PM Q-MONITOR 5.4.X FOR V5 for Q-CHECKER USERS GUIDE Text version 15-Feb-16 4:49 PM Orientation Symbols used in the manual For better orientation in the manual the following symbols are used: Warning symbol

More information

Genesys Info Mart Manager Help. Genesys Info Mart 8.5.0

Genesys Info Mart Manager Help. Genesys Info Mart 8.5.0 Genesys Info Mart Manager Help Genesys Info Mart 8.5.0 3/2/2018 Table of Contents GIM Manager Help 3 GIM Manager Help The Genesys Info Mart Manager (GIM Manager) provides an interface that you can use

More information

ServiceWise/CustomerWise 10.1

ServiceWise/CustomerWise 10.1 Page 1 of 35 ServiceWise/CustomerWise 10.1 Highlights Widescreen and multi monitor support Unified incident level attachments New HTML5 ProjectPlan with resource management Doubled number of available

More information

Real Application Security Administration

Real Application Security Administration Oracle Database Real Application Security Administration Console (RASADM) User s Guide 12c Release 2 (12.2) E85615-01 June 2017 Real Application Security Administration Oracle Database Real Application

More information

Introduction. How Does it Work with Autodesk Vault? What is Microsoft Data Protection Manager (DPM)? autodesk vault

Introduction. How Does it Work with Autodesk Vault? What is Microsoft Data Protection Manager (DPM)? autodesk vault Introduction What is Microsoft Data Protection Manager (DPM)? The Microsoft Data Protection Manager is a member of the Microsoft System Center family of management products. DPM provides continuous data

More information

Gateway File Provider Setup Guide

Gateway File Provider Setup Guide Gateway File Provider Setup Guide Version 18 August 2018 Contents Overview... 9 Setting Up the Integration Environment... 11 Managing Personally Identifiable Information... 11 Setting Up the Integration

More information

Function names can be specified with winidea syntax for qualified names, if multiple download files and file static functions are tested.

Function names can be specified with winidea syntax for qualified names, if multiple download files and file static functions are tested. _ RELEASE NOTES testidea 9.12.x 9.12.14 (28.3.2012) Qualified function names Function names can be specified with winidea syntax for qualified names, if multiple download files and file static functions

More information

Monitoring Agent for SAP Applications Fix pack 11. Reference IBM

Monitoring Agent for SAP Applications Fix pack 11. Reference IBM Monitoring Agent for SAP Applications 7.1.1 Fix pack 11 Reference IBM Monitoring Agent for SAP Applications 7.1.1 Fix pack 11 Reference IBM Note Before using this information and the product it supports,

More information

Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10

Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10 Cloud Service Administrator's Guide 15 R2 March 2016 Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10 Configuring Settings for Microsoft Internet Explorer...

More information

Mobile MOUSe SQL SERVER 2005 OPTIMIZING AND MAINTAINING DATABASE SOLUTIONS ONLINE COURSE OUTLINE

Mobile MOUSe SQL SERVER 2005 OPTIMIZING AND MAINTAINING DATABASE SOLUTIONS ONLINE COURSE OUTLINE Mobile MOUSe SQL SERVER 2005 OPTIMIZING AND MAINTAINING DATABASE SOLUTIONS ONLINE COURSE OUTLINE COURSE TITLE SQL SERVER 2005 OPTIMIZING AND MAINTAINING DATABASE SOLUTIONS COURSE DURATION 12 Hour(s) of

More information

Understanding Complete Compare Differences After Converting Your Models

Understanding Complete Compare Differences After Converting Your Models Introduction After converting your v. 4.1.4 diagrams to Release 7 you may want to validate them using Complete Compare. During the comparison, differences may arise, and those differences are usually the

More information

SURVEYOR/400. Users Guide. Copyright , LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc.

SURVEYOR/400. Users Guide. Copyright , LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. SURVEYOR/400 Users Guide Copyright 1996-2013, LINOMA SOFTWARE LINOMA SOFTWARE is a division of LINOMA GROUP, Inc. Surveyor/400 version: 4.0.0 Publication date: August 7 th, 2013 Table of Contents SURVEYOR/400

More information

Lesson 3 Transcript: Part 2 of 2 Tools & Scripting

Lesson 3 Transcript: Part 2 of 2 Tools & Scripting Lesson 3 Transcript: Part 2 of 2 Tools & Scripting Slide 1: Cover Welcome to lesson 3 of the DB2 on Campus Lecture Series. Today we are going to talk about tools and scripting. And this is part 2 of 2

More information

Joseph Morales Documentation Sample

Joseph Morales Documentation Sample Joseph Morales Documentation Sample Following are sample pages from a programming language guide called WFL Made Simple. It was written as a supplement to a more formal and complete reference manual. At

More information

Enterprise Architect. User Guide Series. Model Wizard

Enterprise Architect. User Guide Series. Model Wizard Enterprise Architect User Guide Series Model Wizard How to create a model quickly? In Sparx Systems Enterprise Architect, the Model Wizard provides Patterns from a wide range of technologies, to help you

More information

CLIQ Web Manager. User Manual. The global leader in door opening solutions V 6.1

CLIQ Web Manager. User Manual. The global leader in door opening solutions V 6.1 CLIQ Web Manager User Manual V 6.1 The global leader in door opening solutions Program version: 6.1 Document number: ST-003478 Date published: 2016-03-31 Language: en-gb Table of contents 1 Overview...9

More information

MarkLogic Server. Information Studio Developer s Guide. MarkLogic 8 February, Copyright 2015 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Information Studio Developer s Guide. MarkLogic 8 February, Copyright 2015 MarkLogic Corporation. All rights reserved. Information Studio Developer s Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Information

More information

Arc Pro. Wallboard. User Guide. Version 6.1.0

Arc Pro. Wallboard. User Guide. Version 6.1.0 Arc Pro Wallboard User Guide Version 6.1.0 2003-2014 Arc Solutions (International) Ltd. All rights reserved. No part of this documentation may be reproduced in any form or by any means or used to make

More information

SQL Server DBA Course Details

SQL Server DBA Course Details SQL Server DBA Course Details By Besant Technologies Course Name Category Venue SQL Server DBA Database Administration Besant Technologies No.24, Nagendra Nagar, Velachery Main Road, Address Velachery,

More information

DocAve 6 Administrator

DocAve 6 Administrator DocAve 6 Administrator User Guide Service Pack 4, Cumulative Update 3 Revision P Issued September 2014 Table of Contents About DocAve Administrator for SharePoint... 7 Complementary Products... 7 Submitting

More information

root.smart Power NET Bandwidth Usage CPU Usage

root.smart Power NET Bandwidth Usage CPU Usage root.smart Power NET Bandwidth Usage CPU Usage Free Space on Disks Patch Status RAM Usage Pagefile Usage Backup Status Script Time eventtime Script Name Status smartmelb_smart-dc01 4/15/2010 7:03:32

More information

ITEC447 Web Projects CHAPTER 9 FORMS 1

ITEC447 Web Projects CHAPTER 9 FORMS 1 ITEC447 Web Projects CHAPTER 9 FORMS 1 Getting Interactive with Forms The last few years have seen the emergence of the interactive web or Web 2.0, as people like to call it. The interactive web is an

More information

Manual Trigger Sql Server 2008 Insert Update Delete Select

Manual Trigger Sql Server 2008 Insert Update Delete Select Manual Trigger Sql Server 2008 Insert Update Delete Select Since logon triggers are server-scoped objects, we will create any necessary additional objects in master. WHERE dbs IN (SELECT authenticating_database_id

More information

Security Escort Central Console Software. Table of Contents. Release Notes. Security Systems

Security Escort Central Console Software. Table of Contents. Release Notes. Security Systems Release Notes Security Escort Central Console Software Table of Contents 1 Security Escort v3.0.1... 2 1.1 Enhancements... 2 1.2 Errors Fixed... 2 1.3 Known Limitations and Restrictions... 3 1.4 Important

More information

Copyright Tools4ever B.V. All rights reserved.

Copyright Tools4ever B.V. All rights reserved. Copyright Tools4ever B.V. All rights reserved. No part of the contents of this user guide may be reproduced or transmitted in any form or by any means without the written permission of Tools4ever. DISCLAIMER

More information

Getting Started Manual. SmartList To Go

Getting Started Manual. SmartList To Go Getting Started Manual SmartList To Go Table of contents Installing SmartList To Go 3 Launching SmartList To Go on the handheld 4 SmartList To Go toolbar 4 Creating a SmartList 5 The Field Editor Screen

More information

Table of Contents [ClusterReplica SQL v2.1 User Manual]

Table of Contents [ClusterReplica SQL v2.1 User Manual] i Table of Contents [ClusterReplica SQL v2.1 User Manual] CHAPTER 1...1 Introduction... 1 1.1 What is ClusterReplica MSSQL Edition...1 1.2 Who is ClusterReplica MSSQL Edition Designed For...1 1.3 How Does

More information

DiskBoss DATA MANAGEMENT

DiskBoss DATA MANAGEMENT DiskBoss DATA MANAGEMENT Disk Change Monitor Version 9.3 May 2018 www.diskboss.com info@flexense.com 1 1 Product Overview DiskBoss is an automated, policy-based data management solution allowing one to

More information

WEB TIME SUPERVISOR GUIDE

WEB TIME SUPERVISOR GUIDE Revised 02/23/2018 WEB TIME SUPERVISOR GUIDE CLIENT RESOURCE PAYLOCITY.COM TABLE OF CONTENTS Web Time... 3 Home... 15 Employees... 28 Reports... 130 Web Kiosk Setup... 132 Glossary... 156 Index... 158

More information

The People in Dairy Generator

The People in Dairy Generator The People in Dairy Generator Quick reference guide The People in Dairy Generator is a package which includes The People in Dairy Installer.dot, a Microsoft Word template which runs a program to assist

More information

AdminiTrack. User s Guide. Updated February 26, 2019

AdminiTrack. User s Guide. Updated February 26, 2019 AdminiTrack User s Guide Updated February 26, 2019 Table of Contents Welcome... 5 Getting Started Topics... 6 Getting Started for Administrators... 7 Getting Started for New Users... 7 I did not receive

More information

ATTENDANCE MANAGEMENT SYSTEM WEB (AMS)

ATTENDANCE MANAGEMENT SYSTEM WEB (AMS) ATTENDANCE MANAGEMENT SYSTEM WEB (AMS) HOW TO LOG AN ABSENCE - TEACHERS This document will show you how to enter an absence through AMS. each page and explain how to enter the required information. We

More information

Module Overview. Instructor Notes (PPT Text)

Module Overview. Instructor Notes (PPT Text) Module 06 - Debugging and Troubleshooting SSIS Packages Page 1 Module Overview 12:55 AM Instructor Notes (PPT Text) As you develop more complex SQL Server Integration Services (SSIS) packages, it is important

More information

Mandarin Oasis TM Library Automation System

Mandarin Oasis TM Library Automation System Mandarin Oasis TM Library Automation System Daily Use Handbook This handbook explains routine library tasks using Mandarin Oasis. It is designed to supplement Oasis training by providing simple, step-by-step

More information

Logi Ad Hoc Reporting Management Console Usage Guide

Logi Ad Hoc Reporting Management Console Usage Guide Logi Ad Hoc Reporting Management Console Usage Guide Version 12.1 July 2016 Page 2 Contents Introduction... 5 Target Audience... 5 System Requirements... 6 Components... 6 Supported Reporting Databases...

More information

Micro Focus Databridge 6.5 includes new features, enhancements, and bug fixes.

Micro Focus Databridge 6.5 includes new features, enhancements, and bug fixes. Databridge 6.5 Release Notes June 2017 Micro Focus Databridge 6.5 includes new features, enhancements, and bug fixes. Many of these improvements were made in direct response to suggestions from our customers.

More information

TapeManager Operations Guide for Unisys MCP Systems

TapeManager Operations Guide for Unisys MCP Systems TapeManager Operations Guide for Unisys MCP Systems Release 9.069V October 2016 Copyright This document is protected by Federal Copyright Law. It may not be reproduced, transcribed, copied, or duplicated

More information

MultiSite Manager. User Guide

MultiSite Manager. User Guide MultiSite Manager User Guide Contents 1. Getting Started... 2 Opening the MultiSite Manager... 2 Navigating MultiSite Manager... 2 2. The All Sites tab... 3 All Sites... 3 Reports... 4 Licenses... 5 3.

More information

MANUAL. Digital signing of documents in MS Office

MANUAL. Digital signing of documents in MS Office MANUAL Digital signing of documents in MS Office Version: 4.0 Date: 29.01.2018 103.16 KIBS AD Skopje 2018 KIBS AD Skopje, all rights reserved http://www.kibstrust.mk Table of contents 1. Introduction 2

More information

User Manual. ARK for SharePoint-2007

User Manual. ARK for SharePoint-2007 User Manual ARK for SharePoint-2007 Table of Contents 1 About ARKSP (Admin Report Kit for SharePoint) 1 1.1 About ARKSP 1 1.2 Who can use ARKSP? 1 1.3 System Requirements 2 1.4 How to activate the software?

More information

PowerCenter Repository Maintenance

PowerCenter Repository Maintenance PowerCenter Repository Maintenance 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise) without

More information

Relational Population Service (RPS)

Relational Population Service (RPS) Relational Population Service (RPS) Jade Software Corporation Limited cannot accept any financial or other responsibilities that may be the result of your use of this information or software material,

More information

Configuring NTP. Information About NTP NTP. This chapter describes how to configure the Network Time Protocol (NTP) on Cisco MDS 9000 Series switches.

Configuring NTP. Information About NTP NTP. This chapter describes how to configure the Network Time Protocol (NTP) on Cisco MDS 9000 Series switches. This chapter describes how to configure the Network Time Protocol (NTP) on Cisco MDS 9000 Series switches. Information About NTP Information About NTP, on page 1 Prerequisites for NTP, on page 2 Guidelines

More information

Interactive Voice Response (IVR) Extension Type Guide

Interactive Voice Response (IVR) Extension Type Guide 4PSA VoipNow 2.0.3 Interactive Voice Response (IVR) Extension Type Guide For more information about 4PSA VoipNow, check: http://www.voipnow.com Copyrights 2002-2009 Rack-Soft, LLC. VoipNow is a registered

More information

ACTIVANT. Prophet 21 ACTIVANT PROPHET 21. New Features Guide Version 11.0 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) Pre-Release Documentation

ACTIVANT. Prophet 21 ACTIVANT PROPHET 21. New Features Guide Version 11.0 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) Pre-Release Documentation I ACTIVANT ACTIVANT PROPHET 21 Prophet 21 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) New Features Guide Version 11.0 Version 11.5 Pre-Release Documentation This manual contains reference information

More information

NETWRIX PASSWORD EXPIRATION NOTIFIER

NETWRIX PASSWORD EXPIRATION NOTIFIER NETWRIX PASSWORD EXPIRATION NOTIFIER ADMINISTRATOR S GUIDE Product Version: 3.3 January 2013 Legal Notice The information in this publication is furnished for information use only, and does not constitute

More information

Document Management. Updated as of 4/14/2016

Document Management. Updated as of 4/14/2016 Document Management Updated as of 4/14/2016 Document Management Table of Contents Table of Contents 1. Document Management Overview 2. Creating a Document Item 3. Editing Document Item Attributes 4. Subjecting

More information

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing

Managing Your Website with Convert Community. My MU Health and My MU Health Nursing Managing Your Website with Convert Community My MU Health and My MU Health Nursing Managing Your Website with Convert Community LOGGING IN... 4 LOG IN TO CONVERT COMMUNITY... 4 LOG OFF CORRECTLY... 4 GETTING

More information

Clock Comms User guide

Clock Comms User guide Clock Comms User guide Table of Contents Clock Comms...4 Getting Started... 5 Installing... 6 Setup - Welcome... 8 Setup - License Agreement... 9 Setup - Select Destination Location... 11 Setup - Start

More information

Chapter 10: File-System Interface

Chapter 10: File-System Interface Chapter 10: File-System Interface Objectives: To explain the function of file systems To describe the interfaces to file systems To discuss file-system design tradeoffs, including access methods, file

More information

ArcGIS Enterprise: Advanced Topics in Administration. Thomas Edghill & Moginraj Mohandas

ArcGIS Enterprise: Advanced Topics in Administration. Thomas Edghill & Moginraj Mohandas ArcGIS Enterprise: Advanced Topics in Administration Thomas Edghill & Moginraj Mohandas Outline Overview: Base ArcGIS Enterprise Deployment - Key Components - Administrator Endpoints Advanced Workflows:

More information

ipac Access Controller

ipac Access Controller STANLEY MANUFACTURED ACCESS CONTROL ipac Access Controller QUICK START GUIDE QUICK USER GUIDE Contents Standalone Interface...3 ipac at a Glance...3 Button and Functions...4 Screen Display...4 Information

More information