Nimsoft Documentation

Size: px
Start display at page:

Download "Nimsoft Documentation"

Transcription

1 Nimsoft Documentation Nimsoft Probes Technical Description cmdbgtw 1.00 Probe Documentation Last Update: 30 September 2010 Copyright , Nimsoft Corporation Nimsoft Documentation: cmdbgtw v1.00 1

2 Contents cmdbgtw... 3 Prerequisites... 3 Probe Installation... 3 Configuration GUI Installation... 4 Understanding and Configuring Probe Operation... 5 Creating and Configuring Database Connection Objects... 5 Database Connection Setup Information... 6 Creating and Configuring Exports... 7 Configuring Export Options... 8 Configuring Export Data Mapping... 9 Mapping Notes Testing and Running Exports Test Run Tree Context (right-click) Menu Configuring Logging Appendix A: Using an alternate JDBC driver Appendix B: Advanced Data Mapping Customization Specifying Entity Filters Specifying Property Formulas Changing the Base Mapping Custom Example 1: Custom table Implementing Custom Property Types Appendix C: Nimsoft Callback Interface Nimsoft Documentation: cmdbgtw v1.00 2

3 cmdbgtw This description applies to cmdbgtw version 1.00 The cmdbgtw probe provides fast and convenient access to data residing in a Nimsoft SLM database. The cmdbgtw probe is capable of exporting data from any table or set of tables. Data can be exported in either XML or CSV interchange formats. Exported data is written to files in a user-chosen location. Prerequisites The cmdbgtw probe requires Java or later. The cmdbgtw probe configuration GUI requires Java or later. Probe Installation The cmdbgtw probe installs via drag-and-drop from the Nimsoft Infrastructure Manager. The probe is run by the robot via the standard runprobe.bat on Windows and runprobe.sh on UNIX. Java 1.6.0_14 or later can be installed either using the standard Java installer available from Sun ( or by dragging the jre/java_jre package from your Nimsoft package archive onto your robot. Please see the java_jre documentation from Nimsoft for details. If you install using Sun's installer, please ensure that java.exe is available on your path environment variable. The probe is launched by the Nimsoft robot and thus inherits its process environment. To examine your robot's environment, launch the Infrastructure Manager, right-click on your robot and choose Properties. Then, click the Robot environment button and you will see: Nimsoft Documentation: cmdbgtw v1.00 3

4 If you need to manually modify your robot's environment you must restart your computer to make the changes visible to your robot. Configuration GUI Installation The cmdbgtw probe configuration GUI is automatically downloaded and installed by the Nimsoft Infrastructure Manager when probe configuration is attempted. The configuration GUI has the same Java requirements as the probe and supports the same Java installation methods on the computer running the Infrastructure Manager. Note: If you choose the java_jre installation method, the configuration GUI may fail to startup if more than one java_jre package is installed and one or more of the java_jre packages is for a version of Java that is earlier than 1.6.0_14. In this situation you must remove obsolete java_jre packages before attempting to launch the configuration GUI. Nimsoft Documentation: cmdbgtw v1.00 4

5 Understanding and Configuring Probe Operation There are two primary aspects to configuring the DB Gatway probe. One must first define one of more Database Connection objects for the databases one wishes to export data from. Once databases are defined, one or more Export objects can be created. Each export defines the type of data to export, the database to export from, data filters and transformations and the output format. The following sections will detail the configuration process. Creating and Configuring Database Connection Objects The first step to configure the cmdbgtw probe is to create one or more database connection objects using the configuration user interface. You may either edit the provided My Database connection or create a new connection by right-clicking on any node in the tree and choosing New Database Connection: The new connection appears in the tree. Select the node with the database name and you will see the database configuration information on the right: Nimsoft Documentation: cmdbgtw v1.00 5

6 Database Connection Setup Information Please enter the following information to configure your database connection: Field Name User Password Driver Class SQL Dialect Connection URL Description Enter a name for the connection. Database login user name Database password. The Java JDBC driver class to use. Select a class from the supported drop-down list. Note: The probe ships with JDBC drivers for Oracle, MySQL and Microsoft SQL Server. It is possible to run the probe using a driver that is not shipped with the probe. Please see the appendixes for advanced configuration. Select a dialect that matches the vendor/version of your database. Once you choose a dialect, the URL Format field will be populated with a sample JDBC connection URL. Enter the JDBC connection URL. You may test the information you have entered by clicking the Test Connection button. The probe must be running for this feature to work. You will be notified if your connection information is valid. The Use For All Exports button associates the current database connection will all defined exports. This is handy for when your database moves. Nimsoft Documentation: cmdbgtw v1.00 6

7 Creating and Configuring Exports An export is specification for exporting data from a database. It includes the type of data to export, the database to export from and the output directory and format for the exported data. To create an export, right-click on the tree and choose New Export... You will see the following dialog: Enter/choose values for: Field Export Name Root Entity Description Enter a unique descriptive Export Name. Select the type of data to export. Note: The dbcmdbgtw probe ships with support for some of the Nimsoft SLM database schema. It is possible to add support for missing entity types. Please see the appendixes for advanced configuration options. Database Select a database connection. Nimsoft Documentation: cmdbgtw v1.00 7

8 Configuring Export Options Highlight the new export in the tree and you will see the full export configuration on the right: The Setup section contains the following configuration options: Field Name Root Entity Output Directory Database XSLT Transform Output Format Description Enter a descriptive name. The data type to export. Note that you cannot change the root entity of an existing export. Please create a new export if you wish to use a new root entity. Enter a path, absolute or relative to the probe's installation directory, that specifies where the probe should deposit exported data when an export is run. More on filenames later. Select the database connection to use The path, absolute or relative to the probe's installation directory, that specifies an XSLT transform to run on the exported data. This is an optional feature that works only when the output format is set to XML. Note that the transform is applied after all root entries have been extracted from the database and thus the XML includes the root entity parent element <items> Select XML or CSV (Comma Separated Values). Note that with CSV, only root entities are included in the output as CSV is not capable of structured output of relationships. Nimsoft Documentation: cmdbgtw v1.00 8

9 Configuring Export Data Mapping Below in the Setup section you will find the Mapping section. This section allows you to fine tune the data to export. The entity tree is on the left. It is rooted at your chosen root entity type. It then shows all of the related entity types as sub-nodes in the tree. When you select an entity in the tree you will see the right hand side populate with information/options for that entity type: Field Include Type XML Parent Description If you are not interested in related entities, use this checkbox to turn off export inclusion. You must include the root entity by definition. Note that the tree displays excluded entity types with a red dot icon and grayed-out text. The read-only XML element of the parent node of this entity type. For example, for the CmDevice type the parent will be devices resulting in XML like: <devices> <device>...</device> <device>...</device... </devices> Note that the root entity type always has a parent XML element named <items> XML Name Filter The read-only XML element name for entities of this type. A query where clause expressed in the Hibernate Query Language. Please see the Appendixes for advanced configuration options. Nimsoft Documentation: cmdbgtw v1.00 9

10 Field Properties Description A table showing the properties (aka database columns) that comprise the entity type: Name Enter the property name Column XML Name Enter the database column name. Enter the name of the XML element that will hold this property value. If name starts with the '@' character, the property will be emitted as an XML attribute of the entity s XML Name. Example: CmComputerSystem has property named csid with XML Name of '@id' It also has a property named cstype with XML Name of 'cstype'. The resulting XML is: <computer id="[the id]"> <cstype>[the type]</cstype>... </computer> Formula A valid Hibernate column formula expression. Formulas are used to transform data at export time. Please see the Appendixes for advanced configuration options. To edit the formula, double-click the property row. Mapping Notes All datetime columns in the shipped.hbm.xml files are mapped using a custom type called com.nimsoft.db.mytimestamptype. This causes all dates to be emitted in W3C date/time format as detailed in Please see the appendices for information on implementing your own custom data types. Testing and Running Exports Select an export in the tree and you will see both a Test and a Run button on the right hand display. Test and Run are similar operations in that they both take the current export configuration, submit it to the probe and have the probe perform the export. The difference is in the output. Nimsoft Documentation: cmdbgtw v

11 Test In test mode, the probe will perform the export but will only return the first entity from the database. The configuration GUI displays the test result in the bottom half of the right hand side: Run In run mode, the probe also performs the export but instead of returning the partial results the GUI, it writes the complete export results to a file in the export's configured Output Directory. The file name will be generated according to the following pattern: [export name]_[export date].xml The export date will be expressed in W3C date/time format as detailed in Nimsoft Documentation: cmdbgtw v

12 Tree Context (right-click) Menu A context sensitive popup-menu is available by right-clicking on a tree node: Field New Export Delete Export New Database Connection Delete Database Connection Description Create a new export for monitoring. Delete the selected export. Create a new database connection Delete the selected database connection Configuring Logging The cmdbgtw probe can be configured to log messages during its operation. To configure logging, click the Options button on the top toolbar to display the Probe Options dialog: Log Level Nimsoft recommends that when you first use the probe or are actively troubleshooting a problem that you set the log level to Debug. Once you are confident the probe is functioning properly, change the logging to Normal Operations to save disk space. The Errors/Warnings Only level is intended for rare situations when disk space is at a premium. Max Log Size(MB) The maximum size of a single log file in megabytes. Max Logfiles When a log file reaches the Max Log Size, the probe rolls the old log into a saved file, empties the primary log file, and continues logging. Max Logfiles defines how many saved files are preserved. Nimsoft Documentation: cmdbgtw v

13 Appendix A: Using an alternate JDBC driver If you would like to use a JDBC driver that is not shipped with the cmdbgtw probe, please following these steps. 1. Deactivate the probe using the Infrastructure Manager. 2. Edit the cmdbgtw's runprobe.bat (or runprobe.sh file on LINUX). Add your jdbc driver jar(s) to the CLASSPATH environment variable. 3. Activate the probe. 4. In the probe configuration GUI, type the fully qualified class name of your driver class in an database connection's Driver Class.Use property. Appendix B: Advanced Data Mapping Customization The cmdbgtw probe uses the Hibernate (see open source relational data mapping framework to do much of the heavy lifting. This section assumes a familiarity with Hibernate. The probe installation directory contains a subdirectory named mappings. In mappings you will find a subdirectory called base. Base contains hibernate mapping files for all entity types that the cmdbgtw probe knows about. Note that version 1.00 includes a small subset of the entire Nimsoft SLM database schema. An export is simply the base mapping plus any user configured customizations. Customizations that one can perform using the configuration GUI include excluding related entity types, filtering collections of entities and specifying transform formulas for individual columns. At export run-time, the probe takes the base.hbm.xml files and the customizations and generates export-specific.hbm.xml files in mappings/[mapping-name]. Export-specific.hbm.xml files are only generated when they are out of date relative to the customization time. mappings/[mapping-name]/custom.xml contains the current set of customization along with a version number. If that version number is out of sync with the contents of mappings/[mapping-name]/.version, the.hbm.xml files need to be re-generated. Specifying Entity Filters An entity filter is created by selecting an entity in the mapping tree and typing a Hibernate query language where clause expression in the filter box. Note that you must use database column names in your expression. For example, if your root entity type is CmComputerSystems but you only want to export computer systems on a specific subnet, you would enter a filter like: ip like ' %' The Hibernate reference documentation contains a complete specification of the Hibernate query language. Nimsoft Documentation: cmdbgtw v

14 Specifying Property Formulas Property formulas are applied to individual column values at export time in order to transform the data in the database to a more palatable form. For example, the CmComputerSystem.csType property encodes the type of computer system with a single letter. If you would like to transform that single letter into something human-readable you would use a formula like: case when cs_type = 'A' then 'AType' when cs_type = 'B' then 'BType' else cs_type end Changing the Base Mapping There are customization scenarios that are not currently supported by the probe configuration GUI. Changing the base mapping is accomplished by modifying the.hbm.xml files in mappings/base or by adding new.hbm.xml files to that directory. You must re-start the probe and the configuration GUI after making changes to the base mapping. Here is a custom mapping example: Custom Example 1: Custom table You have a custom table added to your Nimsoft SLM database schema called COMPUTER_ANOMALY that has a foreign key relationship with the CM_COMPUTER_SYSTEM table and would like to export this custom data. Solution: Create a hibernate.hbm.xml file for your custom table and modify the CmComputerSystem.hbm.xml file to have a relationship to this table. MyComputerExtra.hbm.xml: <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "- //Hibernate/Hibernate Mapping DTD 3.0//EN" " <!-- Generated Aug 26, :58:25 AM by Hibernate Tools GA --> <hibernate-mapping> <!-- note how we use entity-name and not classname --> <class entity-name="computeranomaly" node="anomaly" table="computeranomaly"> <id name="id" type="int"> </id> <column name="id" /> Nimsoft Documentation: cmdbgtw v

15 <property name="date" type="com.nimsoft.db.mytimestamptype"> /> </class> <column name="date" length="23" /> </property> <property name="description" type="string"> <column name="description" length="128" </property> </hibernate-mapping> Modifications to CmComputerSystem.hbm.xml: Add relationships: <set name="anomalies" node="anomalies" table="computeranomalies" inverse="true" lazy="true" fetch="select"> </set> <key> </key> <column name="computer_id" /> <one-to-many class="computeranomaly" /> Your exported xml will then have the form: <computers> <computer>... <anomalies> <anomaly id="theid"> <date>thedate</date> <description>thedescription</description> </anomaly> <anomalies> </computer> </computers> Nimsoft Documentation: cmdbgtw v

16 Implementing Custom Property Types Hibernate <property> attributes have a type that determines how hibernate maps the database data to xml data. It is possible to implement your own custom types to affect how data is output. The cmdbgtw probes uses this facility to ensure that all dates are output in W3C date/time format. For example, the create_time column in CmComputerSystem is mapped: <property name="createtime" type="com.nimsoft.db.mytimestamptype"> <column name="create_time" length="23" notnull="true" /> </property> MyTimestampType is a custom class that implements org.hibernate.usertype.usertype. It tells Hibernate to, instead of mapping datetime columns to java.sql.timestamp objects to map them to com.nimsoft.db.mytimestamp objects. MyTimestamp then overrides tostring() to return a properly formatted date/time. Example code is available upon request. Custom Mapping Notes Always use the entity-name property on a <class> and not a classname You may map a table more than once as long as you use a unique entity-name For example, you may have an entity-name=computer mapping that includes all properties and one with entityname=computerchanges that just includes the id and change_time. Nimsoft Documentation: cmdbgtw v

17 Appendix C: Nimsoft Callback Interface The cmdbgtw probe includes a custom callback called runexport. Other Nimbus participants can send this message to the cmdbgtw probe to cause it to run the named export. Callback Name: runexport Parameters: Name exportname entitycountlimit Value The text name of the export you assigned when creating the export in the GUI 0 = unlimited, any other positive integer to limit the number of entities returned. Result: Name msg outfile nentitiesgenerated Value on success, will display "ok"; on failure, will display the error message text The path to the exported data file The number of root entities generated. -DOCUMENT END- Nimsoft Documentation: cmdbgtw v

Nimsoft Unified Monitoring Portal

Nimsoft Unified Monitoring Portal Nimsoft Unified Monitoring Portal Service Desk Integration Guide 2.1.1 Legal Notices Copyright 2011, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject

More information

Database Explorer Quickstart

Database Explorer Quickstart Database Explorer Quickstart Last Revision: Outline 1. Preface 2. Requirements 3. Introduction 4. Creating a Database Connection 1. Configuring a JDBC Driver 2. Creating a Connection Profile 3. Opening

More information

Nimsoft Monitor. websphere Guide. v1.5 series

Nimsoft Monitor. websphere Guide. v1.5 series Nimsoft Monitor websphere Guide v1.5 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Orgnazition of This Part

Orgnazition of This Part Orgnazition of This Part Table of Contents Tutorial: Organization of This Part...1 Lesson 1: Starting JReport Enterprise Server and Viewing Reports...3 Introduction...3 Installing JReport Enterprise Server...3

More information

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8

Table of Contents DATA MANAGEMENT TOOLS 4. IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Data Management Tools 1 Table of Contents DATA MANAGEMENT TOOLS 4 IMPORT WIZARD 6 Setting Import File Format (Step 1) 7 Setting Source File Name (Step 2) 8 Importing ODBC Data (Step 2) 10 Importing MSSQL

More information

Style Report Enterprise Edition

Style Report Enterprise Edition INTRODUCTION Style Report Enterprise Edition Welcome to Style Report Enterprise Edition! Style Report is a report design and interactive analysis package that allows you to explore, analyze, monitor, report,

More information

Persistence Designer User s Guide. Version 3.4

Persistence Designer User s Guide. Version 3.4 Persistence Designer User s Guide Version 3.4 PERSISTENCE DESIGNER... 4 ADDING PERSISTENCE SUPPORT... 5 PERSIST AS COLUMNS OF A TABLE... 6 PERSIST ENTIRE MESSAGE AS XML... 7 DATABASE TABLE DESIGN... 8

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

XMLInput Application Guide

XMLInput Application Guide XMLInput Application Guide Version 1.6 August 23, 2002 (573) 308-3525 Mid-Continent Mapping Center 1400 Independence Drive Rolla, MO 65401 Richard E. Brown (reb@usgs.gov) Table of Contents OVERVIEW...

More information

Talend Open Studio for Data Quality. User Guide 5.5.2

Talend Open Studio for Data Quality. User Guide 5.5.2 Talend Open Studio for Data Quality User Guide 5.5.2 Talend Open Studio for Data Quality Adapted for v5.5. Supersedes previous releases. Publication date: January 29, 2015 Copyleft This documentation is

More information

1 INTRODUCTION TO EASIK 2 TABLE OF CONTENTS

1 INTRODUCTION TO EASIK 2 TABLE OF CONTENTS 1 INTRODUCTION TO EASIK EASIK is a Java based development tool for database schemas based on EA sketches. EASIK allows graphical modeling of EA sketches and views. Sketches and their views can be converted

More information

Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service

Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service Demo Introduction Keywords: Oracle Big Data Cloud Service, Oracle Storage Cloud Service, Oracle Database Cloud Service Goal of Demo: Oracle Big Data Preparation Cloud Services can ingest data from various

More information

Step By Step Guideline for Building & Running HelloWorld Hibernate Application

Step By Step Guideline for Building & Running HelloWorld Hibernate Application Step By Step Guideline for Building & Running HelloWorld Hibernate Application 1 What we are going to build A simple Hibernate application persisting Person objects The database table, person, has the

More information

Installing MySQL. Hibernate: Setup, Use, and Mapping file. Setup Hibernate in IDE. Starting WAMP server. phpmyadmin web console

Installing MySQL. Hibernate: Setup, Use, and Mapping file. Setup Hibernate in IDE. Starting WAMP server. phpmyadmin web console Installing MySQL Hibernate: Setup, Use, and Mapping file B.Tech. (IT), Sem-6, Applied Design Patterns and Application Frameworks (ADPAF) Dharmsinh Desai University Prof. H B Prajapati Way 1 Install from

More information

Getting Started. In this chapter, you will learn: 2.1 Introduction

Getting Started. In this chapter, you will learn: 2.1 Introduction DB2Express.book Page 9 Thursday, August 26, 2004 3:59 PM CHAPTER 2 Getting Started In this chapter, you will learn: How to install DB2 Express server and client How to create the DB2 SAMPLE database How

More information

Automating Essbase Outline Extracts to a Relational Database Using the Next Generation Outline Extractor

Automating Essbase Outline Extracts to a Relational Database Using the Next Generation Outline Extractor Automating Essbase Outline Extracts to a Relational Database Using the Next Generation Outline Extractor Tim Tow, Oracle ACE Director Founder and President Applied OLAP Inc. Many Essbase customers regularly

More information

Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6)

Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6) [1]Oracle Fusion Middleware Creating Domain Templates Using the Domain Template Builder 11g Release 1 (10.3.6) E14139-06 April 2015 This document describes how to use the Domain Template Builder to create

