Success Keys For Migrating From Sybase ASE to DB2 UDB

Size: px
Start display at page:

Download "Success Keys For Migrating From Sybase ASE to DB2 UDB"

Transcription

1 White Paper Success Keys For Migrating From Sybase ASE to DB2 UDB Part 1: Data Migration The purpose of this paper is to describe the key success factors that help migrate the Sybase Database schema, underlying data and the security permissions to DB2 UDB. It clearly shows that the success depends not only on the strategy and the approach but also on the usage of appropriate tools/scripts and the adoption of best practices during the execution.

2 About the Authors Vairan Rajendran Vairan Rajendran is a senior consultant working with the GCP Infrastructure Consulting Group. He has more than 15 years of experience, covering a wide range of areas including Performance, Capacity & Availability Management, IT Infrastructure Blue-printing, Technology Refresh, IT Architecture and Transformation solutions. Sajad Javid Sajad Javid is a consultant with the GCP Infrastructure Consulting Group. He has more than 12 years of experience, covering a wide range of areas including Performance, Capacity & Availability Management, Architecture solutions, System Integration and Technology Refresh Programs Asherin Rahim Asherin Rahim is an assistant consultant working with the GCP Infrastructure Consulting Group. She has more than 9 years of experience covering a wide range of areas including Performance, Scalability and Technology Refresh Programs. 2

3 Abbreviations and Acronyms The following table lists the abbreviations used in this document. Abbreviation Description DB2 IBM Database 2 DBMS Database Management System DDL Data Definition Language ETL Extract, Transform & Load GCP Global Consulting Practice IDMT IBM Data Movement Tool MBCS Multi Byte Character Set MTK IBM Migration Tool Kit PROD Production SBCS Single Byte Character Set TCS Tata Consultancy Services UAT User Acceptance Testing UDB Universal Database 3

4 Table of Contents 1. Why Migrate From Sybase? 5 2. Overall Data Migration Approach 5 3. Success Key 1: Build An Accurate Source Database Inventory 7 4. Success Key 2: Build A Comprehensive Pattern Repository 7 5. Success Key 3: Use A Precise Schema Migration Strategy 8 6. Success Key 4: Use A Precise Data Migration Strategy Success Key 5: Choose Right Tools For The Migration Success Key 6: Use An Appropriate Security Migration Strategy Other Considerations Conclusion 15 4

5 Why Migrate from Sybase? When we stepped into Mike's New Jersey office, he looked a little pensive and withdrawn. There were clearly some pressing challenges that he was facing. After discussing the issue for a few minutes, we learnt that his current database portfolio was the main cause of concern. The top management has asked Mike to rationalise and optimise his database portfolio so that the total cost of ownership (TCO) could be reduced, and he turned to us for help. TCS took on the challenge and our first step was an assessment of the database portfolio. One of the key findings was that Mike had the enterprise-wide license to use DB2 UDB. The Sybase ASE was being used for a small set of applications which had very few reporting jobs. The usage analysis of these Sybase reports revealed that some of these were not used at all. Hence, we suggested moving to DB2 UDB and merging the Sybase reporting functionality to one of the existing applications. Though Mike was happy that this would reduce TCO considerably by eliminating the Sybase ASE license and support costs, he was concerned about implementing the recommendation. This paper provides pointers on how to migrate smoothly from Sybase to DB2 UDB. In a multi-dbms environment, there are other key factors which may trigger similar DBMS consolidation projects: High operational costs to business value ratio Unsupported versions of Sybase Issues with upgrade from the current version to higher versions High license cost for migration from the current version to higher versions Minimal skill availability Technology Adaptation/Standardisation to a common database across the enterprise Overall Data Migration Approach In any migration project, while a good strategy plays a major role, the application of the strategy is equally important. The right approach enables the migration team to get the answers to the following key questions and guides them in the deployment of the strategy: What are the key elements that must be included as part of the migration? What strategy should be applied during migration for each of these key elements? What is the target state for these key elements? What is the impact of moving these elements to the target state? What are the key enablers for the smooth migration of these elements? What are the cost implications of this migration? What validation mechanisms/strategies are available to verify the migration? What are the resource requirements for this migration? The answers to the above key questions will help plan a winning approach for the migration. 5

6 The following diagram describes a typical Sybase to DB2 UDB data migration approach involving Schema migration, Data migration and Security migration. Schema Migration Security Migration Data Migration Extract Metadata Extract Security Data Generate Scripts Extract Metadata Create Metadata inventory Extract Logins / Users / Groups Extract Object Authorizations Use 3 rd Party Tools to Generate Scripts Analyze & Fix Tool Errors Source Data Scanning Create Pattern repository Analyze Process Changes Code page considerations Scan for special characters Generate and Run Scripts Generate and Run Scripts Execute Scripts CLOB considerations Use 3 rd Party tools to generate scripts Scripts for Users, Groups in AIX Run Load / Import Scripts to Load Data Data Size analysis Run Scripts to Generate DDL Scripts for Object Authorizations in DB2 Analyze & Fix Errors Run DDL in Target DB2 Server Run Scripts both in AIX and DB2 Validate Schema Migration Validate Security Migration Validate Data Migration Extract Target Metadata Validate Users and Groups Run Row count and Audit checks Validate against Patterns Validate object authorizations Carryout Full data Compare Figure 1: Overall Data Migration Approach The Schema and Data Migration is carried out in the following phases: 1. Schema migration This is the first step and involves the migration of the database structure and objects, along with the migration of security permission and authorisation required for the users and groups to login to the database. 2. Data Migration This is the second step where the data from the source Sybase tables is extracted using a tool/script and loaded on to the target DB2 UDB tables in single or multiple steps, depending upon the complexity and size of the tables. 6

7 Success Key 1: Build an Accurate Source Database Inventory The first and most important factor for the success of the migration is the creation of an accurate inventory consisting of database instances, schemas, database objects, data types used, users and groups. These details have to be collected for each of the environments (Development, Test, and UAT), along with the size of the data and the log files, in order to create an effective migration strategy. The following details are collected as part of the inventory: List of environments List of database instances List of database schemas List of database objects such as tables, aliases, views, indexes, triggers, constraints, procedures, rules, and so on List of data types used Size of each database instance List of users and groups At the basic level, the above inventory will help plan for the resources required for the migration. Hence, it is important to have a complete inventory to arrive at the resources and the cost elements for the migration. Success Key 2: Build a Comprehensive Pattern Repository The second important factor is the creation of a comprehensive pattern repository. This repository should have both the source data type patterns and the target data type patterns, and this involves the identification of: the source data type patterns the equivalent target data type patterns the impacted patterns in the source that need to be changed during migration 7

