Using Oracle TimesTen to Deploy Low Latency VOIP Applications in Remote Sites

Size: px
Start display at page:

Download "Using Oracle TimesTen to Deploy Low Latency VOIP Applications in Remote Sites"

Transcription

1 Using Oracle TimesTen to Deploy Low Latency VOIP Applications in Remote Sites Thomas Lynn Comcast National Engineering & Technical Operations October 009

2 Comcast Digital Voice (CDV) Comcast Digital Voice has become the third largest residential phone service provider in the U.S. 7 million customers 80+ VOIP switches deployed across the united states VOIP Application Background Comcast had a need to build a VOIP application server to support the needs of multiple value added applications Universal Caller ID (UCID) is first in the deployment list UCID provides a link between Comcast s Digital Voice, Digital Cable and High-Speed Internet offerings UCID provides caller id on televisions through Digital Cable and PCs with a small downloadable client UCID is deployed on a general purpose Communications Application Server infrastructure Communications Applications Server (CAS) Some CAS applications deployed including UCID would need to be part of the Session Initiation Protocol (SIP) call flow Applications that are part of SIP call flow can increase call connect times Call connection times relate directly to customer perception of CDV quality Low internal application latency was deemed to be extremely important to maintain customer satisfaction

3 Applications In The SIP Call Flow Simplified VOIP Call Flow. The calling party s VOIP Phone contacts Originating VOIP Switch. Originating VOIP Switch determines destination and contacts Terminating VOIP Switch 3. Terminating VOIP Switch contacts the destination party s VOIP Phone Simplified VOIP Call Flow with UCID. The calling party s VOIP Phone contacts the Originating VOIP switch. Originating VOIP Switch determines destination and contacts the Terminating VOIP Switch 3. Terminating VOIP Switch determines the call should be routed to CAS and contacts CAS 4. CAS performs determination of customer services and responds to the Terminating VOIP Switch 5. The Terminating VOIP Switch contacts the destination party s CDV phone 6. Once the destination phone rings, UCID contacts the destination party s TV and PC Application transactions in the SIP call flow must be fast to add value and not detract from quality 3

4 Communications Application Server Topology Multiple site deployments near customers were deemed necessary to eliminate the possibility of network latency Many other steps were taken to reduce application latency, one of them was database architecture Application Response Time of less than 00ms is necessary to maintain high quality connect times Database Requirements To reduce application latency and drive call quality, a local data source at each site makes sense Centralized data for ease of administration Geo-Redundancy High Availability Internal Site Redundancy Response time of less than 0ms Meeting The Requirements TimesTen meets the needs of real time queries Cache Connect to Oracle meets the centralized and localized strategy at the same time Oracle Data Guard serves the Geo-Redundancy requirements Oracle RAC provides high availability Data In The Application Layer Reduces Latency Observed local query time sec/query Observed WAN query time sec/query RAC DB EAST RAC DB WEST 4

5 Meeting internal site redundancy requirements Once data is replicated into the site, a second strategy was required to meet site redundancy requirements TimesTen Active Standby Pair with Subscribers was decided upon because it provided the ability to maintain replicas of the cached data the site As data enters the site from Oracle Cache Connect it is committed to the Standby Master first, this ensures that the Standby is always up to date and can take over for the Master without complete cache reload The Master is then committed Finally the subscribers replicate via the Standby since it contains the most accurate cache in the site Active Subscriber 0g Database Standby Subscriber Cache Connect TimesTen Replication Application Data Source Strategy In order to maintain speed in the application layer and add redundancy, applications must have built in data source failover with priority One of the reasons TimesTen is so fast is that the applications reside on the same server as the database No network protocol overhead for local queries Applications should prioritize data sources and always select local sources over remote 5

6 Table Structure Cache Replication Cache Connect to Oracle allows for simple and accurate replication strategies Cache Connect groups can follow Primary Key / Foreign Key table design in Oracle source database tables Cache groups can be built with a tiered structure that allows multiple tables to replicate together in single transactions, this allows TimesTen to mimic constraints in Oracle and replicate data without constraint errors If there are requirements for data to differ from site to site there is a filtering ability in cache groups that allows for data from all sites to be stored centrally but filtered by Cache Connect If cache group filters are applied on parent tables in the cache, only data linked to that parent will be replicated based on the PK/FK relationship 6

7 Cache Connect Replication With Where Clause allows for data from all sites to be stored in the same central tables but replicate to only desired sites TimesTen SITE SITEID Oracle Source Tables SITE SITENAME Philadelphia San Francisco SITEID TEL SITE SITENAME Philadelphia CUSTOMERS ADDRESS ZIP SITEID CUSTOMERS nowhere TEL ADDRESS ZIP SITEID nowhere nowhere nowhere nowhere nowhere TimesTen SITE nowhere 55 nowhere 66 nowhere SITEID SITE SITENAME San Francisco Cache Tables Creation Syntax CALLID.SITE ( SITEID NUMBER(38) NOT NULL, SITENAME VARCHAR(30 BYTE) INLINE NOT NULL, primary key (SITEID)) where (CALLID.SITE.SITEID=), CALLID.CUSTOMERS ( TEL VARCHAR(0 BYTE) INLINE NOT NULL, ADDRESS VARCHAR(30 BYTE) INLINE, ZIP VARCHAR(0 BYTE) INLINE, SITEID NUMBER(38), primary key (TEL), foreign key (SITEID) references CALLID.SITE (SITEID)) TEL CUSTOMERS ADDRESS nowhere 44 nowhere 66 nowhere ZIP SITEID 7