More information

Nimsoft Documentation

Nimsoft Documentation Nimsoft Documentation Nimsoft Probes Technical Description xmlparser v1.2x Probe Documentation Last Update: 08 December 2010 Copyright 1998-2010, Nimsoft Corporation www.nimsoft.com Nimsoft Documentation:

More information

The INSERT INTO Method

The INSERT INTO Method Article: Transferring Data from One Table to Another Date: 20/03/2012 Posted by: HeelpBook Staff Source: Link Permalink: Link SQL SERVER TRANSFERRING DATA FROM ONE TABLE TO ANOTHER Every DBA needs to transfer

More information

BASIC USER TRAINING PROGRAM Module 5: Test Case Development

BASIC USER TRAINING PROGRAM Module 5: Test Case Development BASIC USER TRAINING PROGRAM Module 5: Test Case Development Objective Student will have an understanding of how to create, edit and execute a Test Case from Develop a Test Case Activity Page. Student will

More information

EUSurvey Installation Guide

EUSurvey Installation Guide EUSurvey Installation Guide Guide to a successful installation of EUSurvey May 20 th, 2015 Version 1.2 (version family) 1 Content 1. Overview... 3 2. Prerequisites... 3 Tools... 4 Java SDK... 4 MySQL Database

More information

Archivists Toolkit Internal Database