8 Source and Target Data Types The following table provides a snapshot of the various Sybase data types and the equivalent DB2 UDB data types: SYBASE CHAR(N) VARCHAR(N) NCHAR(N) NVARCHAR(N) TEXT SYSNAME SMALLDATETIME DATETIME DATE TIMESTAMP TINYINT SMALLINT INT DB2 UDB CHAR(N), VARCHAR(N) VARCHAR(N) GRAPHIC(N), VARGRAPHIC(N) VARGRAPHIC(N) CLOB(N) VARCHAR(30) TIMESTAMP TIMESTAMP DATE TIMESTAMP SMALLINT SMALLINT INT SYBASE DB2 UDB NUMERIC(P,S) NUMERIC(P,S) DECIMAL(P,S) DECIMAL(P,S) REAL REAL FLOAT FLOAT DOUBLE PRECISION DOUBLE BINARY CHARACTER(N) For Bit Data VARCHAR(N) For Bit Data VARBINARY VARCHAR(N) For Bit Data IMAGE BLOB(N) BIT SMALLINT SMALLMONEY User Defined Type (UDT) with DECIMAL (10,4) MONEY User Defined Type (UDT) with DECIMAL (19,4) IDENTITY IDENTITY Table 1 Data Type Impact Analysis Identify all the impacted data types by comparing the source and the target data types. Identify the occurrence of the impacted data types across the databases. Based on the quantum of the impact, decide on the data type conversion process either automated or manual. Pattern Repository Build a pattern repository to store both the source and the target data type patterns. The source data types from Sybase and the target DB2 UDB data types, along with the transformation scenarios, need to be stored in a pattern repository. Utilise this repository while validating the schema migration process, and update it on a regular basis to account for the changes discovered during the validation process. Success Key 3: Use a Precise Schema Migration Strategy The third important factor for the success of the migration is the schema migration strategy. Knowing the answers to the following questions will help the migration team build a successful schema migration strategy: Do we have an accurate inventory of the schema/database objects (tables, aliases, indices, constraints, and so on)? How will the schema be migrated? For example, using 3rd party tools, scripts, and so on. What is the validation strategy for the migrated schema? 8

9 Schema migration refers to the set of activities that must be performed in order to migrate a portion of the underlying data structure/metadata of the Sybase database system. These activities include migrating tables, aliases, associated indices and constraints from Sybase Database to DB2 UDB. Note: The other database objects including stored procedures, triggers and views will be migrated as a part of the application migration which is detailed in the next white paper, Success Keys for Sybase to UDB Part 2: Application Migration. Sybase Scan for Special Characters (based on code page) Extract Source DDL Identify Column Length Changes Generate Custom Scripts Use 3rd party tool for Schema Migration Script Generation Execute Scripts to Generate DB2 DDL DDL Post Processing Table Space Mapping Create Schema in DB2 Database Pattern Repository Validate Migration Figure 2: Schema Migration Db2 UDB The following points should be considered while migrating schema from Sybase to DB2 UDB: In DB2, all column names are capitalised by default and are case insensitive. This will result in all column names being in upper case in DB2 UDB. This will not affect the way they are accessed in applications. While loading tables with IDENTITY columns, default identity processing will be bypassed in the DB2 LOAD process to properly migrate identity values from Sybase to DB2 UDB. Code Page Changes DB2 UDB mostly uses UTF-8 Unicode for encoding data. Sybase, version onwards, supports the Unicode character set. However, some of the old Sybase installations still use single-byte character set (SBCS) code pages such as ISO , CP850, among others, to encode data. 9

10 Unicode supports multi-byte character sets (MBCS). Moving data from a SBCS to a MBCS character set can cause data truncation in the target environment (depending upon the underlying data and the size of the table column), unless the target data type is handled appropriately. So, during the schema migration process, a special character scan should be performed to identify potential truncation candidates and configure the data tools to transform the data to Unicode. A strategy needs to be applied to avoid truncation. For example, DB2 data types NCHAR and NVARCHAR can properly take Multi-byte Unicode data without spanning multiple positions and can therefore avoid data truncation. So, one strategy could be to replace all character columns that have special characters occupying multibytes in DB2 to NCHAR or NVARCHAR (instead for CHAR and VARCHAR respectively). Schema Validation It is important to verify and validate the schema migration before proceeding further, since data migration depends heavily on the metadata. By validating the schema migration in the development/test databases, one can become familiar with the migration tools and the process itself, and this helps to understand the following: Which special cases apply to the environment and which migration approach will be most efficient in the current context? Where are the log files saved and how can they be read? What information do they provide? Which techniques may be used to mitigate downtime? How can problems that occur be dealt with? A combination of DB Solo (a third party tool) and Custom scripts can be used to ensure that the schema conversion is complete. DB Solo produces a report with the list of changes (all objects) between the source and target database. Custombuilt scripts can be used to compare the mismatches with the data type change patterns to flag changes as genuine or in-error for validation. DML Validation Post schema migration, all DML operations should be performed on a set of migrated tables to ensure normal SQL processing (INSERT, UPDATE, SELECT and DELETE). 10

11 Success Key 4: Use a Precise Data Migration Strategy The fourth important factor is the data migration strategy. For this, it is essential to know the answers to the following questions: How will the data be migrated to the target platform? By what means will the data be migrated using 3rd party tools, scripts, and so on? What is the validation strategy for the migrated data? Data Migration Strategy A Sybase to DB2 UDB data migration strategy is depicted in the following diagram. It involves following steps: Extracting the source data from the Sybase database Loading the extracted data into the target DB2 database The migration team usually uses third party tools to perform the ETL process and any post processing steps required on the migrated data. Use 3rd party tool for Data migration script generation Sybase Execute Scripts to extract data from Sybase Custom scripts from Schema Migration Load data to Db2 Validate Data Migration Row count Audit checks Full data compare Db2 UDB Figure 3: Data Migration 11