8 Putting It All Together In Clusters Enhances Built in Redundancy In order to ease maintenance CAS has been separated into multiple functional units or clusters per site Each unit can stand alone to serve SIP requests during maintenance windows The following possibilities can be overcome with little affect when running in a mode such as this: Loss of Network Connection to Oracle Source DB Loss of Active Master Loss of Standby Master Loss of Subscriber Load Balancer Data Guard 8

9 Built in Redundancy: Loss of Network Connection to Oracle DB During network outage to the Source Database only updates are lost to the site The Site can run as a stand alone entity for hours or days if necessary Triggers created by Cache Connect maintain change records in intermediate tables on the Source Database Once connection is restored, TimesTen will receive incremental changes from Oracle Load Balancer Data Guard 9

10 Built in Redundancy: Loss of Active Master Active master loss can be overcome by elevating the Standby to Master Since the Standby is Committed before the Master, it is always the most accurate copy in the site so only incremental changes are required Applications that were locally connected to the master on must gracefully failover to In this case minimal query latency will be introduced on due to network protocol overhead and LAN latency Load Balancer Data Guard 0

11 Built in Redundancy: Loss of Standby Standby failure can be overcome by replicating the Subscribers directly from the Master When the Standby is inactive, the Master will commit first Applications that were locally connected to must gracefully failover to In this case minimal query latency will be introduced on due to network protocol overhead and LAN latency Load Balancer Data Guard

12 Built in Redundancy: Loss of Subscriber Subscriber Loss is the most simplistic case since these data stores only pull data incrementally from the Master or Standby Subscribers have no interaction with Oracle so there are no concerns with the incremental state of Cache Connect Applications that were locally connected to the failed instance must failover and minimal latency is introduced on the affected server Load Balancer Data Guard

13 Built in Redundancy: Ease of Maintenance To perform maintenance on sites, load can be redirected to, this creates an application snapshot in Cluster which continues to serve subscribers while is modified Schema changes could occur in Oracle Source Tables Complete rebuilds of cache groups could occur New applications could be installed If source table changes occur in Oracle, full cache table rebuilds must occur so that triggers can be validated Load Balancer Data Guard 3

14 Built in Redundancy: Ease of Maintenance Load Balancer Once initial maintenance is complete, traffic can be repointed to while is modified Data Guard 4

15 Issues Encountered / Fixes Cache Groups should always be dropped when shutting down sites for extended periods of time, or decommissioning, if this is not performed intermediate tables will grow infinitely or until tablespace is full tracking the incremental changes in Oracle Tracking down TimesTen sites that are causing intermediate table growth is relatively simple Determine the intermediate table tt_03_{number}_l causing db load select * from tt_03_agent_status where object_id = {same number as table} order by bookmark; The lowest bookmark should be the site with issues Reconnecting Cache Connect will cause intermediate table cleanup Even minor modifications to Source Table Schema require complete Cache Group rebuild else logs will complain about validity Conclusion TimesTen with Cache Connect to Oracle allows us to meet our strict latency requirements Simplifies redundancy Provides ease of site specific data replication TimesTen with Cache Connect provides an excellent way to maintain a centralized database with datasources at the edge 5

Contents. Foreword. Acknowledgments

Contents. Foreword. Acknowledgments Foreword Preface Acknowledgments xv xvii xviii CHAPTER 1 Introduction 1 1.1 What Is Mission Critical? 1 1.2 Purpose of the Book 2 1.3 Network Continuity Versus Disaster Recovery 2 1.4 The Case for Mission-Critical

More information

Disaster Recovery for Oracle Database

Disaster Recovery for Oracle Database Disaster Recovery for Oracle Database Zero Data Loss Recovery Appliance, Active Data Guard and Oracle GoldenGate ORACLE WHITE PAPER APRIL 2015 Overview Oracle Database provides three different approaches

More information

ETM System SIP Trunk Support Technical Discussion

ETM System SIP Trunk Support Technical Discussion ETM System SIP Trunk Support Technical Discussion Release 6.0 A product brief from SecureLogix Corporation Rev C SIP Trunk Support in the ETM System v6.0 Introduction Today s voice networks are rife with

More information

High Availability Databases based on Oracle 10g RAC on Linux

High Availability Databases based on Oracle 10g RAC on Linux High Availability Databases based on Oracle 10g RAC on Linux WLCG Tier2 Tutorials, CERN, June 2006 Luca Canali, CERN IT Outline Goals Architecture of an HA DB Service Deployment at the CERN Physics Database

More information

Cisco Active Network Abstraction Gateway High Availability Solution

Cisco Active Network Abstraction Gateway High Availability Solution . Cisco Active Network Abstraction Gateway High Availability Solution White Paper This white paper describes the Cisco Active Network Abstraction (ANA) Gateway High Availability solution developed and

More information

CS514: Intermediate Course in Computer Systems

CS514: Intermediate Course in Computer Systems : Intermediate Course in Computer Systems Lecture 7: Sept. 19, 2003 Load Balancing Options Sources Lots of graphics and product description courtesy F5 website (www.f5.com) I believe F5 is market leader

More information

<Insert Picture Here> Oracle In-Memory Database Cache Overview

<Insert Picture Here> Oracle In-Memory Database Cache Overview Oracle In-Memory Database Cache Overview Simon Law Product Manager The following is intended to outline our general product direction. It is intended for information purposes only,

More information

Module 14: Scalability and High Availability

Module 14: Scalability and High Availability Module 14: Scalability and High Availability Overview Key high availability features available in Oracle and SQL Server Key scalability features available in Oracle and SQL Server High Availability High

More information

Appendix A Core Concepts in SQL Server High Availability and Replication