Archivists Toolkit Internal Database Archivists Toolkit Internal Database The Archivists Toolkit now includes (AT 2.0, update 9 and later), support for an internal database based on HyperSQL 2.0 (HSQLDB). HyperSQL is a small, reliable, high

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Advanced Design and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: January 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab

Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab 1 Overview QMF for Workstation is an Eclipse-based, rich client desktop Java application, that uses JDBC to connect to data

More information

BEAWebLogic. Portal. MobileAware Interaction Server Installation Guide

BEAWebLogic. Portal. MobileAware Interaction Server Installation Guide BEAWebLogic Portal MobileAware Interaction Server Installation Guide Version 8.1 with Service Pack 3 (MobileAware Version 1.0) Document Revised: September 2004 Copyright Copyright 2004 BEA Systems, Inc.

More information

Nimsoft Monitor. hpovsdgtw Guide. v1.2 series

Nimsoft Monitor. hpovsdgtw Guide. v1.2 series Nimsoft Monitor hpovsdgtw Guide v1.2 series Legal Notices Copyright 2012, Nimsoft Corporation Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

Text version 15-Aug-12. for Q-CHECKER V4, V5 and V6

Text version 15-Aug-12. for Q-CHECKER V4, V5 and V6 Text version 15-Aug-12 Q-MONITOR V4 for Q-CHECKER V4, V5 and V6 USERS GUIDE Orientation Symbols used in the manual For better orientation in the manual the following symbols are used: Warning symbol Tip