12 Verification and Validation For verification and validation of the data migration from Sybase to DB2, a combination of DB Solo and custom built scripts may be employed to ensure that the data migration is correct and complete. Data comparison can be a time consuming process, especially for tables with a large amount of data (more than 10 million). One strategy could be to perform the full data comparison in test stages till the dry run for sign-off. During the actual migration (in PROD environment), a subset of data can be compared to ensure correctness. DB Solo can aid in comparing data from a set of tables and report on the differences to make the necessary modifications (if required) SELECT Queries can be run against tables containing special characters to validate the success of the data migration Post data-load into DB2 UDB, Indices may need to be rebuilt and statistics need to be updated for best performance Post migration backups at multiple levels (post schema and post data) will be required to enable better control of fallback levels during checkout. Success Key 5: Choose Right Tools for the Migration The fifth important factor for the success of the migration is the selection of a suitable tool for the migration. The key-base criteria for the tool selection include the following: Source data extraction capabilities Source data transformation capabilities Data loading capabilities Data staging capabilities Exception handling Schema and Data migration from Sybase Database to DB2 UDB may be accelerated using a combination of various tools that are available with third party vendors. Some of these tools are supplied along with the DBMS product itself. The following sub-sections describe the key features of various tools that may be used in the migration. Migration Tools IBM Migration Tool Kit IBM Migration Tool Kit (MTK) is a free utility from IBM to migrate a wide range of databases to DB2 UDB. MTK is an end-to-end migration solution and can convert database schema, database objects and data from other database systems to DB2 UDB. MTK is Java based and is available on both Windows and UNIX based platforms. MTK can connect to source databases, extract source metadata and create Scripts for data migration. 12

13 Ispirer SQLWays SQLWays is a commercial product from Ispirer Systems, that aids in the conversion of database objects, including application codes, from one database system to another. SQLWays is a licensed product, and provides an end-toend solution for migration with a high degree of conversion. SQLWays can connect to source databases using different DB protocols, and can extract metadata and table data. IBM Data Movement Tool IBM Data Movement Tool (IDMT) is a free tool available from IBM that can aid metadata and data migration. It is Java based, and can run on a variety of platforms. IDMT can connect to source databases, extract source metadata and create Scripts for data migration. IDMT has two distinct options to extract and load data during migration: Intermediate File-based Operation - Data is unloaded from Sybase in to a intermediate file and then loaded into Db2 Unix Pipe-based Operation: Data unload and load happens using a single Unix pipe Success Key 6: Use an appropriate Security Migration Strategy The sixth important factor is the security migration strategy. In Sybase, users are locally setup on the DBMS and the authorisations are given to these users and groups. But in DB2 UDB, users are created in the underlying operating system and DB2 UDB makes use of these operating system services for authentication. The following diagram describes the strategy for migrating the users, groups and authorisations from the Sybase system to DB2 UDB on the AIX platform. Sybase Extract User List from Sysusers - Sysalternates Extract Groups and Roles Extract Object Permissions Create Users / groups in AIX Validate Security Migration Apply Object Permissions AIX Server Db2 UDB Figure 4: Security Migration 13

14 The following items should be considered while migrating the security permissions from Sybase to DB2 UDB: In DB2, authentication is handled by the underlying operating system as against the database system in Sybase. Sybase logins and users should be cleaned up before they are migrated to AIX. Sybase database passwords need not be migrated because the DB2 UDB operating system services handles the authentication. Users should use their AIX passwords to log on to DB2 UDB. Sybase database object level permissions must be split-up and only the table level accesses will be migrated to the target system. The remaining accesses will be handled during the application migration process. During the production implementation, all the database object level authorisations must be applied only after the application database components are migrated, in a single step. Security Validation Typically, the following metrics are collected to validate the correctness of the security migration. Audit Metrics User Count Group Count User Authorisation Object Authorisation Description Comparison of count of user Logins on Sybase against AIX Comparison of count of Groups on Sybase against AIX Count of DB users against Connect access on DB2 Comparison of object authorisation from Sybase against DB2 Table 2 Other Considerations Though this part covers most of the aspects of the Sybase to DB2 UDB data migration, it is also important to follow some of the standard data migration best practices during the execution, such as: To migrate database schema and stored procedures, use the IBM MTK Tool which can greatly reduce the manual effort To generate the DDLs for the target databases, use the Erwin Data Modeler which can greatly reduce the manual effort Use scripts to automate the data migration process, and thereby reduce manual effort Use source code dump to cross verify the inventory and the analysis results 14

15 Conclusion A combination of business needs and technology investments are driving the Sybase exit migrations. Sybase to DB2 UDB migration may seem easy at first, but a cautious approach should be adopted by building a winning data migration strategy, creating a detailed migration approach and using tools/scripts wherever possible. The following success factors should be considered while carrying-out a Sybase to DB2 UDB Data migration programs: Building an accurate source database inventory Building a comprehensive pattern repository Using a precise schema migration strategy Using a precise data migration strategy Choosing the right tools for the migration Using an appropriate security migration strategy 15

16 About TCS Global Consulting Practice TCS Global Consulting Practice (GCP) is a key component in how TCS delivers additional value to clients. Using our collective industry insight, technology expertise, and consulting know-how, we partner with enterprises worldwide to deliver integrated end-to-end IT enabled business transformation services. By tapping our worldwide pool of resources - onsite, offshore and nearshore, our high caliber consultants leverage solution accelerators and practice capabilities, balanced with our knowledge of local market demands, to enable enterprises to effectively meet their business goals. GCP spearheads TCS' consulting capacity with consultants located in North America, UK, Europe, Asia Pacific, India, Ibero-America and Australia. Contact For more information about TCS' consulting services, us at global.consulting@tcs.com, or visit Subscribe to TCS White Papers TCS.com RSS: Feedburner: About Tata Consultancy Services Ltd (TCS) Tata Consultancy Services is an IT services, consulting and business solutions organization that delivers real results to global business, ensuring a level of certainty no other firm can match. TCS offers a consulting-led, integrated portfolio of IT and IT-enabled infrastructure, engineering TM and assurance services. This is delivered through its unique Global Network Delivery Model, recognized as the benchmark of excellence in software development. A part of the Tata Group, India s largest industrial conglomerate, TCS has a global footprint and is listed on the National Stock Exchange and Bombay Stock Exchange in India. For more information, visit us at IT Services Business Solutions Outsourcing All content / information present here is the exclusive property of Tata Consultancy Services Limited (TCS). The content / information contained here is correct at the time of publishing. No material from here may be copied, modified, reproduced, republished, uploaded, transmitted, posted or distributed in any form without prior written permission from TCS. Unauthorized use of the content / information appearing here may violate copyright, trademark and other applicable laws, and could result in criminal or civil penalties. Copyright 2012 Tata Consultancy Services Limited TCS Design Services M 05 12

