SharePlex for Oracle 8.5

Size: px
Start display at page:

Download "SharePlex for Oracle 8.5"

Transcription

1 SharePlex for Oracle 8.5 Architecture, installation, usage, troubleshooting Dina Kleiman Sr. Technical Support Engineer

2 Slide Index Learning Objectives- Slide 3 SharePlex for Oracle 8.5 Architecture Slide 4-13 Installation and configuration Slide Diagnose and Troubleshoot Slide Documentation-Slides 37 Common Error Messages- Slide 38 2

3 Learning Objectives Upon completion of this presentation, the student should be able to: Understand SharePlex architecture Demonstrate How to install and start SharePlex Know how to determine which SharePlex module is experiencing the issue Where to locate error messages Where to gather information to resolve the issue How to collect appropriate logs 3

4 Part 1 - Architecture Upon completion of this lesson, the student should be able to: Describe SharePlex architecture Describe each process and queue in detail Click on below link to watch a video that describes SharePlex architecture, its processes and queues. w.aspx?id=sol92662&st=published 4

5 SharePlex for Oracle Architecture Source System Target System Oracle Log Files SQL Capture Process Read Process Post Process Quest Transport Layer Capture Q Export Q Post Q Network Export Process Import Process 5

6 Capture process Reads redo/archive logs on source Looks for changes to objects listed Writes to the capture queue One capture per source database <proddir>/bin/sp_ocap Capture Process 6

7 Capture queue Resides on the source system Reads data from the Oracle logs Holds the data outside the Oracle Source instance is identified by datasource, for example o.oraa. One capture queue per datasource (SID) Capture Q 7

8 Read process Reads data from the capture queue Adds routing information to the data Builds the where clause when necessary Sends data to the export queue One read per source database <proddir>/bin/sp_ordr Read Process 8

9 Export queue Resides on the source system Holds data processed by Capture and Read Data is ready for transport to the target system One or many export queues (named queues) Export Q 9

10 Export process Runs on source Reads data from the export queue Sends it across the network to the target system s import process One process per target Part of Export/Import transport pair <proddir>/bin/sp_xport Export Process 10

11 Import process Second half of the Export/Import transport pair Runs on target Receives data from export Writes to post queue One import for each export queue One of many post queues <proddir>/bin/sp_mport Import Process 11

12 Post Queue Resides on target system Holds data that is ready for writing to the target database One or more post queues per source SourceA and SourceB -> TargetC (2 post queues on TargetC) Default name: SourceHostname (o.sourcesid-o.targetsid) Named post queues can be created Post Q 12

13 Post process Runs on target system Read the post queue Constructs SQL statements to Oracle database Applies SQL to target objects One post process per each post queue <proddir>/bin/sp_opst_mt Post Process 13

14 Part 2 - Installation Upon completion of this lesson, the student should be able to: Download the SharePlex binary Install SharePlex Start SharePlex Set up replication Run basic commands Synchronize data with repair and copy 14

15 Part 2 - Installation Binary is located on supportlink Select binary for your OS and Oracle versions! Place binary on the server Extract using the tar xvf command tar xvf SharePlex b40-oracle100-sun-10-x86-m64.tar 15

16 Running the install: Part 1 Go over Pre-Installation checklist in the Install Guide Obtain the license key Execute the.tpm file and follow the prompts./shareplex b40-oracle100-sun-10-x86-m64.tar This will create proddir, vardir and install binaries and libraries Default port is

17 Running the install: Part 2 Make sure database is installed and open Make sure the following are set: ORACLE_HOME ORACLE_SID SP_SYS_VARDIR Run ora_setup and follow the prompts./ora_setup Ora_setup: creates database objects populates paramdb file with the encrypted passwed 17

18 Adding a new key Option 1 At time of install, when prompted Option 2 Using utility <proddir>/install/splex_add_key 18

19 Start SharePlex Go to the binary directory Make sure the following are set: ORACLE_HOME ORACLE_SID SP_SYS_VARDIR Locate sp_cop binary Execute it./sp_cop u<port> & 19

20 Set up replication Log into sp_ctrl./sp_ctrl Create the config file sp_ctrl> create config demo.cfg Specify datasource source SID Specify name of source and target tables Specify target server name and SID Either specify one table per line or use wild cards to replicate an entire schema Use default queues or set up named queues 20

21 Set up replication config file examples: Specify one table per entry datasource:o.orcl1 splex.demo_src splex.demo_dest Replicate an entire schema datasource:o.orcl1 splex.% splex.% Setup a named post queue 21 datasource:o.orcl1 splex.demo_src splex.demo_dest targetserver:[email protected] NOTE: For more information about named queues, see SharePlex for Oracle Administrator s Guide chapters Configuration for isolating data using named export queues and Configuration for faster posting using named post queues.

22 Start replication Activate config sp_ctrl> activate config demo.cfg To see a list of all config files sp_ctrl> list config Active state means a config file was successfully activated 22

23 Common sp_ctrl commands To see queues sp_ctrl> qstatus To see processes sp_ctrl> show To see parameters set for each process sp_ctrl> list param all <process name> To see modified parameters sp_ctrl> list param modified 23