More information

Infrastructure Navigator User's Guide

Infrastructure Navigator User's Guide vcenter Infrastructure Navigator 1.0.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more

More information

NimBUS Documentation. Read this first. Installation(Upgrade) of the NimBUS Robot Requirement for the new generation System Probes

NimBUS Documentation. Read this first. Installation(Upgrade) of the NimBUS Robot Requirement for the new generation System Probes NimBUS Documentation Read this first Installation(Upgrade) of the NimBUS Robot Requirement for the new generation System Probes Beta November 6, 2008 Copyright 1998-2008, Nimsoft Corporation. www.nimsoft.com

More information

Nimsoft Documentation

Nimsoft Documentation Nimsoft Documentation Nimsoft Probes Technical cisco_unity v1.2x Probe Documentation Last Update: 27 April 2011 Copyright 1998-2011, Nimsoft Corporation www.nimsoft.com Nimsoft Documentation: cisco_unity

More information

Teiid Designer User Guide 7.5.0

Teiid Designer User Guide 7.5.0 Teiid Designer User Guide 1 7.5.0 1. Introduction... 1 1.1. What is Teiid Designer?... 1 1.2. Why Use Teiid Designer?... 2 1.3. Metadata Overview... 2 1.3.1. What is Metadata... 2 1.3.2. Editing Metadata