The four windows of organizational change in training for ERP transformation

The four windows of organizational change in training for ERP transformation White Paper The four windows of organizational change in training for ERP transformation Managing users apprehension to change has always been a challenge for large scale ERP implementations. Moving the

More information

SQL Server An Overview

SQL Server An Overview SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system

More information

Omni-Channel Banking Customer Experience: Forget What You Thought You Knew about Channels

Omni-Channel Banking Customer Experience: Forget What You Thought You Knew about Channels A Point of View Omni-Channel Banking Customer Experience: Forget What You Thought You Knew about Channels In social media, customers discuss their experience across ALL your interaction channels, which

More information

Linking Transformational Initiatives to Desired Business Outcomes: Leveraging a Business-Metrics Driven Framework

Linking Transformational Initiatives to Desired Business Outcomes: Leveraging a Business-Metrics Driven Framework Business Process Services White Paper Linking Transformational Initiatives to Desired Business Outcomes: Leveraging a Business-Metrics Driven Framework About the Author Venkatesh Kuppuswamy Venkatesh Kuppuswamy

More information

Business Process Services. White Paper. Automating Email Management: Managing Workflow Effectively

Business Process Services. White Paper. Automating Email Management: Managing Workflow Effectively Business Process Services White Paper Automating Email Management: Managing Workflow Effectively About the Authors Deva Latha S. Assistant Consultant Deva Latha has over nine years of experience in Business

More information

How To Create A Table In Sql 2.5.2.2 (Ahem)

How To Create A Table In Sql 2.5.2.2 (Ahem) Database Systems Unit 5 Database Implementation: SQL Data Definition Language Learning Goals In this unit you will learn how to transfer a logical data model into a physical database, how to extend or

More information

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

More information

Global Consulting Practice. White Paper. Mainframes: Bridging Legacy Systems. Building Digital Futures.

Global Consulting Practice. White Paper. Mainframes: Bridging Legacy Systems. Building Digital Futures. Global Consulting Practice White Paper Mainframes: Bridging Legacy Systems. Building Digital Futures. About the Author K Vaidyanathan K Vaidyanathan is a senior consultant with the Global Consulting Practice

More information

Conferencing Agent Enhancing the Communication Experience

Conferencing Agent Enhancing the Communication Experience White Paper Conferencing Agent Enhancing the Communication Experience To achieve corporate operational excellence, the existing resources of an organization must be utilized to the best possible extent.

More information

ion Customer Relationship Management (CRM) Solution

ion Customer Relationship Management (CRM) Solution ion Customer Relationship Management (CRM) Solution How do you command the loyalty of your customers in a competitive market? How do you achieve an increase in sales? To help you answer these questions,

More information

Over 18,400 branches. 21,843 ATMs. 261 million accounts. Enabling State Bank of India to create the world s largest homogenous banking network

Over 18,400 branches. 21,843 ATMs. 261 million accounts. Enabling State Bank of India to create the world s largest homogenous banking network Wealth Management Volatility and uncertainty in the markets have given rise to a new class of customers who are extremely cautious and demand absolute transparency from their advisors. They now expect

More information

Transportation Solutions Built on Oracle Transportation Management. Enterprise Solutions

Transportation Solutions Built on Oracle Transportation Management. Enterprise Solutions Transportation Solutions Built on Oracle Transportation Management Enterprise Solutions Optimizing transportation operations and ensuring improved customer service Today s complex and challenging business

More information

Procurement needs a Digital Strategy

Procurement needs a Digital Strategy White Paper Procurement needs a Digital Strategy Marketing executives across the world have very clearly been concerned with digital strategy for some time, leveraging the benefits of greater reach and

More information

Next Generation Electric Utilities Gear up Using Cloud Based Services

Next Generation Electric Utilities Gear up Using Cloud Based Services A Point of View Next Generation Electric Utilities Gear up Using Cloud Based Services Abstract Globally, liberalization of the electricity sector has driven a paradigm shift in the ownership structure,

More information

Business Process Services. White Paper. Improving Efficiency in Business Process Services through User Interface Re-engineering

Business Process Services. White Paper. Improving Efficiency in Business Process Services through User Interface Re-engineering Business Process Services White Paper Improving Efficiency in Business Process Services through User Interface Re-engineering About the Authors Mahesh Kshirsagar Mahesh has a vast experience of about 24

More information

Lead the Retail Revolution.

Lead the Retail Revolution. Lead the Retail Revolution. The retail industry is at the center of a dramatic shift in the way consumers shop and interact with their retailers. After hundreds of years of customers going to the store,

More information

Bring Your Own Device (BYOD) A point of view

Bring Your Own Device (BYOD) A point of view Bring Your Own Device (BYOD) A point of view BYOD - Consumer driven IT Today, consumers possess powerful devices for their personal needs. Often, the computing power and features of the devices bought

More information

Business Process Transformation A Pulse Check

Business Process Transformation A Pulse Check White Paper Business Process Transformation A Pulse Check Over the last decade or two, two trends have been noticeable across all businesses. The move towards consolidation of office-based operations,

More information

Business Process Services. White Paper. Personalizing E-Commerce: Improving Interactivity to Increase Revenues

Business Process Services. White Paper. Personalizing E-Commerce: Improving Interactivity to Increase Revenues Business Process Services White Paper Personalizing E-Commerce: Improving Interactivity to Increase Revenues About the Author Subramaniam MV Subramaniam is a Delivery Manager at Tata Consultancy Services

More information

Fact Sheet In-Memory Analysis

Fact Sheet In-Memory Analysis Fact Sheet In-Memory Analysis 1 Copyright Yellowfin International 2010 Contents In Memory Overview...3 Benefits...3 Agile development & rapid delivery...3 Data types supported by the In-Memory Database...4

More information

EMC DOCUMENTUM MANAGING DISTRIBUTED ACCESS

