FAQ: Data Services Real Time Set Up

Size: px
Start display at page:

Download "FAQ: Data Services Real Time Set Up"

Transcription

1 FAQ: Data Services Real Time Set Up Assumptions How to load balancer Real-Time job? How does a Web Service Real-Time job utilize multiple job servers? Setup with at least two Web Servers and two Job Servers / Access Server The Access Server acts as a software load balancer distributing real-time message requests from 1-to-many service providers (job server instances). In order to provide failover for the Access Server and/or Web Server (when using web services) you would need to use external load balancer solution. One example using an external load balancer (See more detailed diagrams below) Load balancer Web Services -> Access Server Web Services -> Access Server As for optimizing Real Time jobs or using multiple job servers, you can designate multiple service providers as noted below. Note: when Job Server service/daemon is not running the Access Server will be do wn.. In addition, when web services are being used there is a connection pool between the web service layer and the Access Server(s). The connection pool settings can be adjusted on the web server to enhance scalability and performance. For further information, see Data Services Integrator s Guide. When more than one environment is setup for failover and/or load balancing you would typically replicate the environments. There is no automated way to do this right now. Long term engineering is planning on improving the product to make it easier to replicate environments. For now are detailed steps on how to manually replicate the management console and access server configuration through copying and manipulation of the XML configuration files. When a web services request is made they are sent to the DS Web Service layer via HTTP/SOAP protocols and the Web Service routes them to the Access Server. When using the Message Client API s, requests are sent to the Access server directly bypassing the web service layer and thus providing improve performance. You need to setup Real-time Services and for each service define which job servers will handle the requests and how many service providers (AL_ENGINE processes) will be instantiated to service the requests on each job server. You MUST manage the minimum and maximum instances properly in order to gain scalability of the service on each job server. DOP does NOT scale real-time jobs, but the number of s ervice providers (Processes) does. You need to balance loads with memory consumption per physical deployment and number of services a job server is supporting. Recommendation: We recommend using separate job server (physical/virtual) to handle batch processing vs. real-time to help ensure SLA s for real-time requests are met. For further performance

2 Can web service requests be sent directly to the Access Server or go through the web tier from the Load Balancer? Does Job Server return the result set to the calling Web Services? optimization, see SAP BusinessObjects Data Services Performance Optimization Guide and SAP BusinessObjects Data Services Integrator's Guide The load balancer would go before the web server in the case of web service requests, which is implemented via a Java application running on the web server. In the case of the Java/C++ message client, it will work directly with the DS Access Server. Keep in mind that this API s TCP/IP connection is persistent. The Load balancer must maintain the connection to the same access server each time using the load balancers persistent connection capabilities. When using a load balancer with message clients, message clients should be setup to automatically reconnect and retry if a failure occurs. At that point the load balancer will automatically forward the request to an active node to gain a new connection. The load balancer in this case will balance connections across 1-to-many Access Servers but each invoke() call will have to send the request back to the exact same Access Server, which will balance the load across 1-to-many job servers setup as service providers for that service being invoked. Request/response are a continuous flow (synchronous) in and back out through the same processes. It is not asynchronous. However, most web service tool kits provide an asynchronous interface which will provide a call-back and spawn a separate thread to manage the synchronous request to Data Services. Data Services is setup to handle connection failures between application components. The job server and Access Server's availability is ensured by job service, which will be pinging for the servers every 30 sec. If the Access Server stopped for some unknown reason, the Job Service will restart that again. There is parameter in DSConfig.txt to reduce this time, but I think 30 sec is ideal. However the customer should ensure they setup their client to properly manage any failures that could occur due to a connection failure in Data Services which results in an exception on the client or if the connection between the client and web service or Access Server fails. What would be the optimal placement of an access server? How can an external load balancer know that a DS environment is running properly? Place one Access Server on an y one of the Job Servers. As noted above, each Real-Time job is associated with a list of Job Servers where the Real-Time Job, RTJ, can run. So everybody is sending XMLs to the Access Server, and it looks for an idle service provider and sends the XML to that one. For failover you might want to have a second Access Server so at the end you will probably have one Access Server per Job Server and make sure that 1/3 rd of the requests are sent to one of the Access Servers. You scale up you can have 1-many job servers providing services through 1 access server. At some point the Access Server/Web Server could become the bottleneck and thus you may need additional for performance or purely failover needs. As for the SAP connectivity I would use the term RFC. We talk to SAP via the RFC protocol. The access server acts as a software load balancer within the application across 1-to-many job servers setup to handle real-time requests. However the Access Server would be your single point of failure so most customers use a hardware based load balancer. Each load balancer technology has different methodologies for monitoring a particular node (Data Services instance) in a pool to ensure it is accessible. Sometimes it s a simple TCP/IP connection test, other times it s making an HTTP request and analyzing the content returned. Most allow an HTTP request with a given HTTP body and the ability to compare that against a truth string to ensure availability others have the ability to use SNMP a special configuration when calling web services (sending SOAP messages) etc.. The customer will need to ensure they select the best method of monitoring that suits their needs. In general the simple