Appendix A Core Concepts in SQL Server High Availability and Replication Appendix A Core Concepts in SQL Server High Availability and Replication Appendix Overview Core Concepts in High Availability Core Concepts in Replication 1 Lesson 1: Core Concepts in High Availability

More information

DEPLOYMENT GUIDE Version 1.1. Configuring BIG-IP WOM with Oracle Database Data Guard, GoldenGate, Streams, and Recovery Manager

DEPLOYMENT GUIDE Version 1.1. Configuring BIG-IP WOM with Oracle Database Data Guard, GoldenGate, Streams, and Recovery Manager DEPLOYMENT GUIDE Version 1.1 Configuring BIG-IP WOM with Oracle Database Data Guard, GoldenGate, Streams, and Recovery Manager Table of Contents Table of Contents Configuring BIG-IP WOM with Oracle Database

More information

Chapter 1 Reading Organizer

Chapter 1 Reading Organizer Chapter 1 Reading Organizer After completion of this chapter, you should be able to: Describe convergence of data, voice and video in the context of switched networks Describe a switched network in a small

More information

Using High Availability Technologies Lesson 12

Using High Availability Technologies Lesson 12 Using High Availability Technologies Lesson 12 Skills Matrix Technology Skill Objective Domain Objective # Using Virtualization Configure Windows Server Hyper-V and virtual machines 1.3 What Is High Availability?

More information

F5 and Oracle Database Solution Guide. Solutions to optimize the network for database operations, replication, scalability, and security

F5 and Oracle Database Solution Guide. Solutions to optimize the network for database operations, replication, scalability, and security F5 and Oracle Database Solution Guide Solutions to optimize the network for database operations, replication, scalability, and security Features >> Improved operations and agility >> Global scaling Use

More information

Informatica MDM High Availability Solution

Informatica MDM High Availability Solution Informatica MDM High Availability Solution 1 Executive Summary Informatica MDM Hub supports a number of different approaches to providing a highly available solution. Our use of the term highly available

More information

PREPARED FOR ABC CORPORATION

PREPARED FOR ABC CORPORATION NETWORK DESIGN PROPOSAL PREPARED FOR ABC CORPORATION Prepared by Crystal Technologies PROPRIETARY AND CO NF IDE NTIAL Network Design Proposal PREPARED FOR ABC CORPORATION INC. ARTICLE I. OVERVIEW/HISTORY

More information

Oracle Maps Cloud Service Enterprise Hosting and Delivery Policies Effective Date: October 1, 2015 Version 1.0

Oracle Maps Cloud Service Enterprise Hosting and Delivery Policies Effective Date: October 1, 2015 Version 1.0 Oracle Maps Cloud Service Enterprise Hosting and Delivery Policies Effective Date: October 1, 2015 Version 1.0 Unless otherwise stated, these Oracle Maps Cloud Service Enterprise Hosting and Delivery Policies

More information

The Future of PostgreSQL High Availability Robert Hodges - Continuent, Inc. Simon Riggs - 2ndQuadrant

The Future of PostgreSQL High Availability Robert Hodges - Continuent, Inc. Simon Riggs - 2ndQuadrant The Future of PostgreSQL High Availability Robert Hodges - Continuent, Inc. Simon Riggs - 2ndQuadrant Agenda / Introductions / Framing the High Availability (HA) Problem / Hot Standby + Log Streaming /

More information

HOUG Konferencia 2015. Oracle TimesTen In-Memory Database and TimesTen Application-Tier Database Cache. A few facts in 10 minutes

HOUG Konferencia 2015. Oracle TimesTen In-Memory Database and TimesTen Application-Tier Database Cache. A few facts in 10 minutes HOUG Konferencia 2015 Oracle TimesTen In-Memory Database and TimesTen Application-Tier Database Cache A few facts in 10 minutes Tamas.Kerepes@webvalto.hu What is TimesTen An in-memory relational database

More information

Informix Dynamic Server May 2007. Availability Solutions with Informix Dynamic Server 11

Informix Dynamic Server May 2007. Availability Solutions with Informix Dynamic Server 11 Informix Dynamic Server May 2007 Availability Solutions with Informix Dynamic Server 11 1 Availability Solutions with IBM Informix Dynamic Server 11.10 Madison Pruet Ajay Gupta The addition of Multi-node

More information

5. DEPLOYMENT ISSUES Having described the fundamentals of VoIP and underlying IP infrastructure, let s address deployment issues.

5. DEPLOYMENT ISSUES Having described the fundamentals of VoIP and underlying IP infrastructure, let s address deployment issues. 5. DEPLOYMENT ISSUES Having described the fundamentals of VoIP and underlying IP infrastructure, let s address deployment issues. 5.1 LEGACY INTEGRATION In most cases, enterprises own legacy PBX systems,

More information

Comparing Three Solutions

Comparing Three Solutions Melissa Swartz, Swartz Consulting Elizabeth English, EE and Associates Comparing Three Solutions Case studies of live sample projects May or may not have been implemented with most redundant configurations

More information

Real World Enterprise SQL Server Replication Implementations. Presented by Kun Lee sa@ilovesql.com