EMC DOCUMENTUM MANAGING DISTRIBUTED ACCESS EMC DOCUMENTUM MANAGING DISTRIBUTED ACCESS This white paper describes the various distributed architectures supported by EMC Documentum and the relative merits and demerits of each model. It can be used

More information

Business Process Services. White Paper. Social Media Influence: Looking Beyond Activities and Followers

Business Process Services. White Paper. Social Media Influence: Looking Beyond Activities and Followers Business Process Services White Paper Social Media Influence: Looking Beyond Activities and Followers About the Author Vandita Bansal Vandita Bansal is a subject matter expert in Analytics and Insights

More information

Business Process Services. White Paper. Mitigating Trade Fraud: The Case for Detecting Group Level Fraudulent Activity

Business Process Services. White Paper. Mitigating Trade Fraud: The Case for Detecting Group Level Fraudulent Activity Business Process Services White Paper Mitigating Trade Fraud: The Case for Detecting Group Level Fraudulent Activity About the Author Narasimha Murty M V Narasimha Murty holds a Master's degree in Mathematics

More information

Business Process Services. White Paper. Optimizing Extended Warranty Processes by Embracing Analytics

Business Process Services. White Paper. Optimizing Extended Warranty Processes by Embracing Analytics Business Process Services White Paper Optimizing Extended Warranty Processes by Embracing Analytics About the Author Dr. Anuj Prakash Anuj Prakash is a part of the TCS Analytics and Insights Practice,

More information

Backward Scheduling An effective way of scheduling Warehouse activities

Backward Scheduling An effective way of scheduling Warehouse activities Backward Scheduling An effective way of scheduling Warehouse activities Traditionally, scheduling algorithms were used in capital intensive production processes where there was a need to optimize the production

More information

Enterprise-wide Anti-money Laundering and KYC Initiatives A point of view

Enterprise-wide Anti-money Laundering and KYC Initiatives A point of view Enterprise-wide Anti-money Laundering and KYC Initiatives A point of view Introduction Every financial institution is charged with the responsibility of developing policies and procedures to combat money

More information

Business Process Services. White Paper. Improving Agility in Accounts Receivables with Statistical Prediction and Modeling

Business Process Services. White Paper. Improving Agility in Accounts Receivables with Statistical Prediction and Modeling Business Process Services White Paper Improving Agility in Accounts Receivables with Statistical Prediction and Modeling About the Authors R Rengesh Siva Rengesh Siva has over 14 years of experience in

More information

Business Process Services. White Paper. Effective Credit Risk Assessment Strengthening the Financial Spreading with Technology Enablers

Business Process Services. White Paper. Effective Credit Risk Assessment Strengthening the Financial Spreading with Technology Enablers Business Process Services White Paper Effective Credit Risk Assessment Strengthening the Financial Spreading with Technology Enablers About the Author Vijay Muppavarapu Vijay is a subject matter expert

More information

Oracle E-Business Suite (EBS) in the World of Oracle Exadata Engineered Systems

Oracle E-Business Suite (EBS) in the World of Oracle Exadata Engineered Systems A Point of View Oracle E-Business Suite (EBS) in the World of Oracle Exadata Engineered Systems As a proof-of-concept to evaluate the benefits of moving the Oracle E-Business Suite (EBS) database tier

More information

Ontrack PowerControls User Guide Version 8.0

Ontrack PowerControls User Guide Version 8.0 ONTRACK POWERCONTROLS Ontrack PowerControls User Guide Version 8.0 Instructions for operating Ontrack PowerControls in Microsoft SQL Server Environments NOVEMBER 2014 NOTICE TO USERS Ontrack PowerControls

More information

Retail. White Paper. Driving Strategic Sourcing Effectively with Supply Market Intelligence

Retail. White Paper. Driving Strategic Sourcing Effectively with Supply Market Intelligence Retail White Paper Driving Strategic Sourcing Effectively with Supply Market Intelligence About the Author Devaraj Chithur Devaraj is part of the Supply Chain group within Tata Consultancy Services (TCS)

More information

BPM Perspectives Positioning and Fitment drivers

BPM Perspectives Positioning and Fitment drivers BPM Perspectives Positioning and Fitment drivers BPM is a commonly used and much hyped acronym. It popularly stands for Business Process Management but now it achieves much more than just that. Especially

More information

Business Process Services. White Paper. Improving Regulatory Compliance in the Mortgage Industry

Business Process Services. White Paper. Improving Regulatory Compliance in the Mortgage Industry Business Process Services White Paper Improving Regulatory Compliance in the Mortgage Industry About the Author Lovette Patrick D'Souza Lovette Patrick D'Souza has over 10 years of experience in Banking

More information

Robotic Process Automation: Reenergizing the Directory Publishing Industry

Robotic Process Automation: Reenergizing the Directory Publishing Industry A Point of View Robotic Process Automation: Reenergizing the Directory Publishing Industry Abstract Evolving digital marketing avenues including video, SEM/SEO, mobile, and social media are fast replacing

More information

RNDr. Michal Kopecký, Ph.D. Department of Software Engineering, Faculty of Mathematics and Physics, Charles University in Prague

RNDr. Michal Kopecký, Ph.D. Department of Software Engineering, Faculty of Mathematics and Physics, Charles University in Prague course: Database Applications (NDBI026) WS2015/16 RNDr. Michal Kopecký, Ph.D. Department of Software Engineering, Faculty of Mathematics and Physics, Charles University in Prague student duties final DB

More information

Data Visualization in Ext Js 3.4

Data Visualization in Ext Js 3.4 White Paper Data Visualization in Ext Js 3.4 Ext JS is a client-side javascript framework for rapid development of cross-browser interactive Web applications using techniques such as Ajax, DHTML and DOM

More information

HiTech. White Paper. Storage-as-a-Service. SAN and NAS Reference Architectures leveraging Private Cloud Storage

HiTech. White Paper. Storage-as-a-Service. SAN and NAS Reference Architectures leveraging Private Cloud Storage HiTech White Paper -as-a-service SAN and NAS Reference Architectures leveraging Private Cloud About the Author Ankur Srivastava Ankur Srivastava is a Solution Architect working with the Hi Tech Industry

More information

Business Process Services. White Paper. Five Principles to Consider when Consolidating your Finance and Accounting Function