More information

Sugar Enterprise 6.5 Offline Client Guide

Sugar Enterprise 6.5 Offline Client Guide Sugar Enterprise 6.5 Offline Client Guide 1 / 11 Sugar Enterprise 6.5 Offline Client Guide... 3 Overview... 3 Conflict resolution... 3 Installation prerequisites... 4 Installing the Sugar Offline Client...

More information

Change and Configuration Management Administration

Change and Configuration Management Administration CHAPTER 7 Change and Configuration Management Administration These topics provide administrative information on Change and Configuration Management: Configuring Global Settings for Configuration Management,

More information

Teradata Studio Express

Teradata Studio Express Teradata Studio Express User Guide Release 16.20 April 2018 B035-2042-518K Copyright and Trademarks Copyright 2006-2018 by Teradata. All Rights Reserved. All copyrights and trademarks used in Teradata

More information

Nimsoft Monitor Server

Nimsoft Monitor Server Nimsoft Monitor Server Configuration Guide v6.00 Document Revision History Version Date Changes 1.0 10/20/2011 Initial version of Nimsoft Server Configuration Guide, containing configuration and usage

More information

Database to XML Wizard

Database to XML Wizard Database to XML Wizard Jitterbit Connect TM provides a fast, easy route to data transformation. This is made possible through a wizard-based integration tool built directly into Jitterbit. The wizard executes

More information

18.1 user guide No Magic, Inc. 2015

18.1 user guide No Magic, Inc. 2015 18.1 user guide No Magic, Inc. 2015 All material contained herein is considered proprietary information owned by No Magic, Inc. and is not to be shared, copied, or reproduced by any means. All information

More information

FileCatalyst HotFolder Quickstart

FileCatalyst HotFolder Quickstart FileCatalyst HotFolder Quickstart Contents 1 Installation... 2 1.1 Verify Java Version... 2 1.2 Perform Installation... 3 1.2.1 Windows... 3 1.2.2 Mac OSX... 3 1.2.3 Linux, Solaris, *nix... 3 1.3 Enable

More information

Nimsoft Monitor. controller Guide. v5.7 series

Nimsoft Monitor. controller Guide. v5.7 series Nimsoft Monitor controller Guide v5.7 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed,

More information

BW C SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr User Guide

BW C SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr User Guide BW C SILWOOD TECHNOLOGY LTD Safyr Metadata Discovery Software Safyr User Guide S I L W O O D T E C H N O L O G Y L I M I T E D Safyr User Guide Safyr 7.1 This product is subject to the license agreement

More information

ACM INTERNATIONAL COLLEGIATE PROGRAMMING CONTEST. California State University, Sacramento s. PC 2 Version 9.6. Judge s Guide

ACM INTERNATIONAL COLLEGIATE PROGRAMMING CONTEST. California State University, Sacramento s. PC 2 Version 9.6. Judge s Guide ACM INTERNATIONAL COLLEGIATE PROGRAMMING CONTEST California State University, Sacramento s PC 2 Version 9.6 Judge s Guide Table of Contents 1 Introduction... 2 2 Logging in to

