Three Approaches to Managing Database Growth

Size: px
Start display at page:

Download "Three Approaches to Managing Database Growth"

Transcription

1 White Paper Three Approaches to Managing Database Growth You can reduce the size of your data, get rid of data altogether, or retire applications and archive their data but you can t ignore the challenge of database growth. A guide to choosing the right solution.

2 This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica Corporation and may not be copied, distributed, duplicated, or otherwise reproduced in any manner without the prior written consent of Informatica. While every attempt has been made to ensure that the information in this document is accurate and complete, some typographical errors or technical inaccuracies may exist. Informatica does not accept responsibility for any kind of loss resulting from the use of information contained in this document. The information contained in this document is subject to change without notice. The incorporation of the product attributes discussed in these materials into any release or upgrade of any Informatica software product as well as the timing of any such release or upgrade is at the sole discretion of Informatica. Protected by one or more of the following U.S. Patents: 6,032,158; 5,794,246; 6,014,670; 6,339,775; 6,044,374; 6,208,990; 6,208,990; 6,850,947; 6,895,471; or by the following pending U.S. Patents: 09/644,280; 10/966,046; 10/727,700. This edition published April 2014

3 White Paper Table of Contents Introduction... 2 Partitioning and Compression to Reduce Storage Needs... 3 Archiving and Tiering to Reduce Data Third-Party Database Tiering Solutions...6 Application Retirement Solutions... 7 Test Data Management Solutions...8 Making an Educated Investment Three Approaches to Managing Database Growth 1

4 Introduction It s no secret that data is growing rapidly. Experts now point to a 4300% increase in annual data generation by the year By the end of 2011, the amount of digital information created and shared in the world had increased nine-fold in just five years to almost two zettabytes. By 2015, data creation and sharing is expected to almost quadruple. 2 Staggering numbers, but they don t tell the whole story. Business demand for data within organizations is rising. And a multiplier to this growth is the fact that data is duplicated across organizations three or more times. 3 Adding to the challenge is that it s getting more difficult to dispose of data 40% of the respondents to an Oracle user group survey keep data well beyond the seven-year legal requirement to meet compliance mandates and maintain data in the event of litigation. 4 Given this explosion of data, it s no surprise that data stores are expanding at a rate greater than 20% each year. 5 Unchecked database growth degrades performance and limits the availability of mission-critical applications and data. Database applications, unlike applications or file-sharing systems, require multiple copies of production databases to support activities such as testing, development, and reporting. Whenever data multiplies in a production system, so, too, does your cost. As data continues exploding, database growth management strategies become more critical. You need to maintain application performance in production databases and all associated copies otherwise, database query response times deteriorate. Not only that, without a sound database growth management plan, database maintenance (cloning, backing up, and patching) takes longer to complete. Test cycles during application upgrades also lengthen. But blindly purchasing more hardware to keep up with data growth is not a sustainable long-term strategy-- you spend more money on a less efficient solution without addressing the root cause of the problem. It s akin to building an addition to your house because you ran out of room in the garage, attic, and basement for storing items that you haven t seen, touched, or used in many years. Rather than throwing more hardware at the data explosion problem, it s much smarter to invest in solutions that either reduce data s footprint and its storage requirements, delete or archive data, or retire or consolidate applications. This guide explores and evaluates the pros and cons of database data growth management options to help you choose the best approach for your enterprise. Zettabytes A Digital Data Explosion Global digital information created and shared E 2015E techandinnovationdaily.com Source: KPCB, IDC ibid 2 5

5 Partitioning and Compression to Reduce Storage Needs Database vendors provide common features partitioning and compression that assist you as a database administrator (DBA) in maintaining application performance and controlling the total storage footprint as data volumes grow. Deploying either at the database level requires in-depth knowledge of the application, so DBAs should work closely with the application development team to ensure the appropriate strategy is deployed without negatively impacting the production application performance or functionality. Database partitioning allows you to use business logic to physically separate data residing in database tables by partitions. To the application, the data looks as if it resides in a single logical table. To the file system, the data is stored in individual files based on the partition logic. By physically separating segments of data, queries can be optimized to only seek and access a portion of data on disk based on what is requested in the query (as opposed to scanning the entire database table to find the small range of data requested). Pros: If logic is aligned with retention requirements, you can cleanly manage and move database partitions without impacting the overall application. You can move partitions to less expensive storage media or you can compress, delete, or take them offline. Cons: However, when you apply partition logic for performance purposes without aligning it cleanly with retention policy logic, database partitioning can have a detrimental impact on performance. Worse, if you cannot make the partition logic consistent with respect to a complete business object (i.e. a business transaction spans across multiple tables that may have different partitioning logic applied), data relational integrity could be completely destroyed if a partition is taken offline irrespective of inter-table dependencies. Database compression features allow you to shrink the data footprint (and storage capacity requirements) by executing a variety of algorithms on data residing in a table. The compression ratios will vary by data composition and whether your database vendor supports different compression algorithms. Similar to partitioning, if you deploy compression without regard to the application data model, application performance can be significantly impacted. Pros: Data footprints can shrink storage capacity requirements while giving complete access to all database data. Compression is highly recommended when the tool s performance has been proven to not impact production performance or CPU utilization. Cons: Performance can be significantly impacted depending on how compression is deployed. Add-on license fees may apply when using compression features. Three Approaches to Managing Database Growth 3