Business Process Services. White Paper. Five Principles to Consider when Consolidating your Finance and Accounting Function Business Process Services White Paper Five Principles to Consider when Consolidating your Finance and Accounting Function About the Authors Vikas Golchha, Associate Vice President, TCS Vikas is part of

More information

Business Process Services. White Paper. Configurable, Automated Workflows: Transforming Process Effectiveness for Business Excellence

Business Process Services. White Paper. Configurable, Automated Workflows: Transforming Process Effectiveness for Business Excellence Business Process Services White Paper Configurable, Automated Workflows: Transforming Process Effectiveness for Business Excellence About the Authors Ohm Kumar Ohm Kumar is a Business Analyst with the

More information

Web Portal Analytics

Web Portal Analytics This paper provides information on how the web analytics strategy can be implemented across the web portals and how various stakeholders can leverage the data that has been captured to optimize a range

More information

Digital Enterprise Unit. White Paper. Reimagining the Future of Field Service Management with Digital Technologies

Digital Enterprise Unit. White Paper. Reimagining the Future of Field Service Management with Digital Technologies Digital Enterprise Unit White Paper Reimagining the Future of Field Service Management with Digital Technologies About the Author Rahul Trisal Rahul is a senior Digital Strategy Consultant with TCS' Digital

More information

ion Manufacturing Solution

ion Manufacturing Solution ion Manufacturing Solution Today with ion, while I am driving home I get to see all the information that I need, even when I am in a customer place I can take decisions looking at the information that

More information

White Paper. Social Analytics

White Paper. Social Analytics White Paper Social Analytics This paper brings to forefront the growing popularity of social media as a source of data for analytics with relation to the telecom industry. The paper further elaborates

More information

Overview. Société Générale

Overview. Société Générale Payments Ever-changing market dynamics, customer expectations, rapidly evolving regulatory measures, ageing technology, consolidation in corporate treasury, advent of electronic instruments, increased

More information

KYCS - Integrating KYC with Social Identity: The Future-Ready Marketing Approach

KYCS - Integrating KYC with Social Identity: The Future-Ready Marketing Approach A Point of View KYCS - Integrating KYC with Identity: The Future-Ready Marketing Approach Abstract media has empowered us to voice and share our opinion on things that impact our lives. It has reshaped

More information

Ontrack PowerControls V8.1 for SQL ReadMe

Ontrack PowerControls V8.1 for SQL ReadMe Ontrack PowerControls V8.1 for SQL ReadMe Contents About the Free Trial Supported Environments Ontrack PowerControls Licensing Ontrack PowerControls Agents Limitations Technical Support About Kroll Ontrack

More information

Business Process Services. White Paper. Predictive Analytics in HR: A Primer

Business Process Services. White Paper. Predictive Analytics in HR: A Primer Business Process Services White Paper Predictive Analytics in HR: A Primer About the Authors Tuhin Subhra Dey Tuhin is a member of the Analytics and Insights team at Tata Consultancy Services (TCS), where

More information

Authentication in Apache Lenya

Authentication in Apache Lenya Authentication in Apache Lenya Using LDAP The user authentication mechanism in Apache Lenya is carried out by specifi c components using certain policy fi les. This process is, in itself, complex to understand

More information

Digital Enterprise. White Paper. Multi-Channel Strategies that Deliver Results with the Right Marketing Attribution Model

Digital Enterprise. White Paper. Multi-Channel Strategies that Deliver Results with the Right Marketing Attribution Model Digital Enterprise White Paper Multi-Channel Strategies that Deliver Results with the Right Marketing Model About the Authors Vishal Machewad Head Marketing Services Practice Vishal Machewad has over 13

More information

ion IT-as-a-Service Solution

ion IT-as-a-Service Solution ion IT-as-a-Service Solution "The ion Manufacturing Solution enabled us to control our business more meaningfully, including our field operations. Through the Field Force module, we have updated information

More information

Backlog Management Index (BMI) Evaluation and Improvement An ITIL Approach

Backlog Management Index (BMI) Evaluation and Improvement An ITIL Approach Backlog Management Index (BMI) Evaluation and Improvement An ITIL Approach Backlog Management Index is one of the important metrics that is closely monitored in Steady State of Maintenance and Support

More information

Green Desktop Infrastructure

Green Desktop Infrastructure White Paper Green Desktop Infrastructure An Approach to Reduce Desktop Carbon Footprint The proliferation of desktops is increasingly contributing to carbon emissions, through inefficient power consumption,

More information

Best Practices. Integration of Salesforce and Microsoft Dynamics GP

Best Practices. Integration of Salesforce and Microsoft Dynamics GP Best Practices Integration of Salesforce and Microsoft Dynamics GP Best Practices: Integration of Salesforce and Microsoft Dynamics GP Introduction Customer Relationship Management (CRM) is mainly used

More information

A pay-as-you-use model About TCS ion Integrated solutions Personalized solutions www.tcsion.com Automatic upgrades Increased agility

A pay-as-you-use model About TCS ion Integrated solutions Personalized solutions www.tcsion.com Automatic upgrades Increased agility ion Payroll Solution As organizations strive to improve employee morale, job satisfaction, and productivity, it becomes imperative to regularize the payroll cycles, in order to keep employees motivated.

More information

Oracle Migration Workbench

Oracle Migration Workbench Oracle Migration Workbench Reference Guide for SQL Server and Sybase Adaptive Server Migrations Release 9.2.0 for Microsoft Windows 98/2000/NT and Microsoft Windows XP September 2002 Part Number: B10254-01

More information

Real-Time Database Protection and. Overview. 2010 IBM Corporation

Real-Time Database Protection and. Overview. 2010 IBM Corporation Real-Time Database Protection and Monitoring: IBM InfoSphere Guardium Overview Agenda Business drivers for database security InfoSphere Guardium architecture Common applications The InfoSphere portfolio

More information

TCS Research Fellowship Program. Frequently Asked Questions by Researchers

TCS Research Fellowship Program. Frequently Asked Questions by Researchers TCS Research Fellowship Program Frequently Asked Questions by Researchers July 2010 Q1) What is the Aim of the scheme? The scheme is primarily aimed to help enhance our nation s talent base in doing research

More information

HiTech. White Paper. A Next Generation Search System for Today's Digital Enterprises