24 Common sp_ctrl commands cont: To see details about capture sp_ctrl> show capture detail To see details about read sp_ctrl> show read internal To see details about export sp_ctrl> show export To see details about import sp_ctrl> show import To see details about post sp_ctrl> show post detail 24

25 Controlling DDL replication Set parameter SP_OCT_REPLICATE_DDL sp_ctrl> set param SP_OCT_REPLICATE_DDL (disable replication of both ALTER and TRUNCATE) 1 (enable ALTER replication only) 2 (enable TRUNCATE replication only) 3 (enable replication of DDL NOTE: For more information about this parameter and other SharePlex user configurable parameters, see SharePlex for Oracle Reference Guide. 25

26 Controlling posting on target Disable posting to one object 1. SOURCE: sqplus> select object_id from dba_objects where object_name='<source TABLE NAME> 2. TARGET: sp_ctrl> set param SP_OPO_DISABLE_OBJECT_NUM <SOURCE OBJID from step 1> NOTE: click on the below link to watch a video about setting SP_OPO_DISABLE_OBJECT_NUM Ignore DDL errors on target TARGET: sp_ctrl> SP_OPO_STOP_ON_DDL_ERR Reset any parameter to its default value (turn it off) sp_ctrl> reset param <parameter name> 26

27 Synchronize tables Using repair command Log into source sp_ctrl> repair splex.demo_src sp_ctrl> repair status Using copy command TARGET: sp_ctrl> start launcher SOURCE: sp_ctrl> copy splex.demo_src SOURCE: sp_ctrl> copy status NOTE: For more information about copy, repair, and other SharePlex utilities, commands and parameters, see SharePlex for Oracle Administrator s Guide and Reference Guide. 27

28 Part 3: How to diagnose & troubleshoot Upon completion of this lesson, the student should be able to: Determine the SharePlex module that is experiencing the issue Locate the error message Search SupportLink and SharePlex documentation for this error message Either resolve the issue or collect appropriate information to further troubleshot through collaboration. Be the customer advocate until the issue is fully resolved Assumption: Participant had thoroughly read and implemented what s written in the SharePlex for Oracle Installation Guide. SharePlex Installation Guide is available for download via our website. This guide includes SharePlex product architecture, installation, configuration, and feature demonstration. Participant should have some prior experience with Oracle database and Unix/Linux/Windows OS. 28

29 Business Scenario A SharePlex customer says that SharePlex is experiencing an issue What should the 1 st Level of SharePlex Support do? 29

30 Initial Steps Determine what was happening prior to or at the time of the issue What changed? New code release? Batch job? Upgrade? Etc. Determine which module is down sp_ctrl> show sp_ctrl> qstatus Determine the SharePlex version sp_ctrl> version full Locate the error message in $SP_SYS_VARDIR/log/event_log Search the KnowledgeBase, Release Notes, Administrator s Guide, Reference Guide, Installation Guide, and Known Issues List for this error message (the links are provided in the later slides) Determine whether the issue is with the SharePlex product or with the 3 rd party software (Oracle, Unix, Linux, Windows) or hardware Resolve the issue using the information gathered in the previous steps or ask the customer to contact the 3 rd party vendor if necessary 30

31 If the issue cannot be resolved Collect appropriate SharePlex files: logs from $SP_SYS_VARDIR/log $SP_SYS_VARDIR/data/paramdb Collect SharePlex, Oracle and OS version information sp_ctrl> version full (for SharePlex version info) Collect the output of sp_ctrl> show sp_ctrl> qstatus For core dump issues collect $SP_SYS_VARDIR/dump/core.out file Document work performed so far customer replication setup events on the server(s) that led to the error Contact SharePlex Support through 31

32 After Contacting SharePlex Support Be the customer advocate throughout the process Be an active participant until the issue is fully resolved Make sure SharePlex Support receives the requested logs in a timely manner Make sure the customer understands the issue and the resolution once it is provided Keep the customer regularly updated with current status If the issue requires a long time to resolve make sure the customer understands why Facilitate communication between the customer and 2 nd Level Support translate communications if necessary 32

33 Collecting logs Core.out and core files are in $SP_SYS_VARDIR/dump Paramdb is in $SP_SYS_VARDIR/data All logs are in $SP_SYS_VARDIR/log Main log: event_log look here first Capture: <SID>_ocap*.log or ocap.log or capture log Read: <SID>_ord*.log or ordr.log or reader log Post: <SID>_ <queue>_opo*.log or opo.log or poster log 33

34 Collecting logs (continued) All logs are in $SP_SYS_VARDIR/log Copy: sync_svr*<sid>_ <src_server>_p<pid>.log (source) or sync svr.log sync_clt*<sid>_<src_server>_p<pid>.log (target) or sync clt.log Compare: <SID>_desvr-<PID>*.log or desvr.log (source) <SID>_ declt-<owner>-<table_name>-<pid>*.log or declt.log (target) <TABLE_NAME>.sql (target) Activation: <SID>_oconf*.log or oconf.log or activation log (source) Export/Import: without debug all messages go into the event_log debug is logged into trace_log or trace log, this file may or may not be present 34

35 Review Questions Match up a process and its logs capture read post compare copy activation desvr.log, declt.log sync_svr.log, sync_clt.log ocap.log ord.log opo.log oconf.log 35

36 Review Question Answers Match up process and its logs capture read post compare copy activation desvr.log and declt.log sync_svr.log, sync_clt.log ocap.log ordr.log opo.log oconf.log 36

37 Links to SharePlex Documentation KnowledgeBase Documentation (Administrators, Reference, Install Guides) Product Life Cycle Supported Platforms Release Notes Product Download QuestBook 37

38 Common issues and solutions Click on each link and read the articles for more information. Post stopped due to error: "Poster: Cannot open object cache Basic trouble shooing in SharePlex Post stopped with error: ORA Capture core dumps with error: "A portion of the redo log could not be parsed' Compare fails with: "Warning 79 calling connect(de_sock_connecttoserver) (IP:, Port: ) failed". Sp_cop exits with error: sp_cop Address already in use udp server bind - exiting 38

39 Prerequisites for Contacting Support 39

40 When opening a support case submit the following: Problem Description Diagnostic logs, screenshots, etc. Environmental details (system versions, physical/virtual hardware, federation, High Availability, architecture, etc.) Issue severity and customer business impact, timeframes, etc. If a performance issue, provide specific details as specified in the Notes section of this slide. 40

41 Feedback on the Documentation We are interested in receiving feedback from you about our Support Technical Training. When submitting feedback please include: Product / Version Indicate if you are providing Feedback on: Support Training Documentation Support Training Exam Practical Exam Comments All comments are welcome. Please submit your feedback to the following address: [email protected] Please do not submit Technical Support requests to this address. 41

42 DELL CONFIDENTIAL AND PROPRIETARY This document SharePlex for Oracle 8.5 Support Training contains confidential information of Dell and embodies trade secret and proprietary intellectual property of Dell. It is legally protected and shall not be copied, modified, reverse engineered, published, disclosed, disseminated outside of Dell or otherwise used, in whole or in part, without Dell s written consent, provided, however, that you have the right to use the Document solely for your internal use and solely as necessary for you to enjoy the benefit of Services under the applicable SOW (or other agreement) you have entered into with Dell. Copyright 2012 by Dell Inc. The copyright notice does not imply publication of this document or its contents. DELL, the E (Stylized in a sphere) logo, Dell Compellent, OpenManage, EqualLogic, PowerEdge, PowerVault and other Dell trademarks are the trademarks or registered trademarks of Dell Inc. in the U.S. and certain other countries. 42

Slide Index. Technical Support Training

Slide Index. Technical Support Training MessageStats 7.1 Slide Index Learning Objectives- Slide 3 Product Overview- Slides 4-5 Common Issues- Slides 6-7 Troubleshooting Checklist- Slides 9-23 Common Error Messages- Slide 24 29 MessageStats Report

More information

Foglight.NET 5.9.1. How to install and troubleshoot

Foglight.NET 5.9.1. How to install and troubleshoot Foglight.NET 5.9.1 How to install and troubleshoot Slide Index Learning Objectives- Slide #3 Product Overview- Slides#4,5 Installation tips Slides #11-14 Known Issues Slide #24 Troubleshooting Checklist-Slides

More information

Dell PowerVault MD Storage Array Management Pack Suite Version 6.0 for Microsoft System Center Operations Manager Installation Guide

Dell PowerVault MD Storage Array Management Pack Suite Version 6.0 for Microsoft System Center Operations Manager Installation Guide Dell PowerVault MD Storage Array Management Pack Suite Version 6.0 for Microsoft System Center Operations Manager Installation Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information

More information

Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide

Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Dell SupportAssist Version 2.0 for Dell OpenManage Essentials Quick Start Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer.

More information

Database Replication Error in Cisco Unified Communication Manager

Database Replication Error in Cisco Unified Communication Manager Database Replication Error in Cisco Unified Communication Manager Document ID: 100781 Contents Introduction Prerequisites Requirements Components Used Conventions Use Unifed Reports to Debug Replication

More information

SharePlex for SQL Server

SharePlex for SQL Server SharePlex for SQL Server Improving analytics and reporting with near real-time data replication Written by Susan Wong, principal solutions architect, Dell Software Abstract Many organizations today rely

More information

2007 Quest Software, Inc. ALL RIGHTS RESERVED. TRADEMARKS. Disclaimer

2007 Quest Software, Inc. ALL RIGHTS RESERVED. TRADEMARKS. Disclaimer What s New 6.7 2007 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished under a software license

More information

CA Workload Automation Agent for Databases

CA Workload Automation Agent for Databases CA Workload Automation Agent for Databases Implementation Guide r11.3.4 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the

More information

RSA Authentication Manager 7.1 to 8.1 Migration Guide: Upgrading RSA SecurID Appliance 3.0 On Existing Hardware

RSA Authentication Manager 7.1 to 8.1 Migration Guide: Upgrading RSA SecurID Appliance 3.0 On Existing Hardware RSA Authentication Manager 7.1 to 8.1 Migration Guide: Upgrading RSA SecurID Appliance 3.0 On Existing Hardware Contact Information Go to the RSA corporate website for regional Customer Support telephone

More information

Juris Suite Installation Guide

Juris Suite Installation Guide Juris Suite Installation Guide Version 2.7 2015 LexisNexis. All rights reserved. Copyright and Trademark LexisNexis, Lexis, and the Knowledge Burst logo are registered trademarks of Reed Elsevier Properties

More information

Table of Contents. Introduction. Audience. At Course Completion

Table of Contents. Introduction. Audience. At Course Completion Table of Contents Introduction Audience At Course Completion Prerequisites Microsoft Certified Professional Exams Student Materials Course Outline Introduction This course develops your understanding of

More information

Table of Contents. Introduction. Audience. At Course Completion. Prerequisites. Microsoft Certified Professional Exams

Table of Contents. Introduction. Audience. At Course Completion. Prerequisites. Microsoft Certified Professional Exams Table of Contents Introduction Audience At Course Completion Prerequisites Microsoft Certified Professional Exams Student Materials Course Outline Introduction This two-day instructor-led course provides

More information

RSA Security Analytics Netflow Collection Configuration Guide

RSA Security Analytics Netflow Collection Configuration Guide RSA Security Analytics Netflow Collection Configuration Guide Copyright 2010-2015 RSA, the Security Division of EMC. All rights reserved. Trademarks RSA, the RSA Logo and EMC are either registered trademarks

More information

RSA Security Analytics Netflow Collection Configuration Guide

RSA Security Analytics Netflow Collection Configuration Guide RSA Security Analytics Netflow Collection Configuration Guide Copyright 2010-2015 RSA, the Security Division of EMC. All rights reserved. Trademarks RSA, the RSA Logo and EMC are either registered trademarks

More information

Kony MobileFabric. Sync Windows Installation Manual - WebSphere. On-Premises. Release 6.5. Document Relevance and Accuracy

Kony MobileFabric. Sync Windows Installation Manual - WebSphere. On-Premises. Release 6.5. Document Relevance and Accuracy Kony MobileFabric Sync Windows Installation Manual - WebSphere On-Premises Release 6.5 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and

More information

Setting up SQL Translation Framework OBE for Database 12cR1

Setting up SQL Translation Framework OBE for Database 12cR1 Setting up SQL Translation Framework OBE for Database 12cR1 Overview Purpose This tutorial shows you how to use have an environment ready to demo the new Oracle Database 12c feature, SQL Translation Framework,

More information

IBM WebSphere Partner Gateway V6.2.1 Advanced and Enterprise Editions

IBM WebSphere Partner Gateway V6.2.1 Advanced and Enterprise Editions IBM WebSphere Partner Gateway V6.2.1 Advanced and Enterprise Editions Integrated SFTP server 2011 IBM Corporation The presentation gives an overview of integrated SFTP server feature IntegratedSFTPServer.ppt

More information

CA ARCserve Backup for Windows

CA ARCserve Backup for Windows CA ARCserve Backup for Windows Agent for Sybase Guide r16 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

Integration Service Database. Installation Guide - Oracle. On-Premises

Integration Service Database. Installation Guide - Oracle. On-Premises Kony MobileFabric Integration Service Database Installation Guide - Oracle On-Premises Release 6.5 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title

More information

etrust Audit Using the Recorder for Check Point FireWall-1 1.5

etrust Audit Using the Recorder for Check Point FireWall-1 1.5 etrust Audit Using the Recorder for Check Point FireWall-1 1.5 This documentation and related computer software program (hereinafter referred to as the Documentation ) is for the end user s informational

More information

StreamServe Persuasion SP4

StreamServe Persuasion SP4 StreamServe Persuasion SP4 Installation Guide Rev B StreamServe Persuasion SP4 Installation Guide Rev B 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No part of this document

More information

CA ARCserve Backup for Windows

CA ARCserve Backup for Windows CA ARCserve Backup for Windows Agent for Sybase Guide r16.5 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide

vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide vcenter Operations Management Pack for SAP HANA Installation and Configuration Guide This document supports the version of each product listed and supports all subsequent versions until a new edition replaces

More information

LiteSpeed for SQL Server(7.5) How to Diagnose & Troubleshoot Backup

LiteSpeed for SQL Server(7.5) How to Diagnose & Troubleshoot Backup LiteSpeed for SQL Server(7.5) How to Diagnose & Troubleshoot Backup Slide Index Learning objectives- slide #3 Backup functional overview- slides # 9 Common issues- slide #17 Common backup error explanation-

More information

Connect to an SSL-Enabled Microsoft SQL Server Database from PowerCenter on UNIX/Linux

Connect to an SSL-Enabled Microsoft SQL Server Database from PowerCenter on UNIX/Linux Connect to an SSL-Enabled Microsoft SQL Server Database from PowerCenter on UNIX/Linux 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means

More information

CA Workload Automation Agent for Microsoft SQL Server

CA Workload Automation Agent for Microsoft SQL Server CA Workload Automation Agent for Microsoft SQL Server Release Notes r11.3.1, Second Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

vcenter Chargeback User s Guide

vcenter Chargeback User s Guide vcenter Chargeback 1.6 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

Installing Software and Options for the Polycom RealPresence Group Series and Accessories

Installing Software and Options for the Polycom RealPresence Group Series and Accessories for the Polycom RealPresence Group Series and Accessories Overview By upgrading your Polycom software or by purchasing additional system options, your organization continues to benefit from the latest

More information

Active Directory Infrastructure Design Document

Active Directory Infrastructure Design Document Active Directory Infrastructure Design Document Written By Sainath KEV Microsoft MVP Directory Services Microsoft Author TechNet Magazine, Microsoft Operations Framework Microsoft Speaker - Singapore Document

More information

TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation

TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation TIBCO ActiveMatrix BusinessWorks Plug-in for TIBCO Managed File Transfer Software Installation Software Release 6.0 November 2015 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS

More information

Avalanche Remote Control User Guide. Version 4.1.3

Avalanche Remote Control User Guide. Version 4.1.3 Avalanche Remote Control User Guide Version 4.1.3 ii Copyright 2012 by Wavelink Corporation. All rights reserved. Wavelink Corporation 10808 South River Front Parkway, Suite 200 South Jordan, Utah 84095

More information

Embarcadero Performance Center 2.7 Installation Guide

Embarcadero Performance Center 2.7 Installation Guide Embarcadero Performance Center 2.7 Installation Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A.

More information

Configuring and Monitoring Database Servers

Configuring and Monitoring Database Servers Configuring and Monitoring Database Servers eg Enterprise v5.6 Restricted Rights Legend The information contained in this document is confidential and subject to change without notice. No part of this

More information

Installation and Upgrade Guide. PowerSchool Student Information System

Installation and Upgrade Guide. PowerSchool Student Information System PowerSchool Student Information System Released August 2011 Document Owner: Engineering This edition applies to Release 7.x of the PowerSchool software and to all subsequent releases and modifications

More information

Quick Connect Express for Active Directory

Quick Connect Express for Active Directory Quick Connect Express for Active Directory Version 5.2 Quick Start Guide 2012 Dell Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in

More information

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide

SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide SC-T35/SC-T45/SC-T46/SC-T47 ViewSonic Device Manager User Guide Copyright and Trademark Statements 2014 ViewSonic Computer Corp. All rights reserved. This document contains proprietary information that

More information

CA Single Sign-On r12.x (CA SiteMinder) Implementation Proven Professional Exam

CA Single Sign-On r12.x (CA SiteMinder) Implementation Proven Professional Exam CA Single Sign-On r12.x (CA SiteMinder) Implementation Proven Professional Exam (CAT-140) Version 1.4 - PROPRIETARY AND CONFIDENTIAL INFORMATION - These educational materials (hereinafter referred to as

More information

Plug-In for Informatica Guide

Plug-In for Informatica Guide HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 2/20/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Windows Servers 10.2.0.4

Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Windows Servers 10.2.0.4 Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Windows Servers 10.2.0.4 CONFIDENTIAL INFORMATION The information herein is the property of Ex Libris Ltd. or its affiliates and any misuse or

More information

IDENTIKEY Appliance Administrator Guide 3.3.5.0 3.6.8

IDENTIKEY Appliance Administrator Guide 3.3.5.0 3.6.8 IDENTIKEY Appliance Administrator Guide 3.3.5.0 3.6.8 Disclaimer of Warranties and Limitations of Liabilities Legal Notices Copyright 2008 2015 VASCO Data Security, Inc., VASCO Data Security International

More information

VPN Configuration Guide. Dell SonicWALL

VPN Configuration Guide. Dell SonicWALL VPN Configuration Guide Dell SonicWALL 2013 equinux AG and equinux USA, Inc. All rights reserved. Under copyright law, this manual may not be copied, in whole or in part, without the written consent of

More information

Event Manager. LANDesk Service Desk

Event Manager. LANDesk Service Desk Event Manager LANDesk Service Desk LANDESK SERVICE DESK EVENT MANAGER GUIDE This document contains information that is the proprietary and confidential property of LANDesk Software, Inc. and/or its affiliated

More information

Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Windows Servers 10.2.0.4

Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Windows Servers 10.2.0.4 Ex Libris Patch Instructions for Oracle 10 CPUs for Voyager Windows Servers 10.2.0.4 CONFIDENTIAL INFORMATION The information herein is the property of Ex Libris Ltd. or its affiliates and any misuse or

More information

MySQL and Virtualization Guide

MySQL and Virtualization Guide MySQL and Virtualization Guide Abstract This is the MySQL and Virtualization extract from the MySQL Reference Manual. For legal information, see the Legal Notices. For help with using MySQL, please visit

More information

CCC Delta Server User Manual

CCC Delta Server User Manual 40DHB0002USBH Issue 1 (11/14/2001) Contents Contents Delta Server... 3 Introduction... 3 Launching Delta Server... 4 Event Viewer Tab... 5 Settings Tab... 6 Session Info Tab... 9 Index... 10 Page 2 40DHB0002USBH

More information

TIBCO Spotfire Server Migration. Migration Manual

TIBCO Spotfire Server Migration. Migration Manual TIBCO Spotfire Server Migration Migration Manual Revision date: 26 October 2012 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE

More information

Pre-Installation Instructions

Pre-Installation Instructions Agile Product Lifecycle Management PLM Mobile Release Notes Release 2.0 E49504-02 October 2014 These Release Notes provide technical information about Oracle Product Lifecycle Management (PLM) Mobile 2.0.

More information

Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02

Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02 Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02 Windows DOCUMENT ID: DC80003-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All

More information

Configuration Guide for Active Directory Integration

Configuration Guide for Active Directory Integration Configuration Guide for Active Directory Integration Workspot, Inc. 12/4/2015 Workspot Active Directory Integration The Enterprise Connector provides synchronization between an on-premise Active Directory

More information

4.0. Offline Folder Wizard. User Guide

4.0. Offline Folder Wizard. User Guide 4.0 Offline Folder Wizard User Guide Copyright Quest Software, Inc. 2007. All rights reserved. This guide contains proprietary information, which is protected by copyright. The software described in this

More information

Siebel Application Deployment Manager Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013

Siebel Application Deployment Manager Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Siebel Application Deployment Manager Guide Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software and related

More information

BEAWebLogic. Portal. WebLogic Portlets for SAP Installation Guide

BEAWebLogic. Portal. WebLogic Portlets for SAP Installation Guide BEAWebLogic Portal WebLogic Portlets for SAP Installation Guide Version 8.1 with Service Pack 4 (SAP Portlets Version 1.1) Document Revised: September 2004 Copyright Copyright 2004-2005 BEA Systems, Inc.

More information

Microsoft Dynamics GP. Engineering Data Management Integration Administrator s Guide

Microsoft Dynamics GP. Engineering Data Management Integration Administrator s Guide Microsoft Dynamics GP Engineering Data Management Integration Administrator s Guide Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is

More information

Oracle Data Integrator 12c: Integration and Administration

Oracle Data Integrator 12c: Integration and Administration Oracle University Contact Us: +33 15 7602 081 Oracle Data Integrator 12c: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive data integration

More information

EVault for Data Protection Manager. Course 401 EDPM Troubleshooting Basics

EVault for Data Protection Manager. Course 401 EDPM Troubleshooting Basics EVault for Data Protection Manager Course 401 EDPM Troubleshooting Basics Table of Contents Objectives... 3 Scenario... 3 Level 1 Support Expectations Rules of Engagement... 4 Online Resources... 5 i365

More information

Oracle Data Integrator 11g: Integration and Administration

Oracle Data Integrator 11g: Integration and Administration Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 4108 4709 Oracle Data Integrator 11g: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive

More information

Landscape Design and Integration. SAP Mobile Platform 3.0 SP02

Landscape Design and Integration. SAP Mobile Platform 3.0 SP02 Landscape Design and Integration SAP Mobile Platform 3.0 SP02 DOCUMENT ID: DC01916-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All rights reserved. No part

More information

Performance Tuning and Optimizing SQL Databases 2016

Performance Tuning and Optimizing SQL Databases 2016 Performance Tuning and Optimizing SQL Databases 2016 http://www.homnick.com [email protected] +1.561.988.0567 Boca Raton, Fl USA About this course This four-day instructor-led course provides students

More information

SafeGuard Enterprise upgrade guide. Product version: 7

SafeGuard Enterprise upgrade guide. Product version: 7 SafeGuard Enterprise upgrade guide Product version: 7 Document date: December 2014 Contents 1 About this guide...3 2 Check the system requirements...4 3 Download installers...5 4 About upgrading...6 4.1

More information

NetFlow Collection and Processing Cartridge Pack User Guide Release 6.0

NetFlow Collection and Processing Cartridge Pack User Guide Release 6.0 [1]Oracle Communications Offline Mediation Controller NetFlow Collection and Processing Cartridge Pack User Guide Release 6.0 E39478-01 June 2015 Oracle Communications Offline Mediation Controller NetFlow

More information

SolarWinds Migrating SolarWinds NPM Technical Reference

SolarWinds Migrating SolarWinds NPM Technical Reference SolarWinds Migrating SolarWinds NPM Technical Reference Copyright 1995-2015 SolarWinds Worldwide, LLC. All rights reserved worldwide. No part of this document may be reproduced by any means nor modified,

More information

IDENTIKEY Server Windows Installation Guide 3.2

IDENTIKEY Server Windows Installation Guide 3.2 IDENTIKEY Server Windows Installation Guide 3.2 Disclaimer of Warranties and Limitations of Liabilities Disclaimer of Warranties and Limitations of Liabilities The Product is provided on an 'as is' basis,

More information

System Administration Guide

System Administration Guide www.novell.com/documentation System Administration Guide Data Synchronizer 1.2 August 22, 2012 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents or use of this

More information

Framework 8.1. External Authentication. Reference Manual

Framework 8.1. External Authentication. Reference Manual Framework 8.1 External Authentication Reference Manual The information contained herein is proprietary and confidential and cannot be disclosed or duplicated without the prior written consent of Genesys

More information

Smart Cloud Integration Pack. For System Center Operation Manager. v1.1.0. User's Guide

Smart Cloud Integration Pack. For System Center Operation Manager. v1.1.0. User's Guide Smart Cloud Integration Pack For System Center Operation Manager v1.1.0 User's Guide Table of Contents 1. INTRODUCTION... 6 1.1. Overview... 6 1.2. Feature summary... 7 1.3. Supported Microsoft System

More information

OpenLane 5.3 supports a distributed architecture with either an Oracle 8i SQL database or a Sybase database. Refer to: Oracle Integration on page 2.

OpenLane 5.3 supports a distributed architecture with either an Oracle 8i SQL database or a Sybase database. Refer to: Oracle Integration on page 2. OpenLane 5.3 Distributed Database Configuration Quick Start Instructions Document Number 7800-A2-GZ43-30 September 2000 Distributed Databases OpenLane 5.3 supports a distributed architecture with either

More information

SafeGuard Enterprise upgrade guide. Product version: 6.1

SafeGuard Enterprise upgrade guide. Product version: 6.1 SafeGuard Enterprise upgrade guide Product version: 6.1 Document date: February 2014 Contents 1 About this guide...3 2 Check the system requirements...4 3 Download installers...5 4 About upgrading...6

More information

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016 Integration Guide IBM Note Before using this information and the product it supports, read the information

More information

CA ARCserve Backup for Windows

CA ARCserve Backup for Windows CA ARCserve Backup for Windows Agent for Microsoft SharePoint Server Guide r15 This documentation and any related computer software help programs (hereinafter referred to as the "Documentation") are for

More information

11. Oracle Recovery Manager Overview and Configuration.

11. Oracle Recovery Manager Overview and Configuration. 11. Oracle Recovery Manager Overview and Configuration. Abstract: This lesson provides an overview of RMAN, including the capabilities and components of the RMAN tool. The RMAN utility attempts to move

More information

PN 00651. Connect:Enterprise Secure FTP Client Release Notes Version 1.2.00

PN 00651. Connect:Enterprise Secure FTP Client Release Notes Version 1.2.00 PN 00651 Connect:Enterprise Secure FTP Client Release Notes Version 1.2.00 Connect:Enterprise Secure FTP Client Release Notes Version 1.2.00 First Edition This documentation was prepared to assist licensed

More information

MCSA Objectives. Exam 70-236: TS:Exchange Server 2007, Configuring

MCSA Objectives. Exam 70-236: TS:Exchange Server 2007, Configuring MCSA Objectives Exam 70-236: TS:Exchange Server 2007, Configuring Installing and Configuring Microsoft Exchange Servers Prepare the infrastructure for Exchange installation. Prepare the servers for Exchange

More information

nshield Modules Integration Guide for Oracle Database 11g Release 2 Transparent Data Encryption

nshield Modules Integration Guide for Oracle Database 11g Release 2 Transparent Data Encryption nshield Modules Integration Guide for Oracle Database 11g Release 2 Transparent Data Encryption Version: 2.0 Date: 01 November 2013 Copyright 2013 Thales e-security Limited. All rights reserved. Copyright

More information

BMC BladeLogic Client Automation Installation Guide

BMC BladeLogic Client Automation Installation Guide BMC BladeLogic Client Automation Installation Guide Supporting BMC BladeLogic Client Automation 8.2.02 January 2013 www.bmc.com Contacting BMC Software You can access the BMC Software website at http://www.bmc.com.

More information

Deltek Costpoint 7.1.1. New Installation Guide for Microsoft SQL Server

Deltek Costpoint 7.1.1. New Installation Guide for Microsoft SQL Server Deltek Costpoint 7.1.1 New Installation Guide for Microsoft SQL Server March 28, 2016 While Deltek has attempted to verify that the information in this document is accurate and complete, some typographical

More information

CA Nimsoft Monitor. Probe Guide for Active Directory Server. ad_server v1.4 series

CA Nimsoft Monitor. Probe Guide for Active Directory Server. ad_server v1.4 series CA Nimsoft Monitor Probe Guide for Active Directory Server ad_server v1.4 series Legal Notices Copyright 2013, CA. All rights reserved. Warranty The material contained in this document is provided "as

More information

3M Command Center. Installation and Upgrade Guide

3M Command Center. Installation and Upgrade Guide 3M Command Center Installation and Upgrade Guide Copyright 3M, 2015. All rights reserved., 78-8129-3760-1d 3M is a trademark of 3M. Microsoft, Windows, Windows Server, Windows Vista and SQL Server are

More information

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training

QAD Enterprise Applications. Training Guide Demand Management 6.1 Technical Training QAD Enterprise Applications Training Guide Demand Management 6.1 Technical Training 70-3248-6.1 QAD Enterprise Applications February 2012 This document contains proprietary information that is protected

More information

McAfee Web Gateway 7.4.1

McAfee Web Gateway 7.4.1 Release Notes Revision B McAfee Web Gateway 7.4.1 Contents About this release New features and enhancements Resolved issues Installation instructions Known issues Find product documentation About this

More information

7.5 7.5. Spotlight on Messaging. Evaluator s Guide

7.5 7.5. Spotlight on Messaging. Evaluator s Guide 7.5 Spotlight on Messaging 7.5 Evaluator s Guide 2010 Quest Software, Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

Using IIS Application Request Routing to Publish Lync Server 2013 Web Services

Using IIS Application Request Routing to Publish Lync Server 2013 Web Services Using IIS Application Request Routing to Publish Lync Server 2013 Web Services DISCLAIMER 2014 Microsoft Corporation. All rights reserved. Microsoft, Active Directory, Hyper-V, Internet Explorer, Lync,

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Application Setup help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

Upgrading Centricity Electronic Medical Record Service Packs on Microsoft Windows Server

Upgrading Centricity Electronic Medical Record Service Packs on Microsoft Windows Server GE Healthcare Upgrading Centricity Electronic Medical Record Service Packs on Microsoft Windows Server Version 9.8.6 September 2014 Centricity Electronic Medical Record DOC1595227 2014 General Electric

More information

IBM Tivoli Provisioning Manager V 7.1

IBM Tivoli Provisioning Manager V 7.1 IBM Tivoli Provisioning Manager V 7.1 Preparing for patch management in a small environment 2011 IBM Corporation Welcome to the training module for Tivoli Provisioning Manager version 7.1, preparing for

More information

Novell Identity Manager

Novell Identity Manager Password Management Guide AUTHORIZED DOCUMENTATION Novell Identity Manager 3.6.1 June 05, 2009 www.novell.com Identity Manager 3.6.1 Password Management Guide Legal Notices Novell, Inc. makes no representations

More information

How To Login To The Mft Internet Server (Mft) On A Pc Or Macbook Or Macintosh (Macintosh) With A Password Protected (Macbook) Or Ipad (Macro) (For Macintosh) (Macros

How To Login To The Mft Internet Server (Mft) On A Pc Or Macbook Or Macintosh (Macintosh) With A Password Protected (Macbook) Or Ipad (Macro) (For Macintosh) (Macros TIBCO MFT Internet Server User Guide Software Release 7.2.4 October 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO SOFTWARE

More information

AWS Schema Conversion Tool. User Guide Version 1.0

AWS Schema Conversion Tool. User Guide Version 1.0 AWS Schema Conversion Tool User Guide AWS Schema Conversion Tool: User Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may

More information

Embarcadero DB Change Manager 6.0 and DB Change Manager XE2

Embarcadero DB Change Manager 6.0 and DB Change Manager XE2 Product Documentation Embarcadero DB Change Manager 6.0 and DB Change Manager XE2 User Guide Versions 6.0, XE2 Last Revised April 15, 2011 2011 Embarcadero Technologies, Inc. Embarcadero, the Embarcadero

More information

CA Workload Automation Agent for Remote Execution

CA Workload Automation Agent for Remote Execution CA Workload Automation Agent for Remote Execution Release Notes r11.3.1 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the

More information

RSA Authentication Manager 7.1 Basic Exercises

RSA Authentication Manager 7.1 Basic Exercises RSA Authentication Manager 7.1 Basic Exercises Contact Information Go to the RSA corporate web site for regional Customer Support telephone and fax numbers: www.rsa.com Trademarks RSA and the RSA logo

More information

Course: 8911B: Installation and Deployment in Microsoft Dynamics CRM 4.0

Course: 8911B: Installation and Deployment in Microsoft Dynamics CRM 4.0 Course: 8911B: Installation and Deployment in Microsoft Dynamics CRM 4.0 Description: This two-day instructor-led course provides students with the tools to install and configure Microsoft The course focuses

More information

Deploying the BIG-IP System with Microsoft Lync Server 2010 and 2013 for Site Resiliency

Deploying the BIG-IP System with Microsoft Lync Server 2010 and 2013 for Site Resiliency Deployment Guide Document Version 1.2 What s inside: 2 Configuration example 5 Configuring the BIG-IP LTM using the Lync 2010 iapp 6 Configuring the BIG-IP GTM 11 Creating a Distributed Application for

More information

Microsoft Dynamics GP Release

Microsoft Dynamics GP Release Microsoft Dynamics GP Release Workflow Installation and Upgrade Guide February 17, 2011 Copyright Copyright 2011 Microsoft. All rights reserved. Limitation of liability This document is provided as-is.

More information

Troubleshooting for Yamaha router

Troubleshooting for Yamaha router Troubleshooting for Yamaha router How to troubleshoot This document describes how to troubleshoot for Yamaha router. - Some points which should be considered before the trouble - What you should do when

More information

Cisco TelePresence Management Suite Extension for Microsoft Exchange Version 4.0.1

Cisco TelePresence Management Suite Extension for Microsoft Exchange Version 4.0.1 Cisco TelePresence Management Suite Extension for Microsoft Exchange Version 4.0.1 Software Release Notes May 2014 Contents Introduction 1 Changes to interoperability 1 Product documentation 2 New features

More information

MailEnable Installation Guide

MailEnable Installation Guide MailEnable Installation Guide MailEnable Messaging Services for Microsoft Windows 2000/2003/2008 Installation Guide for: MailEnable Standard Edition MailEnable Professional Edition MailEnable Enterprise

More information

Oracle WebCenter Sites. Backup and Recovery Guide 11g Release 1 (11.1.1)

Oracle WebCenter Sites. Backup and Recovery Guide 11g Release 1 (11.1.1) Oracle WebCenter Sites Backup and Recovery Guide 11g Release 1 (11.1.1) April 2012 Oracle WebCenter Sites Backup and Recovery Guide, 11g Release 1 (11.1.1) Copyright 2012 Oracle and/or its affiliates.

More information

Cisco TelePresence Management Suite Extension for Microsoft Exchange Version 4.0

Cisco TelePresence Management Suite Extension for Microsoft Exchange Version 4.0 Cisco TelePresence Management Suite Extension for Microsoft Exchange Version 4.0 Software Release Notes May 2014 Contents Introduction 1 Changes to interoperability 1 Product documentation 1 New features

More information

Reconfiguring VMware vsphere Update Manager

Reconfiguring VMware vsphere Update Manager Reconfiguring VMware vsphere Update Manager vsphere Update Manager 6.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information