More information

Electrical System Functional Definition

Electrical System Functional Definition Electrical System Functional Definition Preface What's New? Getting Started Basic Tasks Advanced Tasks Workbench Description Customizing Glossary Index Dassault Systèmes 1994-2000. All rights reserved.

More information

MassTransit Server Installation Guide for Windows

MassTransit Server Installation Guide for Windows MassTransit 6.1.1 Server Installation Guide for Windows November 24, 2009 Group Logic, Inc. 1100 North Glebe Road, Suite 800 Arlington, VA 22201 Phone: 703-528-1555 Fax: 703-528-3296 E-mail: info@grouplogic.com

More information

Extended Search Administration

Extended Search Administration IBM Lotus Extended Search Extended Search Administration Version 4 Release 0.1 SC27-1404-02 IBM Lotus Extended Search Extended Search Administration Version 4 Release 0.1 SC27-1404-02 Note! Before using

More information

Create Datamart. Alessandro Taurelli 2010/06/15 13:41

Create Datamart. Alessandro Taurelli 2010/06/15 13:41 Create Datamart Alessandro Taurelli 2010/06/15 13:41 Table of Contents Create Datamart... 3 1 Reverse engineering the target database schema... 3 2 Hibernate mapping adjustement... 16 3 jar production

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

Java CAPS Creating a Simple Web Service from a JCD

Java CAPS Creating a Simple Web Service from a JCD Java CAPS 5.1.3 Creating a Simple Web Service from a JCD Introduction Holger Paffrath, August 2008 This tutorial shows you how to create an XML Schema definition to define the layout of your web service

More information

TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud.

TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud. TIBCO Jaspersoft running in AWS accessing a back office Oracle database via JDBC with Progress DataDirect Cloud. This tutorial walks through the installation and configuration process to access data from

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

ACD SMR User's Guide. Table of Contents

ACD SMR User's Guide. Table of Contents Table of Contents Table of Contents Table of Contents Overview of ACD SMR... 3... 4 MySQL Server... 4 Installing MySQL Server... 4 Configuring MySQL Server... 5 ACD Service... 9 Installing ACD Service...

More information

Teamcenter 11.1 Systems Engineering and Requirements Management

Teamcenter 11.1 Systems Engineering and Requirements Management SIEMENS Teamcenter 11.1 Systems Engineering and Requirements Management Systems Architect/ Requirements Management Project Administrator's Manual REQ00002 U REQ00002 U Project Administrator's Manual 3

More information

GFI WebMonitor 2009 ReportPack. Manual. By GFI Software Ltd.

GFI WebMonitor 2009 ReportPack. Manual. By GFI Software Ltd. GFI WebMonitor 2009 ReportPack Manual By GFI Software Ltd. http://www.gfi.com E-mail: info@gfi.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

MIB Browser Version 10 User Guide

MIB Browser Version 10 User Guide MIB Browser Version 10 User Guide The ireasoning MIB browser is a powerful and easy-to-use tool powered by ireasoning SNMP API. MIB browser is an indispensable tool for engineers to manage SNMP enabled

More information

Lab 1 - Getting started with OIM 11g

Lab 1 - Getting started with OIM 11g Lab 1 - Getting started with OIM 11g Contents Lab 1 - Getting started with OIM 11g... 1 1. Introduction... 1 2. Contents... 3 2.1 VM Accessibility... 3 2.2 Understand directory structures... 4 2.3 Database

More information

Perceptive Data Transfer

Perceptive Data Transfer Perceptive Data Transfer User Guide Version: 6.5.x Written by: Product Knowledge, R&D Date: September 2016 2015 Lexmark International Technology, S.A. All rights reserved. Lexmark is a trademark of Lexmark

More information

Sql 2008 Copy Table Structure And Database To

Sql 2008 Copy Table Structure And Database To Sql 2008 Copy Table Structure And Database To Another Table Different you can create a table with same schema in another database first and copy the data like Browse other questions tagged sql-server sql-server-2008r2-express.

More information

Nimsoft Documentation

Nimsoft Documentation Nimsoft Documentation Nimsoft Probes Technical Description VMWare v3.27 Probe Documentation Last Update: 30 December 2010 Copyright 1998-2010, Nimsoft Corporation www.nimsoft.com Nimsoft Documentation:

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

Unified Management Portal

Unified Management Portal Unified Management Portal Unified Management Portal Release Notes 6.2.1 Document Revision History Document Version Date Changes 1.0 12/18/2012 Initial version for UMP 6.2. 1.1 2/4/2013 Updated version

More information

Logi Ad Hoc Reporting Management Console Overview

Logi Ad Hoc Reporting Management Console Overview Logi Ad Hoc Reporting Management Console Overview Version 12 July 2016 Page 2 Table of Contents INTRODUCTION...3 System Requirements...4 Management Console Overview...5 Configuration Wizard Overview...9

More information

Mastering phpmyadmiri 3.4 for

Mastering phpmyadmiri 3.4 for Mastering phpmyadmiri 3.4 for Effective MySQL Management A complete guide to getting started with phpmyadmin 3.4 and mastering its features Marc Delisle [ t]open so 1 I community experience c PUBLISHING

More information

Bedework Calendar Deployment Manual

Bedework Calendar Deployment Manual Bedework Calendar Deployment Manual Bedework version 3.1 Last modified: July 30, 2006 Bedework Deployment Manual The Bedework Deployment Manual contains instructions for customizing and installing a production

More information

Dashboard / Output Guide