HiTech. White Paper. A Next Generation Search System for Today's Digital Enterprises HiTech White Paper A Next Generation Search System for Today's Digital Enterprises About the Author Ajay Parashar Ajay Parashar is a Solution Architect with the HiTech business unit at Tata Consultancy

More information

Order DMS. Sales automation for Parle Products

Order DMS. Sales automation for Parle Products Order Report Availability DMS Manage Deploy Sales automation for Parle Products Overview: Parle Products Limited is India s largest manufacturer of biscuits and confectionery. It has over 18 brands under

More information

Business Process Services. White Paper. Price Elasticity using Distributed Computing for Big Data

Business Process Services. White Paper. Price Elasticity using Distributed Computing for Big Data Business Process Services White Paper Price Elasticity using Distributed Computing for Big Data About the Authors Rajesh Kavadiki Rajesh is part of the Analytics and Insights team at Tata Consultancy Services

More information

Business Process Services. White Paper. Managing Customer Experience: Strategies for Success

Business Process Services. White Paper. Managing Customer Experience: Strategies for Success Business Process Services White Paper Managing Customer Experience: Strategies for Success About the Author Ashwin Fernandes, Assistant Manager, TCS Ashwin is a practice consultant in the Innovation and

More information

4 Logical Design : RDM Schema Definition with SQL / DDL

4 Logical Design : RDM Schema Definition with SQL / DDL 4 Logical Design : RDM Schema Definition with SQL / DDL 4.1 SQL history and standards 4.2 SQL/DDL first steps 4.2.1 Basis Schema Definition using SQL / DDL 4.2.2 SQL Data types, domains, user defined types

More information

ODBC Client Driver Help. 2015 Kepware, Inc.

ODBC Client Driver Help. 2015 Kepware, Inc. 2015 Kepware, Inc. 2 Table of Contents Table of Contents 2 4 Overview 4 External Dependencies 4 Driver Setup 5 Data Source Settings 5 Data Source Setup 6 Data Source Access Methods 13 Fixed Table 14 Table

More information

TCS Supply Chain Center of Excellence

TCS Supply Chain Center of Excellence TCS Supply Chain Center of Excellence Delivering Supply Chain Performance in Complex Dynamic Markets Supply Chain Management Supply Chain Management (SCM) has evolved and the focus has now shifted from

More information

Comparison of Open Source RDBMS

Comparison of Open Source RDBMS Comparison of Open Source RDBMS DRAFT WORK IN PROGRESS FEEDBACK REQUIRED Please send feedback and comments to s.hetze@linux-ag.de Selection of the Candidates As a first approach to find out which database

More information

Guardium Change Auditing System (CAS)

Guardium Change Auditing System (CAS) Guardium Change Auditing System (CAS) Highlights. Tracks all changes that can affect the security of database environments outside the scope of the database engine Complements Guardium's Database Activity

More information

Database Migration from MySQL to RDM Server

Database Migration from MySQL to RDM Server MIGRATION GUIDE Database Migration from MySQL to RDM Server A Birdstep Technology, Inc. Raima Embedded Database Division Migration Guide Published: May, 2009 Author: Daigoro F. Toyama Senior Software Engineer

More information

Securities Processing

Securities Processing Securities Processing Several challenges in the global securities market including new regulations, the pressure to reduce cost and minimize risk along with the mounting need for transparency, are forcing

More information

Beginning SQL, Differences Between Oracle and Microsoft

Beginning SQL, Differences Between Oracle and Microsoft Beginning SQL, Differences Between and Microsoft If you're new to SQL or just new to SQL, perhaps coming from a Microsoft environment, it may seem like the two versions should be very similar, and they

More information

Bridging the IT Business Gap The Role of an Enterprise Architect

Bridging the IT Business Gap The Role of an Enterprise Architect Whitepaper Bridging the IT Business Gap The Role of an Enterprise Architect Today s enterprises understand the value that Information Technology (IT) can bring to their business. IT supports day-to-day

More information

SharePlex for SQL Server

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

More information

ion Human Capital Management Solution

ion Human Capital Management Solution ion Human Capital Solution For organizations spread across multiple sites, Human Resource processes such as recruitment, deputation, and employee appraisal are complex. HR departments are increasingly

More information

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

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

More information

Microsoft SQL Server Connector for Apache Hadoop Version 1.0. User Guide

Microsoft SQL Server Connector for Apache Hadoop Version 1.0. User Guide Microsoft SQL Server Connector for Apache Hadoop Version 1.0 User Guide October 3, 2011 Contents Legal Notice... 3 Introduction... 4 What is SQL Server-Hadoop Connector?... 4 What is Sqoop?... 4 Supported

More information

Business Process Services. White Paper. Automating Complex Processes with a Business Rules Engine

Business Process Services. White Paper. Automating Complex Processes with a Business Rules Engine Business Process Services White Paper Automating Complex Processes with a Business Rules Engine About the Author Dipti Fondekar Dipti is a Consultant within the Transformation team at Tata Consultancy

More information

How To Load Data Into An Org Database Cloud Service - Multitenant Edition

How To Load Data Into An Org Database Cloud Service - Multitenant Edition An Oracle White Paper June 2014 Data Movement and the Oracle Database Cloud Service Multitenant Edition 1 Table of Contents Introduction to data loading... 3 Data loading options... 4 Application Express...

More information

Oracle to MySQL Migration

Oracle to MySQL Migration to Migration Stored Procedures, Packages, Triggers, Scripts and Applications White Paper March 2009, Ispirer Systems Ltd. Copyright 1999-2012. Ispirer Systems Ltd. All Rights Reserved. 1 Introduction The

More information

IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM

IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015 Integration Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 93.

More information

Implement Business Process Management to realize Cost Savings and High Return on Investments

Implement Business Process Management to realize Cost Savings and High Return on Investments Implement Business Process Management to realize Cost Savings and High Return on Investments Business Process Management (BPM) was unheard of just a few years ago, but it has burst onto the global scene

More information

IT Infrastructure Services. White Paper. Utilizing Software Defined Network to Ensure Agility in IT Service Delivery

IT Infrastructure Services. White Paper. Utilizing Software Defined Network to Ensure Agility in IT Service Delivery IT Infrastructure Services White Paper Utilizing Software Defined Network to Ensure Agility in IT Service Delivery About the Author Siddhesh Rane Siddhesh Rane is a Technical Architect and part of the