Real World Enterprise SQL Server Replication Implementations. Presented by Kun Lee sa@ilovesql.com Real World Enterprise SQL Server Replication Implementations Presented by Kun Lee sa@ilovesql.com About Me DBA Manager @ CoStar Group, Inc. MSSQLTip.com Author (http://www.mssqltips.com/sqlserverauthor/15/kunlee/)

More information

VoIP CONFIGURATION GUIDE FOR MULTI-LOCATION NETWORKS

VoIP CONFIGURATION GUIDE FOR MULTI-LOCATION NETWORKS VoIP CONFIGURATION GUIDE FOR MULTI-LOCATION NETWORKS INTRODUCTION About this guide This guide is designed to help you plan and configure a TalkSwitch multi-location network for Voice over IP (VoIP). NOTE:

More information

SIP Domain/Proxy, Ring Detect Extension or/and Page Audio Extension, (The 8180 needs its own phone extension) Authentication ID, Password,

SIP Domain/Proxy, Ring Detect Extension or/and Page Audio Extension, (The 8180 needs its own phone extension) Authentication ID, Password, The 8180 requires the information below: SIP Domain/Proxy, Ring Detect Extension or/and Page Audio Extension, (The 8180 needs its own phone extension) Authentication ID, Password, Get TalkSwitch SIP Domain/Proxy:

More information

HOSTED VOICE Bring Your Own Bandwidth & Remote Worker. Install and Best Practices Guide

HOSTED VOICE Bring Your Own Bandwidth & Remote Worker. Install and Best Practices Guide HOSTED VOICE Bring Your Own Bandwidth & Remote Worker Install and Best Practices Guide 2 Thank you for choosing EarthLink! EarthLinks' best in class Hosted Voice phone service allows you to deploy phones

More information

Hosted Voice. Best Practice Recommendations for VoIP Deployments

Hosted Voice. Best Practice Recommendations for VoIP Deployments Hosted Voice Best Practice Recommendations for VoIP Deployments Thank you for choosing EarthLink! EarthLinks best in class Hosted Voice phone service allows you to deploy phones anywhere with a Broadband

More information

Smart Tips. Enabling WAN Load Balancing. Key Features. Network Diagram. Overview. Featured Products. WAN Failover. Enabling WAN Load Balancing Page 1

Smart Tips. Enabling WAN Load Balancing. Key Features. Network Diagram. Overview. Featured Products. WAN Failover. Enabling WAN Load Balancing Page 1 Smart Tips Enabling WAN Load Balancing Overview Many small businesses today use broadband links such as DSL or Cable, favoring them over the traditional link such as T1/E1 or leased lines because of the

More information

IP Telephony Management

IP Telephony Management IP Telephony Management How Cisco IT Manages Global IP Telephony A Cisco on Cisco Case Study: Inside Cisco IT 1 Overview Challenge Design, implement, and maintain a highly available, reliable, and resilient

More information

VoIP Logic: Disaster Recovery and Resiliency

VoIP Logic: Disaster Recovery and Resiliency VoIP Logic: Disaster Recovery and Resiliency VoIP Logic: Options for Disaster Recovery and Resiliency The ability to keep telephone systems operating in the event of a service impairment or a catastrophic

More information

TÓPICOS AVANÇADOS EM REDES ADVANCED TOPICS IN NETWORKS

TÓPICOS AVANÇADOS EM REDES ADVANCED TOPICS IN NETWORKS Mestrado em Engenharia de Redes de Comunicações TÓPICOS AVANÇADOS EM REDES ADVANCED TOPICS IN NETWORKS 2008-2009 Exemplos de Projecto - Network Design Examples 1 Hierarchical Network Design 2 Hierarchical

More information

Basics Of Replication: SQL Server 2000

Basics Of Replication: SQL Server 2000 Basics Of Replication: SQL Server 2000 Table of Contents: Replication: SQL Server 2000 - Part 1 Replication Benefits SQL Server Platform for Replication Entities for the SQL Server Replication Model Entities

More information

DB2 9 for LUW Advanced Database Recovery CL492; 4 days, Instructor-led

DB2 9 for LUW Advanced Database Recovery CL492; 4 days, Instructor-led DB2 9 for LUW Advanced Database Recovery CL492; 4 days, Instructor-led Course Description Gain a deeper understanding of the advanced features of DB2 9 for Linux, UNIX, and Windows database environments

More information

Implementing VoIP monitoring solutions. Deployment note

Implementing VoIP monitoring solutions. Deployment note Implementing VoIP monitoring solutions Deployment note Introduction With VoIP being an integral part of modern day business communications, enterprises are placing greater emphasis on the monitoring and

More information

How To Understand and Configure Your Network for IntraVUE

How To Understand and Configure Your Network for IntraVUE How To Understand and Configure Your Network for IntraVUE Summary This document attempts to standardize the methods used to configure Intrauve in situations where there is little or no understanding of

More information

Tushar Joshi Turtle Networks Ltd

Tushar Joshi Turtle Networks Ltd MySQL Database for High Availability Web Applications Tushar Joshi Turtle Networks Ltd www.turtle.net Overview What is High Availability? Web/Network Architecture Applications MySQL Replication MySQL Clustering

More information

SanDisk ION Accelerator High Availability

SanDisk ION Accelerator High Availability WHITE PAPER SanDisk ION Accelerator High Availability 951 SanDisk Drive, Milpitas, CA 95035 www.sandisk.com Table of Contents Introduction 3 Basics of SanDisk ION Accelerator High Availability 3 ALUA Multipathing

More information

Lab 4.5.4 Diagramming External Traffic Flows

Lab 4.5.4 Diagramming External Traffic Flows Lab 4.5.4 Diagramming External Traffic Flows Device Designation Device Name Address Subnet Mask Discovery Server Business Services 172.17.1.1 255.255.0.0 R1 R2 R3 FC-CPE-1 FC-CPE-2 ISP Fa0/1 172.17.0.1

More information

Oracle Data Guard for High Availability and Disaster Recovery

Oracle Data Guard for High Availability and Disaster Recovery Oracle Data Guard for High Availability and Disaster Recovery John Zhong Senior Technical Specialist Global Database Management Group Citigroup and Vice President of American DBAOnline John_j_zhong@yahoo.com

More information

Technical Brief. DualNet with Teaming Advanced Networking. October 2006 TB-02499-001_v02

Technical Brief. DualNet with Teaming Advanced Networking. October 2006 TB-02499-001_v02 Technical Brief DualNet with Teaming Advanced Networking October 2006 TB-02499-001_v02 Table of Contents DualNet with Teaming...3 What Is DualNet?...3 Teaming...5 TCP/IP Acceleration...7 Home Gateway...9

More information

Disaster Recovery White Paper

Disaster Recovery White Paper Introduction Remote access plays a critical role in successfully executing a business recovery plan both in terms of providing access for existing remote users and accommodating the potential increase

More information

Cisco Wide Area Application Services (WAAS) Software Version 4.0

Cisco Wide Area Application Services (WAAS) Software Version 4.0 Cisco Wide Area Application Services () Software Version 4.0 Product Overview Cisco Wide Area Application Services () is a powerful application acceleration and WAN optimization solution that optimizes

More information

IP Storage On-The-Road Seminar Series

IP Storage On-The-Road Seminar Series On-The-Road Seminar Series Disaster Recovery and Data Protection Page 1 Agenda! The Role of IP in Backup!Traditional use of IP networks for backup! backup capabilities! Contemporary data protection solutions

More information

Virtuoso Replication and Synchronization Services

Virtuoso Replication and Synchronization Services Virtuoso Replication and Synchronization Services Abstract Database Replication and Synchronization are often considered arcane subjects, and the sole province of the DBA (database administrator). However,

More information

Lab 5.5.3 Developing ACLs to Implement Firewall Rule Sets

Lab 5.5.3 Developing ACLs to Implement Firewall Rule Sets Lab 5.5.3 Developing ACLs to Implement Firewall Rule Sets All contents are Copyright 1992 2007 Cisco Systems, Inc. All rights reserved. This document is Cisco Public Information. Page 1 of 8 Device Interface

More information

Highly Available Mobile Services Infrastructure Using Oracle Berkeley DB

Highly Available Mobile Services Infrastructure Using Oracle Berkeley DB Highly Available Mobile Services Infrastructure Using Oracle Berkeley DB Executive Summary Oracle Berkeley DB is used in a wide variety of carrier-grade mobile infrastructure systems. Berkeley DB provides

More information

HCS Redundancy and High Availability

HCS Redundancy and High Availability Data Center Infrastructure, page 1 Data Center Interconnect, page 2 Geo-Redundancy, page 2 Geo-Redundancy for Cisco Unified Communications Domain Manager, page 7 Data Center Redundancy, page 15 Application

More information

Rohde & Schwarz R&S SITLine ETH VLAN Encryption Device Functionality & Performance Tests

Rohde & Schwarz R&S SITLine ETH VLAN Encryption Device Functionality & Performance Tests Rohde & Schwarz R&S Encryption Device Functionality & Performance Tests Introduction Following to our test of the Rohde & Schwarz ETH encryption device in April 28 the European Advanced Networking Test

More information

Comparing Microsoft SQL Server 2005 Replication and DataXtend Remote Edition for Mobile and Distributed Applications

Comparing Microsoft SQL Server 2005 Replication and DataXtend Remote Edition for Mobile and Distributed Applications Comparing Microsoft SQL Server 2005 Replication and DataXtend Remote Edition for Mobile and Distributed Applications White Paper Table of Contents Overview...3 Replication Types Supported...3 Set-up &

More information

XLink ClusterReplica SQL 3.0 For Windows 2000/2003/XP

XLink ClusterReplica SQL 3.0 For Windows 2000/2003/XP XLink ClusterReplica SQL 3.0 For Windows 2000/2003/XP White Paper XLink Technology, Inc 1546 Centre Pointe Drive Milpitas, CA 95035, USA For the latest Product Information and free demo program, please

More information

Chapter-15 -------------------------------------------- Replication in SQL Server

Chapter-15 -------------------------------------------- Replication in SQL Server Important Terminologies: What is Replication? Replication is the process where data is copied between databases on the same server or different servers connected by LANs, WANs, or the Internet. Microsoft

More information

Data Replication in Privileged Credential Vaults

Data Replication in Privileged Credential Vaults Data Replication in Privileged Credential Vaults 2015 Hitachi ID Systems, Inc. All rights reserved. Contents 1 Background: Securing Privileged Accounts 2 2 The Business Challenge 3 3 Solution Approaches

More information

Essential IT Guide: Ensuring Highly Available Access to Business-critical Applications

Essential IT Guide: Ensuring Highly Available Access to Business-critical Applications White Paper Essential IT Guide: Ensuring Highly Available Access to Business-critical Applications Supporting Branch-office and Remote Users in a Centralized World Juniper Networks, Inc. 1194 North Mathilda

More information

WAN Optimization. Riverbed Steelhead Appliances

WAN Optimization. Riverbed Steelhead Appliances WAN Optimization Riverbed Steelhead Appliances Steelhead appliances deliver the highest performance and the most scalable wide-area data services solution available, overcoming both bandwidth and latency

More information

Use MAC-Forced Forwarding with DHCP Snooping to Create Enhanced Private VLANs

Use MAC-Forced Forwarding with DHCP Snooping to Create Enhanced Private VLANs How To Use MAC-Forced Forwarding with DHCP Snooping to Create Enhanced Private VLANs Introduction In a large network where internal users cannot be trusted, it is nearly impossible to stop a host from

More information

WHY COX BUSINESS? SIP TRUNKING: BUSINESS CONTINUITY AND REDUNDANCY A White Paper

WHY COX BUSINESS? SIP TRUNKING: BUSINESS CONTINUITY AND REDUNDANCY A White Paper WHY COX BUSINESS? SIP TRUNKING: BUSINESS CONTINUITY AND REDUNDANCY A White Paper 1 P a g e Table of Contents INTRODUCTION... 1 WHAT IS FAILURE?... 2 THE APPROACHES... 3 SINGLE SITE OPTIONS... 3 SEPARATE

More information

Deploying, Configuring, and Administering Microsoft Lync Server 2010

Deploying, Configuring, and Administering Microsoft Lync Server 2010 Course 10533: Deploying, Configuring, and Administering Microsoft Lync Server 2010 Page 1 of 9 Deploying, Configuring, and Administering Microsoft Lync Server 2010 Course 10533: 4 days; Instructor-Led

More information

Oracle Application Server 10g: Administer High Availability

Oracle Application Server 10g: Administer High Availability Oracle Application Server 10g: Administer High Availability Student Guide D21855GC10 Production 1.0 July 2006 D46705 Author Shankar Raman Technical Contributors and Reviewers Shankar Raman Fermin Castro

More information

ICTTEN4215A Install and configure internet protocol TV in a service provider network

ICTTEN4215A Install and configure internet protocol TV in a service provider network ICTTEN4215A Install and configure internet protocol TV in a service provider network Release: 1 ICTTEN4215A Install and configure internet protocol TV in a service provider network Modification History

More information

Code:1Z0-599. Titre: Oracle WebLogic. Version: Demo. Server 12c Essentials. http://www.it-exams.fr/

Code:1Z0-599. Titre: Oracle WebLogic. Version: Demo. Server 12c Essentials. http://www.it-exams.fr/ Code:1Z0-599 Titre: Oracle WebLogic Server 12c Essentials Version: Demo http://www.it-exams.fr/ QUESTION NO: 1 You deploy more than one application to the same WebLogic container. The security is set on

More information

How Network Transparency Affects Application Acceleration Deployment

How Network Transparency Affects Application Acceleration Deployment How Network Transparency Affects Application Acceleration Deployment By John Bartlett and Peter Sevcik July 2007 Acceleration deployments should be simple. Vendors have worked hard to make the acceleration

More information

Load Balancing for Microsoft Office Communication Server 2007 Release 2

Load Balancing for Microsoft Office Communication Server 2007 Release 2 Load Balancing for Microsoft Office Communication Server 2007 Release 2 A Dell and F5 Networks Technical White Paper End-to-End Solutions Team Dell Product Group Enterprise Dell/F5 Partner Team F5 Networks

More information

Database high availability

Database high availability Database high availability Seminar in Data and Knowledge Engineering Viktorija Šukvietytė December 27, 2014 1. Introduction The contemporary world is overflowed with data. In 2010, Eric Schmidt one of

More information

AND Recorder 5.4. Overview. Benefits. Datenblatt

AND Recorder 5.4. Overview. Benefits. Datenblatt Datenblatt AND Recorder 5.4 Using affordable call recording enables you to comply with legal and regulatory obligations. These requirements are easily achieved by deploying a secure call recording solution

More information

Ecomm Enterprise High Availability Solution. Ecomm Enterprise High Availability Solution (EEHAS) www.ecommtech.co.za Page 1 of 7

Ecomm Enterprise High Availability Solution. Ecomm Enterprise High Availability Solution (EEHAS) www.ecommtech.co.za Page 1 of 7 Ecomm Enterprise High Availability Solution Ecomm Enterprise High Availability Solution (EEHAS) www.ecommtech.co.za Page 1 of 7 Ecomm Enterprise High Availability Solution Table of Contents 1. INTRODUCTION...

More information

MITEL. NetSolutions. Flat Rate MPLS VPN

MITEL. NetSolutions. Flat Rate MPLS VPN MITEL NetSolutions Flat Rate MPLS VPN A Comprehensive, Intelligent Network-based Solution Businesses today demand an ever-evolving list of requirements of their networks. From connecting branch locations

More information

Deploying Riverbed wide-area data services in a LeftHand iscsi SAN Remote Disaster Recovery Solution

Deploying Riverbed wide-area data services in a LeftHand iscsi SAN Remote Disaster Recovery Solution Wide-area data services (WDS) Accelerating Remote Disaster Recovery Reduce Replication Windows and transfer times leveraging your existing WAN Deploying Riverbed wide-area data services in a LeftHand iscsi

More information

Oracle Database 10g: Backup and Recovery 1-2

Oracle Database 10g: Backup and Recovery 1-2 Oracle Database 10g: Backup and Recovery 1-2 Oracle Database 10g: Backup and Recovery 1-3 What Is Backup and Recovery? The phrase backup and recovery refers to the strategies and techniques that are employed

More information

Upgrading to Exchange 2010. Session Overview. Introduction 8/8/2011. Technology Operations SOSPG3

Upgrading to Exchange 2010. Session Overview. Introduction 8/8/2011. Technology Operations SOSPG3 Upgrading to Exchange 2010 Technology Operations SOSPG3 Graphics Courtesy of Microsoft and Other Public Sources Session Overview Not an Exchange 2010 Introduction Focus on Lessons Learned Agenda Introductions

More information

TABLE OF CONTENTS THE SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY FOR SHAREPOINT DATA. Introduction. Examining Third-Party Replication Models

TABLE OF CONTENTS THE SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY FOR SHAREPOINT DATA. Introduction. Examining Third-Party Replication Models 1 THE SHAREPOINT MVP GUIDE TO ACHIEVING HIGH AVAILABILITY TABLE OF CONTENTS 3 Introduction 14 Examining Third-Party Replication Models 4 Understanding Sharepoint High Availability Challenges With Sharepoint

More information

ADVOSS SIP APPLICATION SERVERS

ADVOSS SIP APPLICATION SERVERS ADVOSS SIP APPLICATION SERVERS PRODUCT DATA SHEET COPYRIGHT ADVOSS.COM, 2007 2011 ALL RIGHTS RESERVED This document is property of AdvOSS Page 1 TABLE OF CONTENTS 1 AdvOSS SIP Application Servers... 3

More information

High Availability Configuration Guide

High Availability Configuration Guide New Rock Technologies, Inc. MX Voice-Fax Gateway Series HX4E MX8A MX60 MX120 Website: http://www.newrocktech.com Email: gs@newrocktech.com Document Version: 201509 Contents 1 Overview... 1-1 1.1 Function

More information

Course 10533A: Deploying, Configuring, and Administering Microsoft Lync Server 2010

Course 10533A: Deploying, Configuring, and Administering Microsoft Lync Server 2010 Sales 406/256-5700 Support 406/252-4959 Fax 406/256-0201 Evergreen Center North 1501 14 th St West, Suite 201 Billings, MT 59102 Course 10533A: Deploying, Configuring, and Administering Microsoft Lync

More information

The following is a list of the features available with the managed Intersoft IP Telephony Services.

The following is a list of the features available with the managed Intersoft IP Telephony Services. The following is a list of the features available with the managed Intersoft IP Telephony Services. Call Forwarding When you are not at your desk, be sure not to miss important calls. Forward call to another

More information

Feature Comparison. Windows Server 2008 R2 Hyper-V and Windows Server 2012 Hyper-V

Feature Comparison. Windows Server 2008 R2 Hyper-V and Windows Server 2012 Hyper-V Comparison and Contents Introduction... 4 More Secure Multitenancy... 5 Flexible Infrastructure... 9 Scale, Performance, and Density... 13 High Availability... 18 Processor and Memory Support... 24 Network...

More information

diversifeye Application Note

diversifeye Application Note diversifeye Application Note Test Performance of IGMP based Multicast Services with emulated IPTV STBs Shenick Network Systems Test Performance of IGMP based Multicast Services with emulated IPTV STBs

More information

Design for Failure High Availability Architectures using AWS

Design for Failure High Availability Architectures using AWS Design for Failure High Availability Architectures using AWS Harish Ganesan Co founder & CTO 8KMiles www.twitter.com/harish11g http://www.linkedin.com/in/harishganesan Sample Use Case Multi tiered LAMP/LAMJ

More information

The following sections provide information on the features and tasks of Server Inventory:

The following sections provide information on the features and tasks of Server Inventory: IIServer Inventory The Server Inventory component of Novell ZENworks 7 Server Management enables you to collect hardware and software inventory information from local and remote servers of your enterprise.

More information

LAN Planning Guide LAST UPDATED: 1 May 2013. LAN Planning Guide

LAN Planning Guide LAST UPDATED: 1 May 2013. LAN Planning Guide LAN Planning Guide XO Hosted PBX Document version: 1.05 Issue date: 1 May 2013 Table of Contents Table of Contents... i About this Document... 1 Introduction: Components of XO Hosted PBX... 1 LAN Fundamentals...

More information

Troubleshooting Common Issues in VoIP

Troubleshooting Common Issues in VoIP Troubleshooting Common Issues in VoIP 2014, SolarWinds Worldwide, LLC. All rights reserved. Voice over Internet Protocol (VoIP) Introduction Voice over IP, or VoIP, refers to the delivery of voice and

More information

Implementing a Microsoft SQL Server 2005 Database

Implementing a Microsoft SQL Server 2005 Database This class combines two courses into one 5-day class. 2779 (3-day) & 2780 (2-day) Implementing a Microsoft SQL Server 2005 Database Course 2779: Three days; Instructor-Led Introduction This three-day instructor-led

More information

Data Center Middleboxes

Data Center Middleboxes Data Center Middleboxes Hakim Weatherspoon Assistant Professor, Dept of Computer Science CS 5413: High Performance Systems and Networking November 24, 2014 Slides from ACM SIGCOMM 2012 presentation on

More information

How To Use The Cisco Wide Area Application Services (Waas) Network Module

How To Use The Cisco Wide Area Application Services (Waas) Network Module Cisco Wide Area Application Services (WAAS) Network Module The Cisco Wide Area Application Services (WAAS) Network Module for the Cisco Integrated Services Routers (ISR) is a powerful WAN optimization

More information

FRAFOS GmbH Windscheidstr. 18 Ahoi 10627 Berlin Germany info@frafos.com www.frafos.com

FRAFOS GmbH Windscheidstr. 18 Ahoi 10627 Berlin Germany info@frafos.com www.frafos.com WebRTC for Service Providers FRAFOS GmbH FRAFOS GmbH Windscheidstr. 18 Ahoi 10627 Berlin Germany info@frafos.com www.frafos.com This document is copyright of FRAFOS GmbH. Duplication or propagation or

More information

Disaster Recovery Configuration Guide for CiscoWorks Network Compliance Manager 1.8

Disaster Recovery Configuration Guide for CiscoWorks Network Compliance Manager 1.8 Disaster Recovery Configuration Guide for CiscoWorks Network Compliance Manager 1.8 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel:

More information

Why an Intelligent WAN Solution is Essential for Mission Critical Networks

Why an Intelligent WAN Solution is Essential for Mission Critical Networks Why an Intelligent WAN Solution is Essential for Mission Critical Networks White Paper Series WP100135 Charles Tucker Director of Marketing June 1, 2006 Abstract: Reliable Internet connectivity is now

More information

Unified Communications. Summary of Manufacturer Technical Evaluations

Unified Communications. Summary of Manufacturer Technical Evaluations Unified Communications Summary of Manufacturer Technical Evaluations 1 Terminology Definitions of commonly used terms and acronyms 1 ShoreTel 2 Avaya 3 Cisco 4 Siemens (Unify) 5 2 Terminology Definitions

More information

IP Telephony Deployment Models

IP Telephony Deployment Models CHAPTER 2 Sections in this chapter address the following topics: Single Site, page 2-1 Multisite Implementation with Distributed Call Processing, page 2-3 Design Considerations for Section 508 Conformance,

More information

Tips and Tricks for Using Oracle TimesTen In-Memory Database in the Application Tier

Tips and Tricks for Using Oracle TimesTen In-Memory Database in the Application Tier Tips and Tricks for Using Oracle TimesTen In-Memory Database in the Application Tier Simon Law TimesTen Product Manager, Oracle Meet The Experts: Andy Yao TimesTen Product Manager, Oracle Gagan Singh Senior

More information

Configuring the Edgewater 4550 for use with the Bluestone Hosted PBX

Configuring the Edgewater 4550 for use with the Bluestone Hosted PBX Configuring the Edgewater 4550 for use with the Bluestone Hosted PBX NOTE: This is an advisory document to be used as an aid to resellers and IT staff looking to use the Edgewater 4550 in conjunction with

More information

Truffle Broadband Bonding Network Appliance

Truffle Broadband Bonding Network Appliance Truffle Broadband Bonding Network Appliance Reliable high throughput data connections with low-cost & diverse transport technologies PART I Truffle in standalone installation for a single office. Executive

More information

MPLS: Key Factors to Consider When Selecting Your MPLS Provider Whitepaper

MPLS: Key Factors to Consider When Selecting Your MPLS Provider Whitepaper MPLS: Key Factors to Consider When Selecting Your MPLS Provider Whitepaper 2006-20011 EarthLink Business Page 1 EXECUTIVE SUMMARY Multiprotocol Label Switching (MPLS), once the sole domain of major corporations

More information

Solving Large-Scale Database Administration with Tungsten

Solving Large-Scale Database Administration with Tungsten Solving Large-Scale Database Administration with Tungsten Neil Armitage, Sr. Software Engineer Robert Hodges, CEO. Introducing Continuent The leading provider of clustering and replication for open source

More information

Disaster Recovery Design Ehab Ashary University of Colorado at Colorado Springs

Disaster Recovery Design Ehab Ashary University of Colorado at Colorado Springs Disaster Recovery Design Ehab Ashary University of Colorado at Colorado Springs As a head of the campus network department in the Deanship of Information Technology at King Abdulaziz University for more

More information

Enhancements of ETERNUS DX / SF

Enhancements of ETERNUS DX / SF shaping tomorrow with you ETERNUS - Business-centric Storage Enhancements of ETERNUS DX / SF Global Product Marketing Storage ETERNUS Business-centric Storage Agenda: 1 Overview of the top 3 innovations

More information

Lab 4.5.2 Diagramming Intranet Traffic Flows

Lab 4.5.2 Diagramming Intranet Traffic Flows Lab 4.5.2 Diagramming Intranet Traffic Flows Objective Device Designation Device Name Address Subnet Mask Discovery Server Business Services 172.17.1.1 255.255.0.0 R1 FC-CPE-1 Fa0/1 172.17.0.1 Fa0/0 10.0.0.1

More information

March 2008 Grant Halverson CEO, GFG Group. Regional Processing Models

March 2008 Grant Halverson CEO, GFG Group. Regional Processing Models March 2008 Grant Halverson CEO, GFG Group Regional Processing Models The search for successful regional and global IT processing models has been a major focus of the last fifteen years across banks, insurance

More information

Configuring Switch Ports and VLAN Interfaces for the Cisco ASA 5505 Adaptive Security Appliance

Configuring Switch Ports and VLAN Interfaces for the Cisco ASA 5505 Adaptive Security Appliance CHAPTER 4 Configuring Switch Ports and VLAN Interfaces for the Cisco ASA 5505 Adaptive Security Appliance This chapter describes how to configure the switch ports and VLAN interfaces of the ASA 5505 adaptive

More information

How To Guide. SIP Trunking Configuration Using the SIP Trunk Page

How To Guide. SIP Trunking Configuration Using the SIP Trunk Page How To Guide SIP Trunking Configuration Using the SIP Trunk Page For the Ingate SIParators and Firewalls using software release 4.9.2 or later. Updated to show features available from release 4.10.x May

More information

Installation of the On Site Server (OSS)

Installation of the On Site Server (OSS) Installation of the On Site Server (OSS) rev 1.1 Step #1 - Initial Connection to the OSS Having plugged in power and an ethernet cable in the eth0 interface (see diagram below) you can connect to the unit

More information

Oracle Data Integration Solutions GoldenGate New Features Summary

Oracle Data Integration Solutions GoldenGate New Features Summary Oracle Data Integration Solutions GoldenGate New Features Summary Valarie Bedard Principle Sales Consultant Tony Velardo DIS Account Manager Oracle Data Integration Moving Data to Transform Business 1

More information