Dashboard / Output Guide Interstage Business Process Manager Analytics V11.0 Dashboard / Output Guide Windows/Solaris/Linux J2U3-0053-01(00) December 2009 About this Manual This document describes how to use the Dashboard to display

More information

Skyway Builder 6.3 Reference

Skyway Builder 6.3 Reference Skyway Builder 6.3 Reference 6.3.0.0-07/21/09 Skyway Software Skyway Builder 6.3 Reference: 6.3.0.0-07/21/09 Skyway Software Published Copyright 2009 Skyway Software Abstract The most recent version of

More information

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version 1.1.0 and Eclipse Install, work with data perspectives, create connections, and create a project Skill Level: Intermediate

More information

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse

Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version and Eclipse Introduction to IBM Data Studio, Part 1: Get started with IBM Data Studio, Version 1.1.0 and Eclipse Install, work with data perspectives, create connections, and create a project Skill Level: Intermediate

More information

Updated PDF Support Manual:

Updated PDF Support Manual: Version 2.7.0 Table of Contents Installing DT Register... 4 Component Installation... 4 Install the Upcoming Events Module...4 Joom!Fish Integration...5 Configuring DT Register...6 General... 6 Display...7

More information

CA ERwin Data Modeler

CA ERwin Data Modeler CA ERwin Data Modeler Implementation Guide Service Pack 9.5.2 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to only and is subject

More information

Copyright...4. Overview Managing Snapshots... 6

Copyright...4. Overview Managing Snapshots... 6 Contents 2 Contents Copyright...4 Overview... 5 Managing Snapshots... 6 Company Snapshots...6 Examples of Sensitive Data Preservation in Snapshots... 9 To Take a Snapshot...10 To Toggle the Visibility

More information

USING DIRECT DATABASE DRIVERS

USING DIRECT DATABASE DRIVERS USING DIRECT DATABASE 1 DRIVERS Overview 2 S-PLUS Commands for Importing and Exporting 3 Dialogs for Importing and Exporting 6 Import From Database 6 Export to Database 10 How Direct Data Sources are Stored

More information

Database Wizard Guide. i-net Designer

Database Wizard Guide. i-net Designer Guide i-net Designer 1 Content... 2 2 Introduction... 3 2.1 Definitions... 3 3 Setting Up a Simple Database Connection... 5 4 Choosing and Joining Table Sources... 6 5 Creating a Custom SQL Command... 10

More information

Configuration Export and Import

Configuration Export and Import This chapter includes the following sections:, page 1 From the Export & Import, you can schedule configuration backup for Cisco UCS Central and the registered Cisco UCS Domains. You can schedule export

More information

StarFinder. Operation Manual. Star Chromatography Workstation Version 6

StarFinder. Operation Manual. Star Chromatography Workstation Version 6 Varian Analytical Instruments 2700 Mitchell Drive Walnut Creek, CA 94598-1675/USA Star Chromatography Workstation Version 6 StarFinder Operation Manual Varian, Inc. 2002 03-914723-00:Rev. 2 Trademark Acknowledgment

More information

Xton Access Manager GETTING STARTED GUIDE

Xton Access Manager GETTING STARTED GUIDE Xton Access Manager GETTING STARTED GUIDE XTON TECHNOLOGIES, LLC PHILADELPHIA Copyright 2017. Xton Technologies LLC. Contents Introduction... 2 Technical Support... 2 What is Xton Access Manager?... 3

More information

User Guide Product Design Version 1.7

User Guide Product Design Version 1.7 User Guide Product Design Version 1.7 1 INTRODUCTION 3 Guide 3 USING THE SYSTEM 4 Accessing the System 5 Logging In Using an Access Email 5 Normal Login 6 Resetting a Password 6 Logging Off 6 Home Page

More information

Using AWS Data Migration Service with RDS

Using AWS Data Migration Service with RDS Using AWS Data Migration Service with RDS INTRODUCTION AWS s Database Migration Service (DMS) is a managed service to help migrate existing data and replicate changes from on-premise databases to AWS s

More information

Just Get It Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Hands on Practice

Just Get It Written: Deploying Applications to WebLogic Server Using JDeveloper and WLS Console Hands on Practice This hands on practice describes the steps for deploying an existing Java EE application written with Oracle ADF technologies. Although the practice refers to specific features and files in a sample application

More information

Extranet User Manager User Guide

Extranet User Manager User Guide Extranet User Manager User Guide Version 3.1 April 15, 2015 Envision IT 7145 West Credit Avenue Suite 100, Building 3 Mississauga, ON L5N 6J7 www.envisionit.com/eum TABLE OF CONTENTS NOTICE... 1 INTENDED

More information

Masking Engine User Guide. October, 2017

Masking Engine User Guide. October, 2017 Masking Engine User Guide October, 2017 Masking Engine User Guide You can find the most up-to-date technical documentation at: docs.delphix.com The Delphix Web site also provides the latest product updates.

More information

Generating A Hibernate Mapping File And Java Classes From The Sql Schema