6 Archiving and Tiering to Reduce Data Reducing data volumes involves removing or deleting data from the production database or from nonproduction copies. In this approach, you must understand the application data model to ensure that, when you remove data, you can maintain data relational integrity and the application continues to function properly. But deleting data may not be an option for organizations that need to keep data available for extended retention periods. When your data model is complex or if it comes from a third-party packaged application ISV, managing the process manually becomes costly, difficult, and risky. In this case, it s smarter to use a third-party solution that allows you to separate data based on policy while providing end-user access and maintaining third-party ISV support. The two solutions we ll discuss in this guide include database archiving and tiering. Third-party database archiving solutions have emerged in response to the need for managing database data growth amidst the limitations of database and application vendor offerings. These solutions allow you to selectively identify, tier, archive, or delete database data in context to the business application. You can relocate or archive eligible data to a separate database schema, archive database, or archive repository while maintaining end-user access to the data via either the native application or a comparable separate user interface. Pros: Because these solutions remove data from the production database, performance is maintained and in many cases improved. Data is made available to the end user through native interfaces with minor modifications to the application. Cons: The process of selecting eligible data and moving it to another repository can introduce production performance considerations that need to be clearly understood when choosing a database archiving architecture. Depending on the application and the deployment configuration, managing and accessing data in a separate repository may introduce additional maintenance tasks and processes. Figure 1. Typical database archiving configuration with archive access via a database link Production Access Archive Access Data Access Layer DBLink Hot Data Cold Data Deleted Data Production Database Archive Repository A common archiving approach is to archive aged or inactive data from the production database to a separate online database or archive file while providing access to the archive repository using a database link connection. 4

7 A database archiving solution commonly comprises four key components: application metadata, a policy engine, an archive repository, and a data access layer. Application metadata: This component contains information that is used to define what tables will participate in a database partition, relocation, or archiving activity. It stores the relationships between those tables, including database or application-level constraints and any criteria that need to be considered when selecting data to be archived. The metadata for packaged applications like Oracle E-Business Suite, PeopleSoft, or SAP can usually be purchased in prepopulated repositories to speed implementation times. Application metadata is critical in making sure that when an archive policy is applied, data referential integrity is maintained and business logic is respected. Policy engine: This component is where business users define retention policies in terms of time durations and other business-related rules. The policy engine is also responsible for executing the policy within the database, and moving data to a target area. This involves translating the policy and metadata into structured query language that the database understands (SELECT * from TABLE A where COLUMN 1 > 2 years and COLUMN 2 = Closed / swap partition / etc.). Depending on the skillset in your organization and your interest in controlling the process during execution, this will be an important component to understand and can be a good topic during technical discussions and demonstrations. Target repository: This stores the database data that has been partitioned, migrated, or archived. The choices for the repository vary and will be determined based on a number of factors typically driven from end-user archive access requirements. Some of these choices include dedicated database partitions within the same database, another dedicated database, or highly compressed archives that can be queried. There is always the option to export data into an open format, such as CSV or XML. This is a critical architectural decision. The major considerations of each type of target are reviewed in Table 1. TARGET REPOSITORY OPTION Separate partition in the same table Separate Schema in the same DB Separate DB Highly compressed queryable archive XML / CSV File PROS Separates data for maximum performance of more actively accessed data Administrators only need to manage a single database The production database is reduced in size The data is removed from the production database and the archive data is reduced in size and is stored in a secure archive file Data is removed from the production database and stored in an open standard format for long-term readability CONS All data still resides in the production database until partitions are moved or deleted All data still resides in the production database until data is moved or deleted Administrators need to manage a separate archive database and access performance may need to be more closely monitored Access performance may need to be more closely monitored and administrators need to ensure security policies are extended to the archive. Access performance may be significantly deteriorated, a separate reporting application will be necessary to access data, and administrators will need to extend security policies to data residing in a file. Table 1. Pros and Cons of Different Target Repository Options Three Approaches to Managing Database Growth 5

8 Data access layer: This is the mechanism that makes the partitioned, migrated, or archived database data accessible to a native application, a standard business reporting tool, or a data discovery portal. Again, these options vary and will be determined based on your end-user access requirements and the technology standards in your data center. Providing a data access layer is critical for end-users who need access to data through the native or native-like application. When users access archive data using a view that is deployed using a database link, query response performance may be slower. Third-Party Database Tiering Solutions Database tiering solutions provide complementary solutions to existing database partitioning features in that data can be isolated as either active or inactive automatically within the database depending on a specific business policy. The classification drives placement of data within the same database leveraging what has been termed as application-aware segmentation. Segmentation, or partitioning, of database data within the same database instance physically separates data without impacting the logical representation to the native application. Figure 2. Tiering alternative to database archiving Production Access Relational Data Model US Canada... 2Q14 2Q14 2Q14 1Q14 1Q14 1Q14 4Q13 4Q13 4Q13 3Q13 3Q13 1Q13 Tier 0 (High Performance) Tier 1 (High Capacity) 2Q14 2Q14 2Q14 1Q14 1Q14 1Q14 Tier N (Compressed) Production Database By using a segmentation approach, data can be compressed, taken offline or deleted with minimal impact to the production application performance. Additionally, organizations can optimize the placement of partitions on the appropriate class of storage media aligned with the performance requirements necessary to meet business needs. 6

9 Application Retirement Solutions Most organizations with a proliferation of legacy applications consuming costly data center resources are assessing and rationalizing the need to keep those applications online. If the data in the inactive repositories needs to be retained for compliance or regulatory reasons, application retirement solutions offer the ability to retain the required data sets for extended periods of time while maintaining business context and allowing IT to shut down the originating source system for good. Read 10 Things You Need to Know Before Modernizing Your Applications for more on application retirement. In the case where an entire database application is no longer used for supporting current business processes or operational needs, yet contains data that has a legal or regulatory retention requirement, application retirement solutions offer a cost-effective way to migrate data from archaic or unsupported formats to a supported format while maintaining business context and some level of end-user access. These solutions are similar to database archiving in that they have options for how the database data is stored in an archive, but differ in that the original application is replaced by a comparable separate user interface and can be completely retired. Figure 3 illustrates an example of migrating legacy data to an application retirement repository that is accessible by modern, open interfaces, eliminating the need for archaic and outdated technology stacks. Figure 3. Application retirement solutions eliminate archaic legacy technology Archaic Interfaces to Legacy Data Legacy Access Standardized Interface to Legacy Data Relational Data Model Legacy Application Database Application Retirement Data Repository The data is stored in an online accessible, secure archive file that may offer significant storage reduction through high data compression rates. Three Approaches to Managing Database Growth 7