3 TCP/IP Connection test is just checking the web server for availability but NOT the Access/Job Servers. So the best methodology to have more confidence in a node being up is to create a tes t real-time job with minimal overhead and have the load balancer send a test soap document to the request. A tool like SOAP UI will generate a test input SOAP document and give you the return document to easily configure the load balancer. This works well for the web services interface but will NOT work for the message client libraries. The message is a proprietary binary format and cannot easily be generated by a load balancer to test node availability when connecting directly with the access server. So for now a simple TCP/IP connection test to the access server should suffice. One of the most common devices used by our customers is the F5 Big-IP solution. More details on its monitoring capabilities can be found here: pdf.html/configuration_guide_for_big-ip_local_traffic_management.pdf Can I run DS Web Services on its own server one different server from the job server? Where is the Web Admin configuration saved? How should DS Web Admin server be configured for Real-Time job fail over? Yes. In fact we typically recommend the web server tier be installed on a separate server from the job server tier. We currently do not charge for deploying the web server to different servers customers just pay for the deployment of job servers. Admin.xml and should be behind the firewall. The management console web application and the web services/sap interfaces are all a single intertwined application from an installation perspective and cannot be installed separately. Thus, to setup the management console for high availability/load balancing today you have two options: 1. Install 2 or more environments and pair up the web server instance with it s own access server and 1-many job servers. Setup each environment manually by logging into the management consoles using the direct host name (not through a load balancer). Setup replicated environments in terms of repo s and services. 2. Install the environments and setup 1 environment. Then follow the steps to replicate the configuration of the management console AND the access server (if using real-time services) through copying and modifying the necessary XML files (see the appendix with detail at the end of this document. Customers commonly ask about how they should handle the repository when it comes to ensuring high availability. You have two options: 1. Use the RDBMS vendors failover support such as Oracle RAC if using Oracle. Many customers don t own these features of their RDBMS and are hesitant to invest in this way. From an engineering perspective we re really only done testing with Oracle s RAC capabilities and have not done official testing with any other vendors failover capabilities. 2. If the customer doesn t want to invest in the RDBMS vendors solutions then the second most common methodology is to use 2 or more copies of your production repository 1 copy for each replicated environment. Describe the steps to test Data Services Real-Time You can first test your real-time job in the Designer. Open the reader and loader and specify the

4 job location of an input XML file that matches your defined schema and open the loader and define the location and file name of the output XML file you want it to create. Make sure you specify in the loader to delete and recreate the file or it will append each run of the job into the existing file. Ensure that your output looks correct first when running from the designer. Next test the real-time service through 1 of two ways depending on if the customer will be using the message client libraries OR the web service interface: 1. Message Client libraries In the SDK folder where the message client libraries are installed with Data Services you will find a samples folder. There is some basic sample code for both the Java and C++ API s. Use the samples to test a real-time service if you will be using the message client library. Pre-requisites: 1. Create a Real-Time job and test through the designer 2. Configure a Real-Time service in DS Management Console 3. Modify the sample code to call your real-time service as you named it in the management console and change the input XML to match the schema you defined in Data Services. Ensure that you ve properly defined a namespace in your XSD s that you use as a source and target. 2. Web Services if the customer will be using the web service interface there are many tools out there to perform simple testing without generating the web service clients through a software development tool. There is a great free tool called SOAP UI which is fairly reliable tool for ensuring you web service is working correctly Pre-requisites: 4. Create a Real-Time job and test through the designer 5. Configure a Real-Time service in DS Management Console 6. Add the real-time service as a web service. 7. Install free tool soapui Start soapui and add WSDL URL, i.e. the Real-Time service defined in the Management Console. Expand the job and display default XML. Replace the default XML with the test XML content and run. You will see the result set on the right pane. Also you will see the requests increasing for the real-time service in the DS Management Console for each request Some other very useful tools are XMLSpy which allows you to graphically create XSD s, validate them, and generate sample XML files. SOAPScope is a great tool for testing web services and we ve used this internally many times for testing purposes. This tool isn t all that expensive and can be used for development teams to automate the testing of their services as well. Well worth a look. Over the past many releases we ve ran into a number of issues with the handling of namespaces in web service tools and a few bugs in Data Services that we ve addressed to ensure this works properly whether a customer defines a namespace or not in their XSD s. But the best practice is to always define a namespace for your XSD s. Make sure you do the following: 1. Define a default namespace 2. Define a target namespace (typically the same as the default namespace) 3. Define the elementformdefault attribute of the schema element to be true.

5 Here is an example: <xsd:schema xmlns:xsd=" xmlns=" targetnamespace=" elementformdefault="qualified"> NOTES: 1. Ensure that you are defining unique namespaces for your reader and your loader 2. Ensure that your namespaces are unique across real-time jobs. 3. Your namespace doesn t need to be a URL but that s typically standard as it s an easy way to ensure that you have a unique namespace. It can be any string you want to use. Typically organizations define a standard such as the company domain and different paths after the domain for various groups/applications. Performance Tuning Some main things to watch when it comes to performance: 1. When you create your real-time services the number of Min/Max instances determines how the real-time service will scale up. For each instance 1 AL_ENGINE process is created on the server. Each AL_ENGINE process can handle 1 real-time message request at a time. So you ll want to change these from the default of 1 to something else based on the number of service providers your setting up on each job server and the number of CPU s/cores. 2. Connection Pool there is a connection pool for the web service connections to the access server. The documentation covers the options you ll need to tweak in order to properly manage this pool. We ve seen a few customers that have had to tweak these settings from the defaults in order to further scale up the solution for better throughput. 3. Watch the different statistics in the management console around avg. response times, queue lengths etc. so you can see if requests are piling up in the queues and response times are not in alignment with what you need to meet an SLA. NOTE: The first message request through a given AL_ENGINE process will always take longer than each subsequent request due to a small amount of initialization that can only happen when the first request comes through. That may skew you request times you see in the management console. 4. Each AL_ENGINE process for real-time jobs can take a good amount of memory even for simple jobs so monitor the memory use on the server and ensure you have enough for all the services and the number of service providers (Max/Min settings) you intend to have on a given job server. 5. We typically recommend that customers deploy at least 2 stand alone web/access/job servers to ensure high availability. We typically expect customers to deploy those on servers that are NOT shared with a job server that will be performing batch operations. This recommendation is to ensure that they will meet their performance SLA s for their real-time services by not consuming most if not all of the system resources when running a batch job. However, if a customer will have low or no real-time requests at night and can schedule their batch jobs then there is no reason they couldn t share the same job server for batch/real-time operations. NOTE: If a customer is to have more than 1 environment for HA/LB they will need to pay for the CPU s for each job server they are using ONLY for those job servers that are truly active. If they have an Active/Passive configuration where a particular environment would ONLY be used upon another

6 How do I update my data quality reference data for real-time services? How should a customer setup a load balancer to determine which environments to send requests to? How are RDBMS connections handled when a failure occurs? environment failing they do not have to pay for the passive setup. Typically customers will have 2 or more replicated environments (web/access/job servers) and for each of those environments have a separate file system containing the address directories and potentially a separate cleansing package repository. This way they can bring down 1 environment at a time to update the reference data and the load balancer will automatically send request to the still active environments. There are many ways this can be tackled and each administrator will probably have their own preference but they commonly ask for features in the software to enable them to easily do this. Some common mechanisms we ve seen: 1. Simple open/close a TCP/IP connection to each web server or acc ess server (message client libraries) instance. If it succeeds in making a connection it considers the environment available. 2. Make a web service request (SOAP/HTTP) to the web server to call a simple real-time service. 3. Call the ping real-time service method from the load balancer. 4. Some load balancers also have software daemons which run on the servers where our applications are housed that monitor and report system used back to the load balancer Typically we d recommend #2 and the customer create a very simple job that responds quickly. This is more fool proof than option #1 and #2 since those are really only testing the availability of the web service and not the Access Server or Job Server instances. NOTE: You can configure the Windows Service and unix/linux daemon for DS (which controls BOTH the Access and Job Server) to autorestart if they were to fail for some reason. Also if a service provider (AL_ENGINE instance for a real-time service) fails DS will always start new AL_ENGINE process to maintain at least the minimum number you ve defined for each service. We have a solution to address the loss of repository connections when trying to access the repository during job execution. This covers the following scenarios: 1) Access to repo by DQ transforms (i.e. DQ transform writing data to the repository for report data) 2) General DS accesses to the repository for writing operational metadata to AL_HISTORY, AL_STATISTICS at end of dataflow/job execution. 3) The fix is applicable for both real-time and batch for the above scenarios. In addition, the DB reader for candidate selector (Match transform) is also made connection tolerant in real-time mode. It automatically reconnects a broken connection before processing a real-time message. The supported databases are Oracle, SQLServer, DB2 or MySQL. Due to a technical issue with the client, we cannot support this functionality for Sybase as a repository RDBMS. When connections are lost and reconnecting is taking place, trace will show: Database connection to <sj-asamudra> broken. Retrying with retry count <6> and sleep interval <10>

7 seconds Database connection to <sj-asamudra> broken. Successfully obtained connection after <2> attempts. In the event the db re-connect failure, you will see the following message (this time, it is an error, as the job could not access repo to update al_history) and engine aborts execution: Database connection to <sj-asamudra> broken. Failed to obtain connection after <6> attempts. Please verify that the database server is accessible. Note: You will still see green icon in admin in this case. These database retry s are configurable within the DSConfig file: Recycle_DB_Connection_Retry_Count=6 Recycle_DB_Connection_Retry_Sleep_Interval_In_Seconds=10 Setting Recycle_DB_Connection_Retry_Count=0 will turn-off this feature, useful while testing. Identifying and debugging XML Schema or other web service issues at design time? Sometimes there could be certain issues with the XML schema definitions being used or other problems where the real-time service cannot be properly added to the WSDL. This is not common but has come up a few times. When that happens the key is usually that you won t see your real-time service in the list of real-time services after adding it in the management console. If this happens you should view the WSDL in the management console and you will usually see an error message at the very top about your real-service and what the issue was. If you see this the best thing is to make sure you ve tested your job in the designer and if need be re-add the service. However, you can find additional detail that might be beneficial in some log files on the web service tier: Depending on where the error occurs, the logs should be in $LINK_DIR/log folder. Take a look at webservice.log, webadmin.log or error.log et cetera. These should be submitted to customer support if you re not able to address the issue yourself. How is the number of real-time service providers management with the Min/Max settings? How to replicate the management console and if you are using Real-Time services how to replicate the configuration stored with the Access Server When a real-time service is started the min number of service providers will automatically be started. If the #of service requests in a queue is larger than the # of service providers, it will create new provider instances up until the max instances is reached. If a service provider instance is idle for 10 minutes AND the #of instances is > minimum instances it will shutdown. Scenario: tested the replication of Data Services Web Server Configuration using 2 Servers, following are the steps for that, same steps can be followed for more than 2 servers. See below for more detail. Sample failover / load balancing architecture Visio diagrams are listed at the end of this document. How to replicate the management console and how to replicate the configuration stored with the access server if you re using real-time services:

8 1 Install Data Services Web Server on the 2 different servers (machines) 2 Configure repositories, access server, CMS Connection and other parameter on the Web server 1 (access the Management console by directly connection to this server, don't connect using F5 switch) 3 Stop both the Web servers 4 Copy following files from Web Server 1 from $LINK_DIR/conf to Web Server 2 $LINK_DIR/conf directory a dmin.xml mdreport.ini (if it exists) dqreport.xml (if it exists, this file is created if, function areas, and rules are configured in Data Validation else this file will not be there) sapconnections.xml (if it exists, this file is created if SAP RFC Server Interface is configured, else this file will not be there) 5 After copy is completed, on Web Server 2, open the admin.xml and update the AccessServer details, the access server name and port info will be stored in the XML tag named server-name and server-port in the <accessservers> XML node <server-name>vanpgwin195</server-name> <server-port>4000</server-port> 6 Restart both the Web Server Note:- Do not change any configuration by accessing the management console URL via F5 switch, which can result in configuration files getting out of sync, the other limitation is you will not be able to monitor the real time services from DS Management Console via F5, since the Access Server information for different http session can come from any of the web server, depending on the web server that is processing the request it will display a different access server, and while trying to access the info for RT services the page may give errors The Access Server and real time service configuration is stored in AS.xml file in Access Server directory 1 Start Access Server on Machine 1 2 Configure Real Time Services, by opening the management console directly on the Web server machine to which this Access Server is associated 3 Stop the Access Server on both machines 4 Copy the AS.xml of the Access Server configured on Machine 1 to Access Server directory of Machine 2 5 Change the job server information of each service, the job server info is stored <JobServer> xml tag in th e host and port attributes. Replace the highlighted attributed with the job server host and port of this machine <JobServer connection=" -SVANPGWIN195 -NOracle -UDS122 -P;994973A404D5BDB1552BC53D9587EAFDF3101D2A01633F444501B944F039A864"enabled="1"host="SJ-W-01-TEST"max="1"min="1"port=" 3595"/> 6 Start both the Access servers

9 Useful Diagrams to depict failover/load balancing setup

10

11

FioranoMQ 9. High Availability Guide

FioranoMQ 9. High Availability Guide FioranoMQ 9 High Availability Guide Copyright (c) 1999-2008, Fiorano Software Technologies Pvt. Ltd., Copyright (c) 2008-2009, Fiorano Software Pty. Ltd. All rights reserved. This software is the confidential

More information

Installation Guide for Websphere ND 7.0.0.21

Installation Guide for Websphere ND 7.0.0.21 Informatica MDM Multidomain Edition for Oracle (Version 9.5.1) Installation Guide for Websphere ND 7.0.0.21 Page 1 Table of Contents Preface... 3 Introduction... 4 Before You Begin... 4 Installation Overview...

More information

How To Install An Aneka Cloud On A Windows 7 Computer (For Free)

How To Install An Aneka Cloud On A Windows 7 Computer (For Free) MANJRASOFT PTY LTD Aneka 3.0 Manjrasoft 5/13/2013 This document describes in detail the steps involved in installing and configuring an Aneka Cloud. It covers the prerequisites for the installation, the

More information

Deploying Microsoft Operations Manager with the BIG-IP system and icontrol

Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deployment Guide Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Deploying Microsoft Operations Manager with the BIG-IP system and icontrol Welcome to the BIG-IP LTM system -

More information

Exploring Oracle E-Business Suite Load Balancing Options. Venkat Perumal IT Convergence

Exploring Oracle E-Business Suite Load Balancing Options. Venkat Perumal IT Convergence Exploring Oracle E-Business Suite Load Balancing Options Venkat Perumal IT Convergence Objectives Overview of 11i load balancing techniques Load balancing architecture Scenarios to implement Load Balancing

More information

Running a Workflow on a PowerCenter Grid

Running a Workflow on a PowerCenter Grid Running a Workflow on a PowerCenter Grid 2010-2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014

Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014 Contents Informatica Corporation Proactive Monitoring for PowerCenter Operations Version 3.0 Release Notes May 2014 Copyright (c) 2012-2014 Informatica Corporation. All rights reserved. Installation...

More information

Oracle WebLogic Server 11g Administration

Oracle WebLogic Server 11g Administration Oracle WebLogic Server 11g Administration This course is designed to provide instruction and hands-on practice in installing and configuring Oracle WebLogic Server 11g. These tasks include starting and

More information

The presentation explains how to create and access the web services using the user interface. WebServices.ppt. Page 1 of 14

The presentation explains how to create and access the web services using the user interface. WebServices.ppt. Page 1 of 14 The presentation explains how to create and access the web services using the user interface. Page 1 of 14 The aim of this presentation is to familiarize you with the processes of creating and accessing

More information

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c

Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c Monitoring Oracle Enterprise Performance Management System Release 11.1.2.3 Deployments from Oracle Enterprise Manager 12c This document describes how to set up Oracle Enterprise Manager 12c to monitor

More information

Orchestrating Document and Media Management using CMIS

Orchestrating Document and Media Management using CMIS Orchestrating Document and Media Management using CMIS Technical Note - Integrating ActiveVOS with Alfresco CMIS Services AN ACTIVE ENDPOINTS TECHNICAL NOTE 2009 Active Endpoints Inc. ActiveVOS is a trademark

More information

PUBLIC Management Console Guide

PUBLIC Management Console Guide SAP Data Services Document Version: 4.2 Support Package 7 (14.2.7.0) 2016-05-06 PUBLIC Content 1 Introduction.... 7 1.1 Welcome to SAP Data Services....7 Welcome....7 Documentation set for SAP Data Services....7

More information

Basic TCP/IP networking knowledge of client/server concepts Basic Linux commands and desktop navigation (if don't know we will cover it )

Basic TCP/IP networking knowledge of client/server concepts Basic Linux commands and desktop navigation (if don't know we will cover it ) About Oracle WebLogic Server Oracle WebLogic Server is the industry's best application server for building and deploying enterprise Java EE applications with support for new features for lowering cost

More information

Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1

Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1 Application Discovery Manager User s Guide vcenter Application Discovery Manager 6.2.1 This document supports the version of each product listed and supports all subsequent versions until the document

More information

SAP Business Objects Data Services Setup Guide

SAP Business Objects Data Services Setup Guide Follow the instructions below on how to setup SAP Business Objects Data Services After having the licensed version of SAP BODS XI, Click the installation icon "setup.exe" to launch installer. Click Next

More information

SOA Software: Troubleshooting Guide for Agents

SOA Software: Troubleshooting Guide for Agents SOA Software: Troubleshooting Guide for Agents SOA Software Troubleshooting Guide for Agents 1.1 October, 2013 Copyright Copyright 2013 SOA Software, Inc. All rights reserved. Trademarks SOA Software,

More information

OBIEE 11g Scaleout & Clustering

OBIEE 11g Scaleout & Clustering OBIEE 11g Scaleout & Clustering Borkur Steingrimsson, Rittman Mead Consulting Collaborate, Orlando, April 2011 Agenda Review OBIEE Architecture Installation Scenarios : Desktop, Departmental, Enterprise

More information

Installation and Configuration Guide for Windows and Linux

Installation and Configuration Guide for Windows and Linux Installation and Configuration Guide for Windows and Linux vcenter Operations Manager 5.7 This document supports the version of each product listed and supports all subsequent versions until the document

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Intellicus Cluster and Load Balancer Installation and Configuration Manual Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Copyright 2012

More information

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Application Server 10g

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Application Server 10g DEPLOYMENT GUIDE Version 1.1 Deploying F5 with Oracle Application Server 10g Table of Contents Table of Contents Introducing the F5 and Oracle 10g configuration Prerequisites and configuration notes...1-1

More information

Oracle Service Bus Examples and Tutorials

Oracle Service Bus Examples and Tutorials March 2011 Contents 1 Oracle Service Bus Examples... 2 2 Introduction to the Oracle Service Bus Tutorials... 5 3 Getting Started with the Oracle Service Bus Tutorials... 12 4 Tutorial 1. Routing a Loan

More information

Qualogy 2014-08-29 M. Schildmeijer. Whitepaper Oracle Exalogic FMW Optimization

Qualogy 2014-08-29 M. Schildmeijer. Whitepaper Oracle Exalogic FMW Optimization Qualogy 2014-08-29 M. Schildmeijer Whitepaper Oracle Exalogic FMW Optimization 1 Inhoudsopgave 1. Preface... 3 2. WebLogic Domain Level... 4 2.1 Domain Enhancements... 4 2.2 JDBC SDP enhancement... 4 2.3

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

XpoLog Competitive Comparison Sheet

XpoLog Competitive Comparison Sheet XpoLog Competitive Comparison Sheet New frontier in big log data analysis and application intelligence Technical white paper May 2015 XpoLog, a data analysis and management platform for applications' IT

More information

LOAD BALANCING TECHNIQUES FOR RELEASE 11i AND RELEASE 12 E-BUSINESS ENVIRONMENTS

LOAD BALANCING TECHNIQUES FOR RELEASE 11i AND RELEASE 12 E-BUSINESS ENVIRONMENTS LOAD BALANCING TECHNIQUES FOR RELEASE 11i AND RELEASE 12 E-BUSINESS ENVIRONMENTS Venkat Perumal IT Convergence Introduction Any application server based on a certain CPU, memory and other configurations

More information

CHAPTER 1 - JAVA EE OVERVIEW FOR ADMINISTRATORS

CHAPTER 1 - JAVA EE OVERVIEW FOR ADMINISTRATORS CHAPTER 1 - JAVA EE OVERVIEW FOR ADMINISTRATORS Java EE Components Java EE Vendor Specifications Containers Java EE Blueprint Services JDBC Data Sources Java Naming and Directory Interface Java Message

More information

E-mail Listeners. E-mail Formats. Free Form. Formatted

E-mail Listeners. E-mail Formats. Free Form. Formatted E-mail Listeners 6 E-mail Formats You use the E-mail Listeners application to receive and process Service Requests and other types of tickets through e-mail in the form of e-mail messages. Using E- mail

More information

ActiveVOS Clustering with JBoss

ActiveVOS Clustering with JBoss Clustering with JBoss Technical Note Version 1.2 29 December 2011 2011 Active Endpoints Inc. is a trademark of Active Endpoints, Inc. All other company and product names are the property of their respective

More information

Informatica Master Data Management Multi Domain Hub API: Performance and Scalability Diagnostics Checklist

Informatica Master Data Management Multi Domain Hub API: Performance and Scalability Diagnostics Checklist Informatica Master Data Management Multi Domain Hub API: Performance and Scalability Diagnostics Checklist 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any

More information

WEBLOGIC ADMINISTRATION

WEBLOGIC ADMINISTRATION WEBLOGIC ADMINISTRATION Session 1: Introduction Oracle Weblogic Server Components Java SDK and Java Enterprise Edition Application Servers & Web Servers Documentation Session 2: Installation System Configuration

More information

SAP Data Services and SAP Information Steward Document Version: 4.2 Support Package 7 (14.2.7.0) 2016-05-06 PUBLIC. Master Guide

SAP Data Services and SAP Information Steward Document Version: 4.2 Support Package 7 (14.2.7.0) 2016-05-06 PUBLIC. Master Guide SAP Data Services and SAP Information Steward Document Version: 4.2 Support Package 7 (14.2.7.0) 2016-05-06 PUBLIC Content 1 Getting Started....4 1.1 Products Overview.... 4 1.2 Components overview....4

More information

Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services

Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services Deployment Guide Deploying the BIG-IP System with Microsoft Windows Server 2003 Terminal Services Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services Welcome to the BIG-IP

More information

BES12 Frequently Asked Questions. BEs12. questions. FAQs

BES12 Frequently Asked Questions. BEs12. questions. FAQs 1 BEs12 Frequently asked questions FAQs 2 Contents Overview... 3 Pricing... 4 Technical: Upgrade, Migration & Installation... 5 Additional Migration Questions... 10 Installation... 11 System... 12 BES5

More information

MagDiSoft Web Solutions Office No. 102, Bramha Majestic, NIBM Road Kondhwa, Pune -411048 Tel: 808-769-4605 / 814-921-0979 www.magdisoft.

MagDiSoft Web Solutions Office No. 102, Bramha Majestic, NIBM Road Kondhwa, Pune -411048 Tel: 808-769-4605 / 814-921-0979 www.magdisoft. WebLogic Server Course Following is the list of topics that will be covered during the course: Introduction to WebLogic What is Java? What is Java EE? The Java EE Architecture Enterprise JavaBeans Application

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Administrator s Guide for Oracle Enterprise Scheduling Service 11g Release 1 (11.1.1.6.0) E24712-01 November 2011 Documentation for administrators that describes how to define,

More information

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc.

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc. WA2088 WebSphere Application Server 8.5 Administration on Windows Student Labs Web Age Solutions Inc. Copyright 2013 Web Age Solutions Inc. 1 Table of Contents Directory Paths Used in Labs...3 Lab Notes...4

More information

Setting Up B2B Data Exchange for High Availability in an Active/Active Configuration

Setting Up B2B Data Exchange for High Availability in an Active/Active Configuration Setting Up B2B Data Exchange for High Availability in an Active/Active Configuration 2010 Informatica Abstract This document explains how to install multiple copies of B2B Data Exchange on a single computer.

More information

bbc Adobe LiveCycle Data Services Using the F5 BIG-IP LTM Introduction APPLIES TO CONTENTS

bbc Adobe LiveCycle Data Services Using the F5 BIG-IP LTM Introduction APPLIES TO CONTENTS TECHNICAL ARTICLE Adobe LiveCycle Data Services Using the F5 BIG-IP LTM Introduction APPLIES TO Adobe LiveCycle Enterprise Suite CONTENTS Introduction................................. 1 Edge server architecture......................

More information

HP Client Automation Standard Fast Track guide

HP Client Automation Standard Fast Track guide HP Client Automation Standard Fast Track guide Background Client Automation Version This document is designed to be used as a fast track guide to installing and configuring Hewlett Packard Client Automation

More information

Installation and Configuration Guide for Windows and Linux

Installation and Configuration Guide for Windows and Linux Installation and Configuration Guide for Windows and Linux vcenter Operations Manager 5.0.3 This document supports the version of each product listed and supports all subsequent versions until the document

More information

Course Description. Course Audience. Course Outline. Course Page - Page 1 of 5

Course Description. Course Audience. Course Outline. Course Page - Page 1 of 5 Course Page - Page 1 of 5 WebSphere Application Server 7.0 Administration on Windows BSP-1700 Length: 5 days Price: $ 2,895.00 Course Description This course teaches the basics of the administration and

More information

RTI v3.3 Lightweight Deep Diagnostics for LoadRunner

RTI v3.3 Lightweight Deep Diagnostics for LoadRunner RTI v3.3 Lightweight Deep Diagnostics for LoadRunner Monitoring Performance of LoadRunner Transactions End-to-End This quick start guide is intended to get you up-and-running quickly analyzing Web Performance

More information

Instant Chime for IBM Sametime High Availability Server Guide

Instant Chime for IBM Sametime High Availability Server Guide Instant Chime for IBM Sametime High Availability Server Guide Fall 2014 Page 1 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant

More information

WEBAPP PATTERN FOR APACHE TOMCAT - USER GUIDE

WEBAPP PATTERN FOR APACHE TOMCAT - USER GUIDE WEBAPP PATTERN FOR APACHE TOMCAT - USER GUIDE Contents 1. Pattern Overview... 3 Features 3 Getting started with the Web Application Pattern... 3 Accepting the Web Application Pattern license agreement...

More information

No.1 IT Online training institute from Hyderabad Email: info@sriramtechnologies.com URL: sriramtechnologies.com

No.1 IT Online training institute from Hyderabad Email: info@sriramtechnologies.com URL: sriramtechnologies.com I. Basics 1. What is Application Server 2. The need for an Application Server 3. Java Application Solution Architecture 4. 3-tier architecture 5. Various commercial products in 3-tiers 6. The logic behind

More information

Installation Guide NetIQ AppManager

Installation Guide NetIQ AppManager Installation Guide NetIQ AppManager April 2016 www.netiq.com/documentation Legal Notice NetIQ AppManager is covered by United States Patent No(s): 05829001, 05986653, 05999178, 06078324, 06397359, 06408335.

More information

How To Choose Between A Relational Database Service From Aws.Com

How To Choose Between A Relational Database Service From Aws.Com The following text is partly taken from the Oracle book Middleware and Cloud Computing It is available from Amazon: http://www.amazon.com/dp/0980798000 Cloud Databases and Oracle When designing your cloud

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

SOA Software: Troubleshooting Guide for Policy Manager for DataPower

SOA Software: Troubleshooting Guide for Policy Manager for DataPower SOA Software: Troubleshooting Guide for Policy Manager for DataPower Troubleshooting Guide for Policy Manager for DataPower 1 SOA Software Policy Manager Troubleshooting Guide for Policy Manager for DataPower

More information

PHP on IBM i: What s New with Zend Server 5 for IBM i

PHP on IBM i: What s New with Zend Server 5 for IBM i PHP on IBM i: What s New with Zend Server 5 for IBM i Mike Pavlak Solutions Consultant mike.p@zend.com (815) 722 3454 Function Junction Audience Used PHP in Zend Core/Platform New to Zend PHP Looking to

More information

Spectrum Technology Platform. Version 9.0. Spectrum Spatial Administration Guide

Spectrum Technology Platform. Version 9.0. Spectrum Spatial Administration Guide Spectrum Technology Platform Version 9.0 Spectrum Spatial Administration Guide Contents Chapter 1: Introduction...7 Welcome and Overview...8 Chapter 2: Configuring Your System...9 Changing the Default

More information

Rajesh Gupta Best Practices for SAP BusinessObjects Backup & Recovery Including High Availability and Disaster Recovery Session #2747

Rajesh Gupta Best Practices for SAP BusinessObjects Backup & Recovery Including High Availability and Disaster Recovery Session #2747 Rajesh Gupta Best Practices for SAP BusinessObjects Backup & Recovery Including High Availability and Disaster Recovery Session #2747 Introduction Rajesh Gupta - rajgupta@deloitte.com Solution Network

More information

Deploying System Center 2012 R2 Configuration Manager

Deploying System Center 2012 R2 Configuration Manager Deploying System Center 2012 R2 Configuration Manager This document is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED, OR STATUTORY, AS TO THE INFORMATION IN THIS DOCUMENT.

More information

White Paper. The Ten Features Your Web Application Monitoring Software Must Have. Executive Summary

White Paper. The Ten Features Your Web Application Monitoring Software Must Have. Executive Summary White Paper The Ten Features Your Web Application Monitoring Software Must Have Executive Summary It s hard to find an important business application that doesn t have a web-based version available and

More information

Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide

Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Windows 2000, Windows Server 2003 5.0 11293743 Veritas Cluster Server Database Agent for Microsoft SQL Configuration Guide Copyright

More information

Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0

Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Enhanced Connector Applications SupportPac VP01 for IBM WebSphere Business Events 3.0.0 Third edition (May 2012). Copyright International Business Machines Corporation 2012. US Government Users Restricted

More information

Active-Active and High Availability

Active-Active and High Availability Active-Active and High Availability Advanced Design and Setup Guide Perceptive Content Version: 7.0.x Written by: Product Knowledge, R&D Date: July 2015 2015 Perceptive Software. All rights reserved. Lexmark

More information

Oracle WebLogic Server 11g: Administration Essentials

Oracle WebLogic Server 11g: Administration Essentials Oracle University Contact Us: 1.800.529.0165 Oracle WebLogic Server 11g: Administration Essentials Duration: 5 Days What you will learn This Oracle WebLogic Server 11g: Administration Essentials training

More information

Oracle Data Integrator for Big Data. Alex Kotopoulis Senior Principal Product Manager

Oracle Data Integrator for Big Data. Alex Kotopoulis Senior Principal Product Manager Oracle Data Integrator for Big Data Alex Kotopoulis Senior Principal Product Manager Hands on Lab - Oracle Data Integrator for Big Data Abstract: This lab will highlight to Developers, DBAs and Architects

More information

SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ

SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ (Delta from SPS 08 to SPS 09) SAP HANA Product Management November, 2014 2014 SAP SE or an SAP affiliate company. All rights reserved. 1 Agenda

More information

XTM Web 2.0 Enterprise Architecture Hardware Implementation Guidelines. A.Zydroń 18 April 2009. Page 1 of 12

XTM Web 2.0 Enterprise Architecture Hardware Implementation Guidelines. A.Zydroń 18 April 2009. Page 1 of 12 XTM Web 2.0 Enterprise Architecture Hardware Implementation Guidelines A.Zydroń 18 April 2009 Page 1 of 12 1. Introduction...3 2. XTM Database...4 3. JVM and Tomcat considerations...5 4. XTM Engine...5

More information

Enterprise Application Monitoring with

Enterprise Application Monitoring with Enterprise Application Monitoring with 11/10/2007 Presented by James Peel james.peel@altinity.com / www.altinity.com 1 Who am I? James Peel - james.peel@altinity.com Job: Managing Director of Altinity

More information

WSO2 Business Process Server Clustering Guide for 3.2.0

WSO2 Business Process Server Clustering Guide for 3.2.0 WSO2 Business Process Server Clustering Guide for 3.2.0 Throughout this document we would refer to WSO2 Business Process server as BPS. Cluster Architecture Server clustering is done mainly in order to

More information

whitepaper SolarWinds Integration with 3rd Party Products Overview

whitepaper SolarWinds Integration with 3rd Party Products Overview SolarWinds Integration with 3rd Party Products Overview This document is intended to provide a technical overview of the integration capabilities of SolarWinds products that are based on the Orion infrastructure.

More information

ibolt V3.2 Release Notes

ibolt V3.2 Release Notes ibolt V3.2 Release Notes Welcome to ibolt V3.2, which has been designed to deliver an easy-touse, flexible, and cost-effective business integration solution. This document highlights the new and enhanced

More information

Real-time Data Replication

Real-time Data Replication Real-time Data Replication from Oracle to other databases using DataCurrents WHITEPAPER Contents Data Replication Concepts... 2 Real time Data Replication... 3 Heterogeneous Data Replication... 4 Different

More information

Oracle Data Integrator 11g New Features & OBIEE Integration. Presented by: Arun K. Chaturvedi Business Intelligence Consultant/Architect

Oracle Data Integrator 11g New Features & OBIEE Integration. Presented by: Arun K. Chaturvedi Business Intelligence Consultant/Architect Oracle Data Integrator 11g New Features & OBIEE Integration Presented by: Arun K. Chaturvedi Business Intelligence Consultant/Architect Agenda 01. Overview & The Architecture 02. New Features Productivity,

More information

i2b2 Installation Guide

i2b2 Installation Guide Informatics for Integrating Biology and the Bedside i2b2 Installation Guide i2b2 Server and Clients Document Version: 1.7.00-003 Document Management Revision Number Date Author Comment 1.7.00-001 03/06/2014

More information

Deep Dive Monitoring Servers using BI 4.1. Alan Mayer Solid Ground Technologies SESSION CODE: 0305

Deep Dive Monitoring Servers using BI 4.1. Alan Mayer Solid Ground Technologies SESSION CODE: 0305 Deep Dive Monitoring Servers using BI 4.1 Alan Mayer Solid Ground Technologies SESSION CODE: 0305 AGENDA Introduction Definitions and Architecture Configuration Metrics Watches and Alerts Probes Reporting

More information

ITG Software Engineering

ITG Software Engineering IBM WebSphere Administration 8.5 Course ID: Page 1 Last Updated 12/15/2014 WebSphere Administration 8.5 Course Overview: This 5 Day course will cover the administration and configuration of WebSphere 8.5.

More information

Introducing the BIG-IP and SharePoint Portal Server 2003 configuration

Introducing the BIG-IP and SharePoint Portal Server 2003 configuration Deployment Guide Deploying Microsoft SharePoint Portal Server 2003 and the F5 BIG-IP System Introducing the BIG-IP and SharePoint Portal Server 2003 configuration F5 and Microsoft have collaborated on

More information

Deploying the BIG-IP System with Oracle E-Business Suite 11i

Deploying the BIG-IP System with Oracle E-Business Suite 11i Deploying the BIG-IP System with Oracle E-Business Suite 11i Introducing the BIG-IP and Oracle 11i configuration Configuring the BIG-IP system for deployment with Oracle 11i Configuring the BIG-IP system

More information

MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM?

MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM? MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM? Ashutosh Shinde Performance Architect ashutosh_shinde@hotmail.com Validating if the workload generated by the load generating tools is applied

More information

GlobalSCAPE DMZ Gateway, v1. User Guide

GlobalSCAPE DMZ Gateway, v1. User Guide GlobalSCAPE DMZ Gateway, v1 User Guide GlobalSCAPE, Inc. (GSB) Address: 4500 Lockhill-Selma Road, Suite 150 San Antonio, TX (USA) 78249 Sales: (210) 308-8267 Sales (Toll Free): (800) 290-5054 Technical

More information

Glassfish Architecture.

Glassfish Architecture. Glassfish Architecture. First part Introduction. Over time, GlassFish has evolved into a server platform that is much more than the reference implementation of the Java EE specifcations. It is now a highly

More information

An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide

An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide An Oracle White Paper July 2011 1 Disclaimer The following is intended to outline our general product direction.

More information

DEPLOYMENT GUIDE Version 1.2. Deploying F5 with Oracle E-Business Suite 12

DEPLOYMENT GUIDE Version 1.2. Deploying F5 with Oracle E-Business Suite 12 DEPLOYMENT GUIDE Version 1.2 Deploying F5 with Oracle E-Business Suite 12 Table of Contents Table of Contents Introducing the BIG-IP LTM Oracle E-Business Suite 12 configuration Prerequisites and configuration

More information

Deploying Remote Desktop Connection Broker with High Availability Step-by-Step Guide

Deploying Remote Desktop Connection Broker with High Availability Step-by-Step Guide Deploying Remote Desktop Connection Broker with High Availability Step-by-Step Guide Microsoft Corporation Published: May 2010 Abstract This guide describes the steps for configuring Remote Desktop Connection

More information

Authoring for System Center 2012 Operations Manager

Authoring for System Center 2012 Operations Manager Authoring for System Center 2012 Operations Manager Microsoft Corporation Published: November 1, 2013 Authors Byron Ricks Applies To System Center 2012 Operations Manager System Center 2012 Service Pack

More information

Siemens PLM Connection. Mark Ludwig

Siemens PLM Connection. Mark Ludwig Siemens PLM Connection High Availability of Teamcenter Enterprise Mark Ludwig Copyright Siemens Copyright PLM Software Siemens Inc. AG 2008. All rights reserved. Teamcenter Digital Lifecycle Management

More information

OpenTOSCA Release v1.1. Contact: info@opentosca.org Documentation Version: March 11, 2014 Current version: http://files.opentosca.

OpenTOSCA Release v1.1. Contact: info@opentosca.org Documentation Version: March 11, 2014 Current version: http://files.opentosca. OpenTOSCA Release v1.1 Contact: info@opentosca.org Documentation Version: March 11, 2014 Current version: http://files.opentosca.de NOTICE This work has been supported by the Federal Ministry of Economics

More information

Using Actian PSQL as a Data Store with VMware vfabric SQLFire. Actian PSQL White Paper May 2013

Using Actian PSQL as a Data Store with VMware vfabric SQLFire. Actian PSQL White Paper May 2013 Using Actian PSQL as a Data Store with VMware vfabric SQLFire Actian PSQL White Paper May 2013 Contents Introduction... 3 Prerequisites and Assumptions... 4 Disclaimer... 5 Demonstration Steps... 5 1.

More information

Oracle Communications WebRTC Session Controller: Basic Admin. Student Guide

Oracle Communications WebRTC Session Controller: Basic Admin. Student Guide Oracle Communications WebRTC Session Controller: Basic Admin Student Guide Edition 1.0 April 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved. Disclaimer This document contains proprietary

More information

FioranoMQ 9. High Availability Guide

FioranoMQ 9. High Availability Guide FioranoMQ 9 High Availability Guide Entire contents Fiorano Software and Affiliates. All rights reserved. Reproduction of this document in any form without prior written permission is forbidden. The information

More information

WebSphere Business Monitor V7.0 Configuring a remote CEI server

WebSphere Business Monitor V7.0 Configuring a remote CEI server Copyright IBM Corporation 2010 All rights reserved WebSphere Business Monitor V7.0 What this exercise is about... 2 Lab requirements... 2 What you should be able to do... 2 Introduction... 3 Part 1: Install

More information

Configuring the BIG-IP system for FirePass controllers

Configuring the BIG-IP system for FirePass controllers Deployment Guide Configuring the BIG-IP System with FirePass Controllers for Load Balancing and SSL Offload Configuring the BIG-IP system for FirePass controllers Welcome to the Configuring the BIG-IP

More information

KofaxReporting. Administrator's Guide 1.0.0 2012-04-13

KofaxReporting. Administrator's Guide 1.0.0 2012-04-13 KofaxReporting 1.0.0 Administrator's Guide 2012-04-13 2012 Kofax, Inc. All rights reserved. Use is subject to license terms. Third-party software is copyrighted and licensed from Kofax s suppliers. THIS

More information

WebLogic Server Foundation Topology, Configuration and Administration

WebLogic Server Foundation Topology, Configuration and Administration WebLogic Server Foundation Topology, Configuration and Administration Duško Vukmanović Senior Sales Consultant Agenda Topology Domain Server Admin Server Managed Server Cluster Node

More information

WhatsUp Gold v16.3 Installation and Configuration Guide

WhatsUp Gold v16.3 Installation and Configuration Guide WhatsUp Gold v16.3 Installation and Configuration Guide Contents Installing and Configuring WhatsUp Gold using WhatsUp Setup Installation Overview... 1 Overview... 1 Security considerations... 2 Standard

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

Scheduling in SAS 9.3

Scheduling in SAS 9.3 Scheduling in SAS 9.3 SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc 2011. Scheduling in SAS 9.3. Cary, NC: SAS Institute Inc. Scheduling in SAS 9.3

More information

What s Cool in the SAP JVM (CON3243)

What s Cool in the SAP JVM (CON3243) What s Cool in the SAP JVM (CON3243) Volker Simonis, SAP SE September, 2014 Public Agenda SAP JVM Supportability SAP JVM Profiler SAP JVM Debugger 2014 SAP SE. All rights reserved. Public 2 SAP JVM SAP

More information

NMS300 Network Management System

NMS300 Network Management System NMS300 Network Management System User Manual June 2013 202-11289-01 350 East Plumeria Drive San Jose, CA 95134 USA Support Thank you for purchasing this NETGEAR product. After installing your device, locate

More information

Google Cloud Print Administrator Configuration Guide

Google Cloud Print Administrator Configuration Guide Google Cloud Print Administrator Configuration Guide 1 December, 2014 Advanced Customer Technologies Ricoh AMERICAS Holdings, Inc. Table of Contents Scope and Purpose... 4 Overview... 4 System Requirements...

More information

BI4.x Architecture SAP CEG & GTM BI

BI4.x Architecture SAP CEG & GTM BI BI4.x Architecture SAP CEG & GTM BI Planning, deployment, configuration 2015 SAP SE or an SAP affiliate company. All rights reserved. Internal Public 2 What are the conceptual tiers in a BIPlatform? 2015

More information

Database Administration

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

More information

Mark Bennett. Search and the Virtual Machine

Mark Bennett. Search and the Virtual Machine Mark Bennett Search and the Virtual Machine Agenda Intro / Business Drivers What to do with Search + Virtual What Makes Search Fast (or Slow!) Virtual Platforms Test Results Trends / Wrap Up / Q & A Business

More information

Supporting Large-scale Deployments through Virtual Directory Technology. A White Paper by Phil Hunt Director, Product Management, OctetString, Inc.

Supporting Large-scale Deployments through Virtual Directory Technology. A White Paper by Phil Hunt Director, Product Management, OctetString, Inc. Supporting Large-scale Deployments through Virtual Directory Technology A White Paper by Phil Hunt Director, Product Management, OctetString, Inc. February 2004 Table of Contents Introduction... 2 Clogged

More information

High Availability with Postgres Plus Advanced Server. An EnterpriseDB White Paper

High Availability with Postgres Plus Advanced Server. An EnterpriseDB White Paper High Availability with Postgres Plus Advanced Server An EnterpriseDB White Paper For DBAs, Database Architects & IT Directors December 2013 Table of Contents Introduction 3 Active/Passive Clustering 4

More information

$99.95 per user. SQL Server 2005 Database Administration CourseId: 152 Skill level: 200-500 Run Time: 30+ hours (158 videos)

$99.95 per user. SQL Server 2005 Database Administration CourseId: 152 Skill level: 200-500 Run Time: 30+ hours (158 videos) Course Description This popular LearnItFirst.com course is a soup-to-nuts course that will teach you how to choose your edition, install, configure and manage any edition of. You ll learn the details of

More information