Generating A Hibernate Mapping File And Java Classes From The Sql Schema Generating A Hibernate Mapping File And Java Classes From The Sql Schema Internally, hibernate maps from Java classes to database tables (and from It also provides data query and retrieval facilities by

More information

DiskSavvy Disk Space Analyzer. DiskSavvy DISK SPACE ANALYZER. User Manual. Version Dec Flexense Ltd.

DiskSavvy Disk Space Analyzer. DiskSavvy DISK SPACE ANALYZER. User Manual. Version Dec Flexense Ltd. DiskSavvy DISK SPACE ANALYZER User Manual Version 10.3 Dec 2017 www.disksavvy.com info@flexense.com 1 1 Product Overview...3 2 Product Versions...7 3 Using Desktop Versions...8 3.1 Product Installation

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for OData User's Guide

TIBCO ActiveMatrix BusinessWorks Plug-in for OData User's Guide TIBCO ActiveMatrix BusinessWorks Plug-in for OData User's Guide Software Release 6.0.1 November 2016 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE.

More information

Technical Queries & Support

Technical Queries & Support Technical Queries & Support For any technical queries or support please e-mail us at: E-mail: support@sensysindia.com Or Feel free to call us at Contact No. 022-66278600 (10 Lines) For Latest updates Please

More information

Impossible Solutions, Inc. JDF Ticket Creator & DP2 to Indigo scripts Reference Manual Rev

Impossible Solutions, Inc. JDF Ticket Creator & DP2 to Indigo scripts Reference Manual Rev Impossible Solutions, Inc. JDF Ticket Creator & DP2 to Indigo scripts Reference Manual Rev. 06.29.09 Overview: This reference manual will cover two separate applications that work together to produce a

More information

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry.

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION VERSION 9 Setup Guide This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE Fusion Registry: 9.2.x Document

More information

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3

Enterprise Vault.cloud CloudLink Google Account Synchronization Guide. CloudLink to 4.0.3 Enterprise Vault.cloud CloudLink Google Account Synchronization Guide CloudLink 4.0.1 to 4.0.3 Enterprise Vault.cloud: CloudLink Google Account Synchronization Guide Last updated: 2018-06-08. Legal Notice

More information

Data Analysis and Integration

Data Analysis and Integration MEIC 2015/2016 Data Analysis and Integration Lab 5: Working with databases 1 st semester Installing MySQL 1. Download MySQL Community Server for your operating system. For Windows, use one of the following

More information

Function. Description

Function. Description Function Check In Get / Checkout Description Checking in a file uploads the file from the user s hard drive into the vault and creates a new file version with any changes to the file that have been saved.

More information

Hibernate Interview Questions

Hibernate Interview Questions Hibernate Interview Questions 1. What is Hibernate? Hibernate is a powerful, high performance object/relational persistence and query service. This lets the users to develop persistent classes following

More information

1. ECI Hosted Clients Installing Release 6.3 for the First Time (ECI Hosted) Upgrading to Release 6.3SP2 (ECI Hosted)

1. ECI Hosted Clients Installing Release 6.3 for the First Time (ECI Hosted) Upgrading to Release 6.3SP2 (ECI Hosted) 1. ECI Hosted Clients........................................................................................... 2 1.1 Installing Release 6.3 for the First Time (ECI Hosted)...........................................................

More information

Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab

Using the IMS Universal Drivers and QMF to Access Your IMS Data Hands-on Lab Attendee Choice: IMS Hands-on Lab Thursday, August 13, 2015: 12:30 PM - 01:30 PM, Dolphin, Asia 5 #17765 Insert Custom Session QR if Desired Business Analytics on zenterprise The QMF 11 Product Family

More information

Solution Composer. User's Guide

Solution Composer. User's Guide Solution Composer User's Guide January 2014 www.lexmark.com Contents 2 Contents Overview...4 Understanding the basics...4 System recommendations...5 Building custom solutions...6 Getting started...6 Step

More information

Platform SDK Deployment Guide. Platform SDK 8.1.2

Platform SDK Deployment Guide. Platform SDK 8.1.2 Platform SDK Deployment Guide Platform SDK 8.1.2 1/1/2018 Table of Contents Overview 3 New in this Release 4 Planning Your Platform SDK Deployment 6 Installing Platform SDK 8 Verifying Deployment 10 Overview

More information

vrealize Operations Manager Customization and Administration Guide vrealize Operations Manager 6.4

vrealize Operations Manager Customization and Administration Guide vrealize Operations Manager 6.4 vrealize Operations Manager Customization and Administration Guide vrealize Operations Manager 6.4 vrealize Operations Manager Customization and Administration Guide You can find the most up-to-date technical

More information

SQream Dashboard Version SQream Technologies

SQream Dashboard Version SQream Technologies SQream Dashboard Version 1.1.0 SQream Technologies 2018-11-06 Table of Contents Overview................................................................................... 1 1. The SQream Dashboard...................................................................

More information

HP OpenView Service Desk

HP OpenView Service Desk HP OpenView Service Desk OpenView Operations Integration Administrator s Guide Software Version: 5.10 For the Windows and UNIX Operating Systems Manufacturing Part Number: None Document Release Date: August

More information

IaaS Configuration for Cloud Platforms

IaaS Configuration for Cloud Platforms vcloud Automation Center 6.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new edition. To check for more recent editions

More information

ZENworks Reporting System Reference. January 2017

ZENworks Reporting System Reference. January 2017 ZENworks Reporting System Reference January 2017 Legal Notices For information about legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government rights, patent

More information

Precise Custom Portal

Precise Custom Portal Precise Custom Portal User Guide Version 9.9.0 2 Precise Custom Portal User Guide Copyright 2018 Precise Software Solutions, Inc. All rights reserved. Document release version 1.0 Precise, Precise Software,

More information

www.insightsoftware.com for JD Edwards World and EnterpriseOne Version: 3.3 Last Updated: September 2, 2011 Contents 1. Architecture... 3 Overview... 3 Deployment... 4 Database Space... 4 Using This Guide...

More information