10 Test Data Management Solutions Test data management (TDM) is the process of creating and working with a data set that s representative of that used by enterprise applications. A TDM solution can save hours in test data creation, build efficiency into your test process, ensure you avoid risk of exposed sensitive data, and ultimately reduce costs associated with testing. Test data management solutions can reduce storage requirements because they cut the size of test data sets. For more information, read Why You Need Test Data Management. TEST DATA MANAGEMENT OPTION PROS CONS Copy subsets of data from production to a target environment Delete excess data from full copies of production Virtual database copies Only data necessary for the test and development environment is copied. Because data sets are reduced, test cycles are shortened. If the process only requires copying partitions, the time to make a copy is minimized. Only data necessary for the test and development environment is retained. If the process only requires dropping data partitions, the time to delete data is minimized. Test databases can be created near instantaneously, requiring only a fraction of storage. Test environments can be restored near instantaneously as well. Refresh windows are completed near instantaneously. The process of copying data and inserting it into an empty database may impact performance on the source and may take a considerable amount of time depending on the volume of data to be copied. The process needs to be repeated for refresh. A full copy of production is needed initially. The process for removing large data sets may take a considerable amount of time. The process needs to be repeated for refresh. Full data sets are virtual test plans that access entire data sets will not run faster once the clone is available. Read/write performance of the virtual databases will depend on the number of virtual databases created and accessed simultaneously. Table 2. Pros and Cons of Test Data Management Solution Options Making an Educated Investment By assessing business needs for access to application data and how those requirements change as data ages, you can deploy a data growth management strategy that lets you make more informed decisions on where to invest. For data that needs to be accessed on a regular basis, premier IT services apply (high performance, high availability). For the most part, however, access requirements drop as data ages. By mapping out requirements for business users access needs over time, legal or records management retention schedules, and operational support needs, you re is in a much better position to proactively plan infrastructure and technology purchases in context of controlling data growth. By obtaining answers to some key questions on end-user access needs and weighing the economic impact of technology options, you can architect a solution that optimizes investment dollars. How long does the database data need to be retained and why to support the business process, to meet legal requirements, and to support operational processes? The longer the retention period, the more the solution architecture needs to account for potentially significant data volumes and technology upgrades or obsolescence. This will determine cost factors of keeping data online in a database or in an archive and media options such as online, nearline, or offline. 8

11 Does the data need to be accessed in the context of the original business application? If data has to be kept for an extended period of time, does the data need to be accessed in context of the original application? Consider the implications if the application is retired or upgraded. Will the data still need to be viewed? If so, this may have an impact on whether archiving the data to a non-database format is an option. How often will data be accessed over time, and what are the performance expectations? Migrating or archiving less frequently accessed database data to lower cost infrastructure for storage is an excellent option for reducing the overall cost of managing the data. If the number of users and the frequency of accessing the archive data will be relatively high, I/O will need to be factored in when selecting the target architecture for the archive data. It is typical to limit access to the archive data to a smaller set of super users or administrators. If few users will be accessing the data, and the number of times the data will be accessed is limited, it is a good candidate for lower cost storage with lower performance characteristics. Even if access is expected to be minimal to none, with practically no users, the data may still need to be accessed by auditors or legal during ediscovery online access or searchability may drive the target architecture. Aside from architecting a software solution that drives cost out of managing database growth, server and storage options can offer significant benefits. The answers to the questions above should provide a good basis for system architects to deliver cost effective designs. Classifying and categorizing database data based on retention requirements and end-user access patterns enables IT organizations to employ a strategy that introduces significant cost savings through reduced storage and server compute requirements. Being smart about where data is stored and eliminating redundant copies of data allows IT to do more with less. Spring cleaning opens up real estate that can accommodate future capacity requirements. About Informatica Informatica Corporation (Nasdaq:INFA) is the world s number one independent provider of data integration software. Organizations around the world rely on Informatica to realize their information potential and drive top business imperatives. Informatica Vibe, the industry s first and only embeddable virtual data machine (VDM), powers the unique Map Once. Deploy Anywhere. capabilities of the Informatica Platform. Worldwide, over 5,000 enterprises depend on Informatica to fully leverage their information assets from devices to mobile to social to big data residing on-premise, in the Cloud and across social networks. For more information, call ( in the U.S.), or visit Leveraging features within your database or provided by the application vendor may suffice if your database data model is straightforward and the process is a one-time cleanup job. But if your data model is complex, spanning several tables with complex business logic, consider Informatica Data Archive highly scalable, full-featured smart partitioning and data archiving software. It helps your IT organization significantly improve application performance and cost-effectively manage data growth in a range of enterprise business applications while lowering cost and risk. With Informatica Data Archive, you can segment data based on business value, safely archive inactive application data, and deliver seamless access to archived data for the business. Three Approaches to Managing Database Growth 9

12 Worldwide Headquarters, 100 Cardinal Way, Redwood City, CA 94063, USA Phone: Fax: Toll-free in the US: informatica.com linkedin.com/company/informatica twitter.com/informaticacorp 2014 Informatica Corporation. All rights reserved. Informatica and Put potential to work are trademarks or registered trademarks of Informatica Corporation in the United States and in jurisdictions throughout the world. All other company and product names may be trade names or trademarks. IN09_0414_02640

Enforce Governance, Risk, and Compliance Programs for Database Data

Enforce Governance, Risk, and Compliance Programs for Database Data Enforce Governance, Risk, and Compliance Programs for Database Data With an Information Lifecycle Management Strategy That Includes Database Archiving, Application Retirement, and Data Masking WHITE PAPER

More information

Informatica Application Information Lifecycle Management