More information

Informatica Data Replication 9.1.1 FAQs

Informatica Data Replication 9.1.1 FAQs Informatica Data Replication 9.1.1 FAQs 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4

Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4 Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4 1. Introduction Oracle provides products that reduce the time, risk,

More information

Driving Airline Revenues and Profitability by Delivering Great Customer Experiences

Driving Airline Revenues and Profitability by Delivering Great Customer Experiences A Point of View Driving Airline Revenues and Profitability by Delivering Great Customer Experiences Two New Studies Point to the Direction Airlines are Taking with Their Customer Experience (CX) Initiatives.

More information

Simplify your admission process - The ion Way

Simplify your admission process - The ion Way Simplify your admission process - The ion Way Coordination from TCS employees has helped us lot in implementation of all modules of the ERP. It was helpful to have a person that managed to implement our

More information

Business Partner of. Hardware + Network + Software + Services

Business Partner of. Hardware + Network + Software + Services Business Partner of Hardware + Network + Software + Services About RDS Business Services RDS Business Services do services like Web Services, Software Services, Software Testing, Contract Staffing, Placement

More information

Conventional Files versus the Database. Files versus Database. Pros and Cons of Conventional Files. Pros and Cons of Databases. Fields (continued)

Conventional Files versus the Database. Files versus Database. Pros and Cons of Conventional Files. Pros and Cons of Databases. Fields (continued) Conventional Files versus the Database Files versus Database File a collection of similar records. Files are unrelated to each other except in the code of an application program. Data storage is built

More information

Life Sciences. White Paper. Real-time Patient Health Monitoring with Connected Health Solutions

Life Sciences. White Paper. Real-time Patient Health Monitoring with Connected Health Solutions Life Sciences White Paper Real-time Patient Health Monitoring with Connected Health Solutions About the Authors Ashok Khanna Global Head, Presales and Solutions, Engineering Industrial Services, Life Sciences

More information

Business Process Services. White Paper. Leveraging the Internet of Things and Analytics for Smart Energy Management

Business Process Services. White Paper. Leveraging the Internet of Things and Analytics for Smart Energy Management Business Process Services White Paper Leveraging the Internet of Things and Analytics for Smart Energy Management About the Author Akhil Bhardwaj Akhil Bhardwaj is a Senior Manager in the Analytics and

More information

Move Data from Oracle to Hadoop and Gain New Business Insights

Move Data from Oracle to Hadoop and Gain New Business Insights Move Data from Oracle to Hadoop and Gain New Business Insights Written by Lenka Vanek, senior director of engineering, Dell Software Abstract Today, the majority of data for transaction processing resides

More information

TCS Hy5 Presidio Your Mobile Environment, Your Way Configure, Secure, Deploy. Mobility Solutions

TCS Hy5 Presidio Your Mobile Environment, Your Way Configure, Secure, Deploy. Mobility Solutions TCS Hy5 Presidio Your Mobile Environment, Your Way Configure, Secure, Deploy Mobility Solutions The growth of in-house and third-party enterprise mobile applications; device diversity across ios, Android,

More information

MS-50400 - Design, Optimize and Maintain Database for Microsoft SQL Server 2008

MS-50400 - Design, Optimize and Maintain Database for Microsoft SQL Server 2008 MS-50400 - Design, Optimize and Maintain Database for Microsoft SQL Server 2008 Table of Contents Introduction Audience At Completion Prerequisites Microsoft Certified Professional Exams Student Materials

More information

Dodd Frank Act and the Consumer Affect on Banks

Dodd Frank Act and the Consumer Affect on Banks A Point of View Dodd Frank Act: Partner your way to Compliance With the passage of the Dodd Frank Act, banks and financial institutions are grappling with a highly restrictive environment and burgeoning

More information

Business Process Services. White Paper. Effective Vendor Management: Improving Supply Chain Efficiencies, Reducing Risk

Business Process Services. White Paper. Effective Vendor Management: Improving Supply Chain Efficiencies, Reducing Risk Business Process Services White Paper Effective Vendor Management: Improving Supply Chain Efficiencies, Reducing Risk About the Author Devaraj Chithur Devaraj Chithur is a subject matter expert on supply

More information

Big Data for Data Warehousing

Big Data for Data Warehousing A Point of View Big Data for Data Warehousing Introduction A Data Warehouse (DW) is a central repository of information created by integrating data from multiple disparate sources. DWs store current as

More information

Linas Virbalas Continuent, Inc.

Linas Virbalas Continuent, Inc. Linas Virbalas Continuent, Inc. Heterogeneous Replication Replication between different types of DBMS / Introductions / What is Tungsten (the whole stack)? / A Word About MySQL Replication / Tungsten Replicator:

More information

BI Today and Tomorrow

BI Today and Tomorrow White Paper BI Today and Tomorrow BI has been one of the most important business initiatives providing positive impact on the health of organizations. Usually, questions are raised on the maturity of the

More information

IT Infrastructure Services. White Paper. Cyber Risk Mitigation for Smart Cities

IT Infrastructure Services. White Paper. Cyber Risk Mitigation for Smart Cities IT Infrastructure Services White Paper Cyber Risk Mitigation for Smart Cities About the Author Abhik Chaudhuri Abhik Chaudhuri is a Domain Consultant with the Information Technology Infrastructure Services

More information

Enter an insurance solution, TCS BaNCS from Tata Consultancy Services.

Enter an insurance solution, TCS BaNCS from Tata Consultancy Services. Insurance The financial crisis of 2008 and the subsequent recovery process, though tepid, has altered the insurance industry landscape significantly. Today, the focus is on enhancing efficiencies and controlling

More information

SAP HANA implementation on SLT with a Non SAP source. Poornima Ramachandra

SAP HANA implementation on SLT with a Non SAP source. Poornima Ramachandra SAP HANA implementation on SLT with a Non SAP source Poornima Ramachandra AGENDA Introduction Planning Implementation Lessons Learnt Introduction The Company Maidenform System Landscape BUSINESS CHALLENGE

More information

Database FAQs - SQL Server

Database FAQs - SQL Server Database FAQs - SQL Server Kony Platform Release 5.0 Copyright 2013 by Kony, Inc. All rights reserved. August, 2013 This document contains information proprietary to Kony, Inc., is bound by the Kony license

More information