Informatica Application Information Lifecycle Management Brochure Informatica Application Information Lifecycle Management Cost-Effectively Manage Every Phase of the Information Lifecycle Controlling Explosive Data Growth Informatica Application Information

More information

Upgrade to Oracle E-Business Suite R12 While Controlling the Impact of Data Growth WHITE PAPER

Upgrade to Oracle E-Business Suite R12 While Controlling the Impact of Data Growth WHITE PAPER Upgrade to Oracle E-Business Suite R12 While Controlling the Impact of Data Growth WHITE PAPER This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information )

More information

A Practical Guide to Legacy Application Retirement

A Practical Guide to Legacy Application Retirement White Paper A Practical Guide to Legacy Application Retirement Archiving Data with the Informatica Solution for Application Retirement This document contains Confidential, Proprietary and Trade Secret

More information

Data Center Consolidation in the Public Sector

Data Center Consolidation in the Public Sector White Paper Data Center in the Public Sector Developing a Strategy that Reduces Costs, Improves Operational Efficiency, and Enhances Information Security This document contains Confidential, Proprietary

More information

Managing Data Growth in Oracle E-Business Suite with Data Archiving and Test Data Management. White Paper

Managing Data Growth in Oracle E-Business Suite with Data Archiving and Test Data Management. White Paper Managing Data Growth in Oracle E-Business Suite with Data Archiving and Test Data Management White Paper This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information

More information

Accelerating Insurance Legacy Modernization

Accelerating Insurance Legacy Modernization White Paper Accelerating Insurance Legacy Modernization Avoiding Data Breach During Application Retirement with the Informatica Solution for Test Data Management This document contains Confidential, Proprietary

More information

A Practical Guide to Retiring Insurance Legacy Applications. White Paper

A Practical Guide to Retiring Insurance Legacy Applications. White Paper A Practical Guide to Retiring Insurance Legacy Applications White Paper This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica Corporation

More information

Informatica Application Information Lifecycle Management

Informatica Application Information Lifecycle Management Informatica Application Information Lifecycle Management Cost-Effectively Manage Every Phase of the Information Lifecycle brochure Controlling Explosive Data Growth The era of big data presents today s

More information

Developing a Lean Application Portfolio Using Archiving

Developing a Lean Application Portfolio Using Archiving White Paper The Benefits of a Lean Application Portfolio Embracing Application Retirement as a Core IT Strategy This document contains Confidential, Proprietary and Trade Secret Information ( Confidential

More information

Integrating Email Verification and Hygiene into Marketo

Integrating Email Verification and Hygiene into Marketo User Guide Integrating Email Verification and Hygiene into Marketo Step by Step Using Webhooks This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information )

More information

Informatica Cloud MDM for Salesforce: Hierarchy Management. White Paper

Informatica Cloud MDM for Salesforce: Hierarchy Management. White Paper Informatica Cloud MDM for Salesforce: Hierarchy Management White Paper This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica Corporation

More information

The Informatica Platform for Data Driven Healthcare

The Informatica Platform for Data Driven Healthcare Solutions Brochure The Informatica Platform for Data Driven Healthcare Solutions for Payers This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of

More information

Test Data Management for Security and Compliance

Test Data Management for Security and Compliance White Paper Test Data Management for Security and Compliance Reducing Risk in the Era of Big Data WHITE PAPER This document contains Confidential, Proprietary and Trade Secret Information ( Confidential

More information

White Paper. An Introduction to Informatica s Approach to Enterprise Architecture and the Business Transformation Toolkit

White Paper. An Introduction to Informatica s Approach to Enterprise Architecture and the Business Transformation Toolkit White Paper An Introduction to Informatica s Approach to Enterprise Architecture and the Business Transformation Toolkit This document contains Confidential, Proprietary and Trade Secret Information (

More information

White Paper. Successful Legacy Systems Modernization for the Insurance Industry

White Paper. Successful Legacy Systems Modernization for the Insurance Industry White Paper Successful Legacy Systems Modernization for the Insurance Industry This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica

More information

5 Steps to Increase the Effectiveness of Email Marketing. White Paper

5 Steps to Increase the Effectiveness of Email Marketing. White Paper 5 Steps to Increase the Effectiveness of Email Marketing White Paper This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica Corporation

More information

Replicating Salesforce.com Data for Operational Reporting and Compliance WHITE PAPER

Replicating Salesforce.com Data for Operational Reporting and Compliance WHITE PAPER Replicating Salesforce.com Data for Operational Reporting and Compliance WHITE PAPER This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica

More information

The Informatica Platform for Data Driven Healthcare

The Informatica Platform for Data Driven Healthcare Solutions Brochure The Informatica Platform for Data Driven Healthcare Solutions for Providers This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information )

More information

The Requirements for Universal Master Data Management (MDM) White Paper

The Requirements for Universal Master Data Management (MDM) White Paper The Requirements for Universal Master Data Management (MDM) White Paper This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica Corporation

More information

Cost Take-Out Strategy for Department of Defense Operations and Maintenance

Cost Take-Out Strategy for Department of Defense Operations and Maintenance White Paper Cost Take-Out Strategy for Department of Defense Operations and Maintenance How to Reduce IT Costs Using Solutions for Lean Data Management This document contains Confidential, Proprietary

More information

The Informatica Solution for Data Privacy

The Informatica Solution for Data Privacy The Informatica Solution for Data Privacy Enforcing Data Security in the Era of Big Data WHITE PAPER This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information

More information

Informatica and the Vibe Virtual Data Machine

Informatica and the Vibe Virtual Data Machine White Paper Informatica and the Vibe Virtual Data Machine Preparing for the Integrated Information Age This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information

More information

A Road Map to Successful Customer Centricity in Financial Services. White Paper

A Road Map to Successful Customer Centricity in Financial Services. White Paper A Road Map to Successful Customer Centricity in Financial Services White Paper This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica

More information

White Paper. Data Quality: Improving the Value of Your Data

White Paper. Data Quality: Improving the Value of Your Data White Paper Data Quality: Improving the Value of Your Data This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica Corporation and may

More information

5 Ways Informatica Cloud Data Integration Extends PowerCenter and Enables Hybrid IT. White Paper

5 Ways Informatica Cloud Data Integration Extends PowerCenter and Enables Hybrid IT. White Paper 5 Ways Informatica Cloud Data Integration Extends PowerCenter and Enables Hybrid IT White Paper This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information

More information

How To Create A Healthcare Data Management For Providers Solution From An Informatica Data Management Solution

How To Create A Healthcare Data Management For Providers Solution From An Informatica Data Management Solution White Paper Healthcare Data Management for Providers Expanding Insight, Increasing Efficiency, Improving Care This document contains Confidential, Proprietary and Trade Secret Information ( Confidential

More information

Data Sheet: Archiving Symantec Enterprise Vault Store, Manage, and Discover Critical Business Information

Data Sheet: Archiving Symantec Enterprise Vault Store, Manage, and Discover Critical Business Information Store, Manage, and Discover Critical Business Information Managing millions of mailboxes for thousands of customers worldwide, Enterprise Vault, the industry leader in email and content archiving, enables

More information

Salesforce.com to SAP Integration

Salesforce.com to SAP Integration White Paper Salesforce.com to SAP Integration Practices, Approaches and Technology David Linthicum This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information

More information

Informatica Dynamic Data Masking

Informatica Dynamic Data Masking Informatica Dynamic Data Masking Preventing Data Breaches with Benchmark-Proven Performance WHITE PAPER This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information

More information

Informatica ILM Archive and Application Retirement

Informatica ILM Archive and Application Retirement Informatica ILM Archive and Application Retirement Thierry AUDOT Technical Manager EMEA 26 th September 2012 1 Live Archiving What are key users pain points? My reports take forever to run! I need all

More information

Top Five Ways to Ensure that Your CoE is an Ongoing Success. White Paper

Top Five Ways to Ensure that Your CoE is an Ongoing Success. White Paper Top Five Ways to Ensure that Your CoE is an Ongoing Success White Paper This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica Corporation

More information

Consolidating Multiple Salesforce Orgs: A Best Practice Guide. White Paper

Consolidating Multiple Salesforce Orgs: A Best Practice Guide. White Paper Consolidating Multiple Salesforce Orgs: A Best Practice Guide White Paper This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica Corporation

More information

From Lab to Factory: The Big Data Management Workbook

From Lab to Factory: The Big Data Management Workbook Executive Summary From Lab to Factory: The Big Data Management Workbook How to Operationalize Big Data Experiments in a Repeatable Way and Avoid Failures Executive Summary Businesses looking to uncover

More information

Informatica Application Retirement

Informatica Application Retirement Informatica Application Retirement Executive Insights for the Healthcare Industry CIO WHITE PAPER This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information

More information

Increase Your Landing Page Conversion Rate 10-30%:

Increase Your Landing Page Conversion Rate 10-30%: White Paper Increase Your Landing Page Conversion Rate 10-30%: Data Validation: The Secret to Landing Page Optimization This document contains Confidential, Proprietary and Trade Secret Information ( Confidential

More information

WHITE PAPER. 9 Steps to Successful Information Lifecycle Management: Best Practices for Effi cient Database Archiving

WHITE PAPER. 9 Steps to Successful Information Lifecycle Management: Best Practices for Effi cient Database Archiving WHITE PAPER 9 Steps to Successful Information Lifecycle Management: Best Practices for Effi cient Database Archiving This document contains confi dential, proprietary, and trade secret information ( Confi

More information

16 TB of Disk Savings and 3 Oracle Applications Modules Retired in 3 Days: EMC IT s Informatica Data Retirement Proof of Concept

16 TB of Disk Savings and 3 Oracle Applications Modules Retired in 3 Days: EMC IT s Informatica Data Retirement Proof of Concept 16 TB of Disk Savings and 3 Oracle Applications Modules Retired in 3 Days: EMC IT s Informatica Data Retirement Proof of Concept Applied Technology Abstract This white paper illustrates the ability to

More information

Choosing the Right Master Data Management Solution for Your Organization

Choosing the Right Master Data Management Solution for Your Organization Choosing the Right Master Data Management Solution for Your Organization Buyer s Guide for IT Professionals BUYER S GUIDE This document contains Confidential, Proprietary and Trade Secret Information (

More information

60 TB of Savings in 4 Days: EMC IT s Informatica Data Archive Proof of Concept

60 TB of Savings in 4 Days: EMC IT s Informatica Data Archive Proof of Concept 60 TB of Savings in 4 Days: EMC IT s Informatica Data Archive Proof of Concept Applied Technology Abstract This white paper illustrates the ability to reduce the data growth challenge seen with EMC s Oracle

More information

PIM for Search Engine Optimization

PIM for Search Engine Optimization White Paper PIM for Search Engine Optimization 5 Ways to Supercharge your SEO with PIM This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica

More information

Driving Down the High Cost of Storage. Pillar Axiom 600

Driving Down the High Cost of Storage. Pillar Axiom 600 Driving Down the High Cost of Storage Pillar Axiom 600 Accelerate Initial Time to Value, and Control Costs over the Long Term Make a storage investment that will pay off in rapid time to value and low

More information

Data Governance Baseline Deployment

Data Governance Baseline Deployment Service Offering Data Governance Baseline Deployment Overview Benefits Increase the value of data by enabling top business imperatives. Reduce IT costs of maintaining data. Transform Informatica Platform

More information

Why enterprise data archiving is critical in a changing landscape

Why enterprise data archiving is critical in a changing landscape Why enterprise data archiving is critical in a changing landscape Ovum white paper for Informatica SUMMARY Catalyst Ovum view The most successful enterprises manage data as strategic asset. They have complete

More information

Informatica Data Quality Product Family

Informatica Data Quality Product Family Brochure Informatica Product Family Deliver the Right Capabilities at the Right Time to the Right Users Benefits Reduce risks by identifying, resolving, and preventing costly data problems Enhance IT productivity

More information

SMART ARCHIVING. The need for a strategy around archiving. Peter Van Camp

SMART ARCHIVING. The need for a strategy around archiving. Peter Van Camp SMART ARCHIVING The need for a strategy around archiving Peter Van Camp I.R.I.S. mission I.R.I.S. mission : Increase our customers productivity and knowledge through helping them better manage their documents,

More information

A Faster Path to Profit for Technology Solution Providers. White Paper

A Faster Path to Profit for Technology Solution Providers. White Paper A Faster Path to Profit for Technology Solution Providers White Paper This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica Corporation

More information

Enterprise Data Integration

Enterprise Data Integration Enterprise Data Integration Access, Integrate, and Deliver Data Efficiently Throughout the Enterprise brochure How Can Your IT Organization Deliver a Return on Data? The High Price of Data Fragmentation

More information

Informatica Master Data Management

Informatica Master Data Management Brochure Informatica Master Data Management Improve Operations and Decision Making with Consolidated and Reliable Business-Critical Data This document contains Confidential, Proprietary and Trade Secret

More information

Data Governance Implementation

Data Governance Implementation Service Offering Data Governance Implementation Leveraging Data to Transform the Enterprise Benefits Use existing data to enable new business initiatives Reduce costs of maintaining data by increasing

More information

Healthcare Data Management

Healthcare Data Management Healthcare Data Management Expanding Insight, Increasing Efficiency, Improving Care WHITE PAPER This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information

More information

Anatomy of an archiving project

Anatomy of an archiving project Enterprise Data Management Solutions February 2008 IBM Information Management software Anatomy of an archiving project Page 2 Contents 2 Executive summary 3 What is enterprise data management? 4 Why archive?

More information

How to Run a Successful Big Data POC in 6 Weeks

How to Run a Successful Big Data POC in 6 Weeks Executive Summary How to Run a Successful Big Data POC in 6 Weeks A Practical Workbook to Deploy Your First Proof of Concept and Avoid Early Failure Executive Summary As big data technologies move into

More information

Informatica Ultra Messaging SMX Shared-Memory Transport

Informatica Ultra Messaging SMX Shared-Memory Transport White Paper Informatica Ultra Messaging SMX Shared-Memory Transport Breaking the 100-Nanosecond Latency Barrier with Benchmark-Proven Performance This document contains Confidential, Proprietary and Trade

More information

Data Governance Implementation

Data Governance Implementation Service Offering Implementation Leveraging Data to Transform the Enterprise Benefits Use existing data to enable new business initiatives Reduce costs of maintaining data by increasing compliance, quality

More information

ILM et Archivage Les solutions IBM

ILM et Archivage Les solutions IBM Information Management ILM et Archivage Les solutions IBM Dr. Christian ARNOUX Consultant Information Management IBM Suisse, Software Group 2007 IBM Corporation IBM Strategy for Enterprise Content Compliance

More information

Reduce your data storage footprint and tame the information explosion

Reduce your data storage footprint and tame the information explosion IBM Software White paper December 2010 Reduce your data storage footprint and tame the information explosion 2 Reduce your data storage footprint and tame the information explosion Contents 2 Executive

More information

Executive summary. Table of Contents. Technical Paper Minimize program coding and reduce development time with Infor Mongoose

Executive summary. Table of Contents. Technical Paper Minimize program coding and reduce development time with Infor Mongoose Technical Paper Minimize program coding and reduce development time with Infor Mongoose Executive summary Infor Mongoose is an application development framework that lets you easily design and deploy software

More information

IBM Software Five steps to successful application consolidation and retirement

IBM Software Five steps to successful application consolidation and retirement Five steps to successful application consolidation and retirement Streamline your application infrastructure with good information governance Contents 2 Why consolidate or retire applications? Data explosion:

More information

The Smart Archive strategy from IBM

The Smart Archive strategy from IBM The Smart Archive strategy from IBM IBM s comprehensive, unified, integrated and information-aware archiving strategy Highlights: A smarter approach to archiving Today, almost all processes and information

More information

Real World Strategies for Migrating and Decommissioning Legacy Applications

Real World Strategies for Migrating and Decommissioning Legacy Applications Real World Strategies for Migrating and Decommissioning Legacy Applications Final Draft 2014 Sponsored by: Copyright 2014 Contoural, Inc. Introduction Historically, companies have invested millions of

More information

Anatomy of an Oracle E-Business Suite archiving project

Anatomy of an Oracle E-Business Suite archiving project Enterprise Data Management Solutions February 2008 IBM Information Management software Anatomy of an Oracle E-Business Suite archiving project Page 2 Contents 2 Executive summary 3 What is enterprise data

More information

The Informatica Solution for Improper Payments

The Informatica Solution for Improper Payments The Informatica Solution for Improper Payments Reducing Improper Payments and Improving Fiscal Accountability for Government Agencies WHITE PAPER This document contains Confidential, Proprietary and Trade

More information

W H I T E P A P E R E X E C U T I V E S U M M AR Y S I T U AT I O N O V E R V I E W. Sponsored by: EMC Corporation. Laura DuBois May 2010

W H I T E P A P E R E X E C U T I V E S U M M AR Y S I T U AT I O N O V E R V I E W. Sponsored by: EMC Corporation. Laura DuBois May 2010 W H I T E P A P E R E n a b l i n g S h a r e P o i n t O p e r a t i o n a l E f f i c i e n c y a n d I n f o r m a t i o n G o v e r n a n c e w i t h E M C S o u r c e O n e Sponsored by: EMC Corporation

More information

Application retirement: enterprise data management strategies for decommissioning projects

Application retirement: enterprise data management strategies for decommissioning projects Enterprise Data Management Solutions April 2008 IBM Information Management software Application retirement: enterprise data management strategies for decommissioning projects Page 2 Contents 2 Executive

More information

Symantec Enterprise Vault for Microsoft Exchange

Symantec Enterprise Vault for Microsoft Exchange Symantec Enterprise Vault for Microsoft Exchange Store, manage, and discover critical business information Data Sheet: Archiving Trusted and proven email archiving Symantec Enterprise Vault, the industry

More information

DATA ARCHIVING. The first Step toward Managing the Information Lifecycle. Best practices for SAP ILM to improve performance, compliance and cost

DATA ARCHIVING. The first Step toward Managing the Information Lifecycle. Best practices for SAP ILM to improve performance, compliance and cost DATA ARCHIVING The first Step toward Managing the Information Lifecycle Best practices for SAP ILM to improve performance, compliance and cost 2010 Dolphin. West Chester, PA All rights are reserved, including

More information

Data Sheet: Archiving Symantec Enterprise Vault for Microsoft Exchange Store, Manage, and Discover Critical Business Information

Data Sheet: Archiving Symantec Enterprise Vault for Microsoft Exchange Store, Manage, and Discover Critical Business Information Store, Manage, and Discover Critical Business Information Trusted and Proven Email Archiving Symantec Enterprise Vault, the industry leader in email and content archiving, enables companies to store, manage,

More information

Delphix Modernization Engine REDUCING THE BURDEN OF REGULATION, LEGAL HOLD, AND DISCOVERY USING DELPHIX LIVE ARCHIVE WHITE PAPER

Delphix Modernization Engine REDUCING THE BURDEN OF REGULATION, LEGAL HOLD, AND DISCOVERY USING DELPHIX LIVE ARCHIVE WHITE PAPER Delphix Modernization Engine REDUCING THE BURDEN OF REGULATION, LEGAL HOLD, AND DISCOVERY USING DELPHIX LIVE ARCHIVE TABLE OF CONTENTS Introduction...3 Common Terms to Which We Refer....4 What is Live

More information

Symantec Data Center Solutions for Microsoft Exchange

Symantec Data Center Solutions for Microsoft Exchange Symantec Data Center Solutions for Microsoft Exchange INTRODUCTION Protecting data and applications was once a simple story: Establish a routine policy for business applications along with corporate data

More information

Case Study : How an Islamic Bank managed data growth and improved application performance using Database Archiving

Case Study : How an Islamic Bank managed data growth and improved application performance using Database Archiving Case Study : How an Islamic Bank managed data growth and improved application performance using Database Archiving Presenter Dan Stevens Solix Technologies Banking Sector The sector growth is fueled by

More information

Carestream Information Management Solutions. Managing the explosion in patient information

Carestream Information Management Solutions. Managing the explosion in patient information Managing the explosion in patient information Carestream Information Management Solutions Carestream Information Management Solutions The right information in the right place at the right time from the

More information

Anatomy of a PeopleSoft Enterprise archiving project

Anatomy of a PeopleSoft Enterprise archiving project Enterprise Data Management Solutions February 2008 IBM Information Management software Anatomy of a PeopleSoft Enterprise archiving project Page 2 Contents 2 Executive summary 3 What is enterprise data

More information

Make Big Data Small with Lean Data Management

Make Big Data Small with Lean Data Management Make Big Data Small with Lean Data Management Best Practices to Reduce Costs and Increase Efficiencies WHITE PAPER This document contains Confidential, Proprietary and Trade Secret Information ( Confidential

More information

Global Headquarters: 5 Speen Street Framingham, MA 01701 USA P.508.872.8200 F.508.935.4015 www.idc.com

Global Headquarters: 5 Speen Street Framingham, MA 01701 USA P.508.872.8200 F.508.935.4015 www.idc.com WHITE PAPER The IT Manager's Role in Proactive Information Retention and Disposition Management: Balancing ediscovery and Compliance Obligations with IT Operational and Budget Constraints Sponsored by:

More information

OPTIMIZING EXCHANGE SERVER IN A TIERED STORAGE ENVIRONMENT WHITE PAPER NOVEMBER 2006

OPTIMIZING EXCHANGE SERVER IN A TIERED STORAGE ENVIRONMENT WHITE PAPER NOVEMBER 2006 OPTIMIZING EXCHANGE SERVER IN A TIERED STORAGE ENVIRONMENT WHITE PAPER NOVEMBER 2006 EXECUTIVE SUMMARY Microsoft Exchange Server is a disk-intensive application that requires high speed storage to deliver

More information

5 WAYS STRUCTURED ARCHIVING DELIVERS ENTERPRISE ADVANTAGE

5 WAYS STRUCTURED ARCHIVING DELIVERS ENTERPRISE ADVANTAGE 5 WAYS STRUCTURED ARCHIVING DELIVERS ENTERPRISE ADVANTAGE Decommission Applications, Manage Data Growth & Ensure Compliance with Enterprise IT Infrastructure 1 5 Ways Structured Archiving Delivers Enterprise

More information

How To Store Data On Disk On Data Domain

How To Store Data On Disk On Data Domain WHITE PAPER Deduplication Storage Deduplication Storage for Nearline Applications September 2007 w w w. d a t a d o m a i n. c o m - 2 0 0 7 DATA DOMAIN I Contents Consolidated Support for Backup, Archiving,

More information

Data Sheet: Archiving Symantec Enterprise Vault for Microsoft Exchange Store, Manage, and Discover Critical Business Information

Data Sheet: Archiving Symantec Enterprise Vault for Microsoft Exchange Store, Manage, and Discover Critical Business Information Store, Manage, and Discover Critical Business Information Trusted and proven email archiving Enterprise Vault, the industry leader in email and content archiving, enables companies to store, manage, and

More information

Archiving A Dell Point of View

Archiving A Dell Point of View Archiving A Dell Point of View Dell Product Group 1 THIS POINT OF VIEW PAPER IS FOR INFORMATIONAL PURPOSES ONLY, AND MAY CONTAIN TYPOGRAPHICAL ERRORS AND TECHNICAL INACCURACIES. THE CONTENT IS PROVIDED

More information

Realizing and Maximizing an E-mail Archive ROI with EMC SourceOne Email Management Date: April, 2009 Author:

Realizing and Maximizing an E-mail Archive ROI with EMC SourceOne Email Management Date: April, 2009 Author: INFORMATION MANAGEMENT BRIEF Realizing and Maximizing an E-mail Archive ROI with EMC SourceOne Email Management Date: April, 2009 Author: Brian Babineau, Senior Analyst Abstract: ESG research indicates

More information

Archiving and Backup - The Basics

Archiving and Backup - The Basics Introduction Backup and archiving are useful tools for managing data, especially volumes of ageing data. Agency policies for retention and access necessitate that these tools should be used to implement

More information

Coping with the Data Explosion

Coping with the Data Explosion Paper 176-28 Future Trends and New Developments in Data Management Jim Lee, Princeton Softech, Princeton, NJ Success in today s customer-driven and highly competitive business environment depends on your

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

IBM Information Archive for Email, Files and ediscovery

IBM Information Archive for Email, Files and ediscovery IBM Information Archive for Email, Files and ediscovery Simplify and accelerate the implementation of an end-to-end archiving and ediscovery solution Highlights Take control of your content with an integrated,

More information

Start Now with Information Governance

Start Now with Information Governance Start Now with Information Governance Applying Information Governance to Unstructured Content 1 Information by 2020: The Big Picture There will be lots of it 35 ZB Generated by individuals >70% Digital

More information

TOP TEN CONSIDERATIONS

TOP TEN CONSIDERATIONS White Paper TOP TEN CONSIDERATIONS FOR CHOOSING A SERVER VIRTUALIZATION TECHNOLOGY Learn more at www.swsoft.com/virtuozzo Published: July 2006 Revised: July 2006 Table of Contents Introduction... 3 Technology

More information

Symantec Enterprise Vault for Microsoft Exchange

Symantec Enterprise Vault for Microsoft Exchange Symantec Enterprise Vault for Microsoft Exchange Store, manage, and discover critical business information Data Sheet: Archiving Trusted and proven email archiving Symantec Enterprise Vault, the industry

More information

IBM DB2 CommonStore for Lotus Domino, Version 8.3

IBM DB2 CommonStore for Lotus Domino, Version 8.3 Delivering information on demand IBM DB2 CommonStore for Lotus Domino, Version 8.3 Highlights Controls long-term growth Delivers records management and performance of your integration, supporting corporate

More information

Top Five Reasons Not to Master Your Data in SAP ERP. White Paper

Top Five Reasons Not to Master Your Data in SAP ERP. White Paper Top Five Reasons Not to Master Your Data in SAP ERP White Paper This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica Corporation and

More information

Veritas Enterprise Vault for Microsoft Exchange Server

Veritas Enterprise Vault for Microsoft Exchange Server Veritas Enterprise Vault for Microsoft Exchange Server Store, manage, and discover critical business information Trusted and proven email archiving Veritas Enterprise Vault, the industry leader in email

More information

Using EMC SourceOne Email Management in IBM Lotus Notes/Domino Environments

Using EMC SourceOne Email Management in IBM Lotus Notes/Domino Environments Using EMC SourceOne Email Management in IBM Lotus Notes/Domino Environments Technology Concepts and Business Considerations Abstract EMC SourceOne Email Management enables customers to mitigate risk, reduce

More information

Director, Value Engineering

Director, Value Engineering Director, Value Engineering April 25 th, 2012 Copyright OpenText Corporation. All rights reserved. This publication represents proprietary, confidential information pertaining to OpenText product, software

More information

Providing Self-Service, Life-cycle Management for Databases with VMware vfabric Data Director

Providing Self-Service, Life-cycle Management for Databases with VMware vfabric Data Director Providing Self-Service, Life-cycle Management for Databases with VMware vfabric Data Director Graeme Gordon Senior Systems Engineer, VMware 2013 VMware Inc. All rights reserved Traditional IT Application

More information

Anatomy of a Siebel Archiving Project. Seven Basic Principles for Archiving Siebel Application Data

Anatomy of a Siebel Archiving Project. Seven Basic Principles for Archiving Siebel Application Data Anatomy of a Siebel Archiving Project Seven Basic Principles for Archiving Siebel Application Data W H I T E P A P E R January 2007 Contents Enterprise Data Management and Archiving...1 What is Enterprise

More information

Proven strategies for archiving complex relational data

Proven strategies for archiving complex relational data IBM Software Thought Leadership White Paper September 2010 Proven strategies for archiving complex relational data 2 Proven strategies for archiving complex relational data Contents 2 Executive summary

More information

Symantec Enterprise Vault for Microsoft Exchange Server

Symantec Enterprise Vault for Microsoft Exchange Server Symantec Enterprise Vault for Microsoft Exchange Server Store, manage, and discover critical business information Data Sheet: Archiving Trusted and proven email archiving performance and users can enjoy

More information

OnX Oracle Cloud Services

OnX Oracle Cloud Services OnX Oracle Cloud Services BUSINESS CHALLENGES There are several business challenges that drive the cloud discussion and cloud infrastructure market. These business challenges are very different from the

More information

Oracle Content Management and Archiving

Oracle Content Management and Archiving 1 Oracle Content Management and Archiving Donna Harland Principal Product Manager SAM QFS and Archiving Solutions Agenda Archive and Tiered Storage Value What is Oracle Content Management?

More information

Facilitating Compliance and Intelligent Information Management with Effective Database Management

Facilitating Compliance and Intelligent Information Management with Effective Database Management White Paper Facilitating Compliance and Intelligent Information Management with Effective Database Management A Review of Solix Technologies Enterprise Data Management Suite By Brian Babineau, Senior Analyst

More information