Hubble Technical Mirroring Overview

Size: px
Start display at page:

Download "Hubble Technical Mirroring Overview"

Transcription

1 Hubble Technical Mirroring Overview Source Database Platforms Mirroring data is supported on the following platforms that host the ERP Database, Library or Schema: Oracle 10g and 11g, 12c* SQL Server 2005, 2008, 2012 and 2014 DB2 for IBM iseries * If the Oracle 12c database is multitenant, we can only replicate from the PDBs and not the CDB. Database-specific Preparation Data Source: Oracle Prerequisites The mirroring is log-based, which means that only changes are read. This reduces the impact on the source database. The mirrored data is kept synchronized with the ERP data using a Change Data Capture (CDC) process. The CDC process captures changes from the online and archive redo logs using one of the following: LogMiner Oracle Binary Reader API (BFILE) Access to logs via directory objects Direct access to logs* *In order for the CDC process to read the online and archive redo logs by directly accessing the logs, we will need to set up a file share using the network file system protocol (NFS) between the Hubble Accelerator Server and the folder location on the server that contains the online and archive logs. This way the logs can be accessed directly from the Hubble Accelerator using the share. The Oracle BFILE data type does not support accessing binary files larger than 4 GB. Therefore, when the redo logs are larger than 4 GB and are not stored on ASM or directly accessible, use LogMiner to capture the changes. The following are the prerequisites to enable data mirroring from the source Oracle database: Oracle ARCHIVELOG mode must be enabled. Supplemental logging: both the database and the individual tables must be enabled for supplemental logging (see page 2). If mirroring from a standby database, the CDC process can only read from a physical standby configuration and not a logical standby database. Oracle account access must have certain privileges granted. (A script can be provided if requested.) Page 1

2 Supported Oracle Compression Methods Oracle Version OLTP Basic Others Oracle 10 N/A No No Oracle 11 and above - BFile Yes Yes No Oracle 11 and above - Logminer Yes Yes Yes * * Any compression method supported by Logminer Supplemental Logging Configuration Both the database and the individual tables must be enabled for logging. Supplemental Logging Set at the Database Level To check that supplemental logging is enabled for the database: 1. Run the following query: SELECT name, value, description FROM v$parameter WHERE name = 'compatible'; The returned result should be from GE to Run the following query: SELECT supplemental_log_data_min FROM v$database; The returned result should be YES or IMPLICIT. To enable supplemental logging, execute the following query: ALTER DATABASE ADD SUPPLEMENTAL LOG DATA If your Oracle database instance is on Amazon RDS, a different command needs to be executed. Supplemental Logging Set at the Table Level You can use either of the below two methods to add supplemental logging for individual tables: 1. Use Attunity to add the supplemental logging. (The default behavior is to have Attunity automatically configure supplemental logging on the tables marked for mirroring.) To do this, the Hubble connection user created in the script must be given permission to automatically add the required level of supplemental logging. This is done using the following: GRANT ALTER ON <SCHEMA>.<TABLE> TO <DB_USER_NAME>; 2. Add the supplemental logging as part of the script. Supplemental logging will be added for each mirrored table. The script alters the tables as follows: ALTER TABLE <SCHEMA>.<TABLE> ADD SUPPLEMENTAL LOG DATA (ALL) COLUMNS; Page 2

3 Access to Online and Archive Redo Logs Attunity supports two methods for accessing the online and archive redo logs: 1. Using BFILE. Attunity uses directory objects to access the online and archive logs. The default behavior is to have Attunity create and manage the directory objects. If the user does not have CREATE DIRECTORY privileges, grant the following privilege: CREATE ANY DIRECTORY Optionally, if you want to manually create and manage the directory objects that point to the redo and archive log locations, then the following permission must be granted after creating the directory objects: GRANT READ on ANY DIRECTORY The archive directory object will need to be updated if Oracle changes the location, for example if each day has a separate directory. 2. Using LogMiner. If using LogMiner, grant the following privileges: EXECUTE on DBMS_LOGMNR SELECT on V_$LOGMNR_LOGS SELECT on V_$LOGMNR_CONTENTS If you use ASM (Automatic Storage Management), you must use option 1, BFILE, to read the logs. Using BFILE, Attunity can connect to the ASM server in order to read the logs. Additional Database Access Required The additional database access required is as follows: Reading the source data for the initial load SELECT on <any-replicated-table> Lookup log sequence and thread info SELECT on V_$ARCHIVED_LOG SELECT on V_$LOG SELECT on V_$LOGFILE SELECT on V_$THREAD Check for logging level, time zone and character set SELECT on V_$DATABASE SELECT on V_$PARAMETER SELECT on V_$NLS_PARAMETERS SELECT on V_$TIMEZONE_NAMES SELECT on ALL_LOG_GROUPS SELECT on SYS.DBA_REGISTRY Page 3

4 Lookup active transactions when starting CDC SELECT ANY TRANSACTION SELECT on V_$TRANSACTION Lookup metadata for source tables SELECT on ALL_INDEXES SELECT on ALL_OBJECTS SELECT on DBA_OBJECTS SELECT on ALL_TABLES SELECT on ALL_USERS SELECT on ALL_CATALOG SELECT on ALL_CONSTRAINTS SELECT on ALL_CONS_COLUMNS SELECT on ALL_TAB_COLS SELECT on ALL_IND_COLUMNS Check Partition information SELECT on ALL_TAB_PARTITIONS Check details on the tables for capturing SELECT on SYS.OBJ$ Checking for Encryption SELECT on DBA_TABLESPACES SELECT on ALL_ENCRYPTED_COLUMNS The following permission maybe required to be granted for logon: CREATE SESSION If the database is an Oracle standby database, grant the following: SELECT on V_$STANDBY_LOG If reading logs stored in ASM, grant the following: SELECT on V$TRANSPORTABLE_PLATFORM Non-supported Oracle Data Types Columns with following data types cannot be replicated: BFILE ROWID REF RROWID Nested Table User-defined data types Replicated columns with this data types will show as null: XMLTYPE Page 4

5 Required ASM Privileges From Oracle 11g Release 2 ( ), the replication user account must be granted the SYSASM privilege in order to access the ASM account. For older supported versions, granting the Replication user account the SYSDBA privilege should be sufficient. When connecting to ASM, the mirroring software will first try to log in as SYSDBA and, if unsuccessful, will try to log in as SYSASM. Sample Scripts Sample scripts are available by request. Data Source: SQL Server Supported Versions of SQL Server using MS-Replication Versions 2005, 2008, 2012 and 2014 in the following editions: Enterprise Edition Standard Edition Workgroup Edition Developer Edition Supported Windows Platforms for a SQL Server Database The supported Windows platforms are the following: Windows Server 2003, 2008 and 2012 Windows XP Windows Vista Windows 7 The mirroring is log-based and consumes changes captured from the database transaction LOG (TLOG). The TLOG is maintained by SQL Server for recovery purposes. All changes made to a database are written to the TLOG. The mirroring task automatically sets up MS-REPLICATION for each of the source tables configured in a mirroring task. For optimal performance, the mirroring process will try to capture all unread changes from the active transaction log (TLOG). However, sometimes due to truncation, the active TLOG may not contain all of the unread changes. When this occurs, the mirroring process accesses the backup log to capture the missing changes. To minimize the need to access the backup log, the mirroring process prevents TLOG truncation by mimicking a transaction in the database. As long as such a transaction is open, changes that appear after the transaction started will not be truncated. The mirroring vendor recommends that while you are performing any database maintenance tasks (Index Rebuilds, index ReOrganize, etc) that due to the increased activity on the TLog at this time, that you stop the replications tasks and then reload/resume the tasks after the maintenance task has completed. If you do not stop and restart the replication tasks around your maintenance tasks, you will see the size of your TLOG increase while the replication processes the increased volume of changes in the TLOG. This can eventually lead to the database server running out of space and completely stopping the database running. Page 5

6 The prerequisites to enable data mirroring from the source SQL Server database are as follows: MS-REPLICATION for the SQL Server database must be enabled Recovery model must be bulk-logged or full mode A full database backup must exist The database account used for mirroring must have the sysadmin fixed server role granted Limitations Limitations are as follows: If you are using a SQL Server source database in a mirroring task, the SQL Server Replication Publisher definitions for the database that was used in the task are not removed when you remove a task. A SQL Server system administrator must delete these definitions from SQL Server. Non-supported SQL Tables with more than 8000 bytes of information in a SQL Server source, including header and mapping information, are not processed correctly due to limitations in buffer size. The SQL Server source endpoint does not support the use of sparse tables. Changes to computed fields in a SQL Server source will not be mirrored. SQL Server partition switching is not supported. When using the WRITETEXT and UPDATETEXT utilities, mirroring does not capture events applied on the source database. The following DML pattern is not supported: select <*> into <new_table> from <existing_table> Column-level encryption is not supported. Microsoft SQL Server backup to multiple disks is not supported. Backup from non-microsoft SQL Server programs is not supported, e.g. 3rd party server backup programs. Due to a known issue with the Microsoft SQL Server ODBC driver on Linux, source columns with a non-latin code page may be truncated on the target. Due to a known issue with Microsoft SQL Server 2008, mirroring does not support server level audits on Microsoft SQL Server Change Data Capture operations are not supported on memory optimized tables. This limitation applies to Microsoft SQL Server 2014 (when the feature was first introduced) and above. When inserting a value into SQL Server spatial data types (GEOGRAPHY and GEOMETRY), one can either ignore the SRID (Spatial Reference System Identifier) property - in which case the default SRID will be used (0 for GEOMETRY and 4326 for GEOGRAPHY) - or specify a different number. When replicating tables with spatial data types, the mirroring process replaces the SRID that was inserted by user with the default SRID. Backup files that are not in Microsoft SQL Server format cannot be read by the mirroring software. The Mirroring software cannot connect directly to a Microsoft SQL Server backup file. The mirroring software cannot replicate from a Microsoft SQL Server contained database. Page 6

7 Supported Microsoft SQL Server Compression Methods Microsoft SQL Server Version Row/Page Compression (at Partition Level) Vardecimal Storage Format Vardecimal Storage Format Sparse Columns Vardecimal Storage Format Sparse Columns Columnar Structure Compression 2005 No No No No 2008 Yes No No No 2012 Yes No No No Microsoft SQL Server AlwaysOn Availability Groups The Microsoft SQL Server AlwaysOn Availability Groups feature is a high-availability and disaster-recovery solution that provides an enterprise-level alternative to database mirroring. To use AlwaysOn Availability Groups as a source: Notes: 1. Enable Distribution on all Microsoft SQL Server instances in your Availability Replicas. 2. The Server Name and IP address provided for replication should be the details configured for the Availability Group Listener. When the mirroring task is run for the first time, it may take longer than usual to start as the creation of the table articles is being duplicated by the Availability Groups Server. After you failover, and the replication task will restart. This is normal as the connection is being forcibly closed by the failover. As soon as the new primary server is available, processing will resume. Non-supported SQL Server Data Types Columns with the following data types cannot be replicated: CURSOR SQL_VARIANT TABLE Setting up Microsoft SQL Server for Replication By default, the mirroring application uses MS-REPLICATION. To enable your Microsoft SQL Server database for MSREPLICATION, go to Microsoft SQL Server Management Studio. Follow the instructions provided by the Configure Distribution wizard to set up replication or see the Microsoft SQL Server documentation. To open the wizard from Microsoft SQL Server: 1. In the Microsoft SQL Server Management Studio, right-click on the Replication folder. 2. Select Configure Distribution to open the Configure Distribution Wizard. 3. Make the following selections in the wizard: a. In the Distributor step, select <Microsoft SQL Server Name> will act as its own distributor. b. Microsoft SQL Server will create a distribution database and log. Page 7

8 Mirroring Tables that do not have a Primary Key MS-CDC functionality is supported only for SQL Server Enterprise edition and is not supported on SQL Server By default, the mirroring application automatically sets up MS-REPLICATION for each of the source tables configured for mirroring. However, MS-REPLICATION requires each of the source tables to have a primary key, which may not always be the case. Therefore, if you need to replicate tables that do not have a primary key, you can configure the MS SQL Server database to use MS-CDC. Setting up MS-CDC To set up MS-CDC, you first need to enable MS-CDC for the database by running the following command: use [DBname] EXEC sys.sp_cdc_enable_db Then you need to enable MS-CDC for each of the source tables by running the following command: EXECUTE = = = NULL; Data Source: IBM DB2 AIS Server Data is mirrored from DB2 via an AIS server; this is additional software that needs to be installed on the server that hosts the DB2 data. This creates subsystem jobs for Attunity on the AS400. Please reference the Attunity AIS Installation Guide for AS400 for steps to install the AIS Server. Attunity Studio, a GUI tool for managing the life cycle activities of AIS installations, must also be installed. See the Attunity Studio Installation Guide for Attunity Studio requirements and installation details. AS/400 Hardware and Software Requirements The requirements are the following: Machine: Any IBM AS/400 machine Disk space: 60 MB Tables required for mirroring must be journaled and the journal image set to *BOTH. Installation Requirements: User with QSECOFR Account Ensure it has special authorities: *JOBCTL *ALLOBJ *SERVICE *SPLCTL Page 8

9 Runtime: QSECOFR can be revoked Special authorities have to stay (*JOBCTL, *ALLOBJ, *SERVICE, *SPLCTL). *ALLOBJ, might be removed if all access to necessary journal, journal receivers and tables is granted Possible updates/patches: QSECOFR will be required during the update. Setup Tasks Pre-installation Tasks The pre-installation tasks include the following: Access to AS/400 system with QSECOFR account. For the provided files, create SAVF files on the AS/400 and FTP in binary mode to QGPL library. Gather required information required for each table: File File Library Journal Journal Library Create a spreadsheet with the relationship between individual library, table and journal such as in this example: Installation Tasks The installation tasks include: Create a library where all components will be placed. Install Subsystem. Test installation. Page 9

10 Hubble Technical Mirroring Overview Notices Create PGM to auto-start mirroring components. Step by step installation can be provided on demand. Post Installation Tasks The post installation tasks include: Revoke QSECOFR rights from user and make sure it has the following special authorities: *JOBCTL *ALLOBJ (Might be removed if all access to necessary journal, journal receivers and tables is granted) *SERVICE *SPLCTL To ensure the Mirroring system will be started after the system goes offline for backup, etc., the DBA would have to add subsystem to the startup process. Limitations On large tables, issuing a DELETE FROM table statement without a WHERE clause can cause the database to optimize it as a clear operation. A clear operation is not written to the journal as a DELETE. This causes the agent to ignore the operation, so the target results will not be deleted. Notices Copyright Hubble is a brand name of the insightsoftware.com Group. insightsoftware.com is a registered trademark of insightsoftware.com Limited. Hubble is a registered trademark of insightsoftware.com International Unlimited. Other product and company names mentioned herein may be the trademarks of their respective owners. The insightsoftware.com Group is the owner or licensee of all intellectual property rights in this document, which are protected by copyright laws around the world. All such rights are reserved. The information contained in this document represents the current view of insightsoftware.com on the issues discussed as of the date of publication. This document is for informational purposes only. insightsoftware.com makes no representation, guarantee or warranty, expressed or implied, that the content of this document is accurate, complete or up to date. Disclaimer This guide is designed to help you to use the Hubble applications effectively and efficiently. All data shown in graphics are provided as examples only. The example companies and calculations herein are fictitious. No association with any real company or organization is intended or should be inferred. Page 10

11 Version History Hubble Technical Mirroring Overview Version History Date Revision Software Version Comments 5th Jan and above 23rd Jan and above Updated based on Attunity version th Feb and above Added information on Oracle BFILE data type and Microsoft SQL Server for Replication 24th Nov and above Comments incorporated. Customer Support For more information regarding our products, please contact us at For product support including Training, Documentation and Customer Support, visit our Hubble Community at Page 11

AWS Database Migration Service. Step-by-Step Migration Guide API Version

AWS Database Migration Service. Step-by-Step Migration Guide API Version : Copyright 2017 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in connection with any product or service that is not Amazon's,

More information

Installation & Maintenance Guide for Oracle EBS DBAs

Installation & Maintenance Guide for Oracle EBS DBAs Installation & Maintenance Guide for Oracle EBS DBAs Version 2018.0 Desktop Reporting Document Information............................................................. i Notices..........................................................................i

More information

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE ORACLE 11gR2 DBA by Mr. Akal Singh ( Oracle Certified Master ) INTRODUCTION to ORACLE COURSE CONTENT Exploring the Oracle Database Architecture List the major architectural components of Oracle Database

More information

Oracle Database 11g for Experienced 9i Database Administrators

Oracle Database 11g for Experienced 9i Database Administrators Oracle Database 11g for Experienced 9i Database Administrators 5 days Oracle Database 11g for Experienced 9i Database Administrators Course Overview The course will give experienced Oracle 9i database

More information

Synergetics-Standard-SQL Server 2012-DBA-7 day Contents

Synergetics-Standard-SQL Server 2012-DBA-7 day Contents Workshop Name Duration Objective Participants Entry Profile Training Methodology Setup Requirements Hardware and Software Requirements Training Lab Requirements Synergetics-Standard-SQL Server 2012-DBA-7

More information

EASYHA SQL SERVER V1.0

EASYHA SQL SERVER V1.0 EASYHA SQL SERVER V1.0 CONTENTS 1 Introduction... 2 2 Install SQL 2016 in Azure... 3 3 Windows Failover Cluster Feature Installation... 7 4 Windows Failover Clustering Configuration... 9 4.1 Configure

More information

Microsoft SQL Server" 2008 ADMINISTRATION. for ORACLE9 DBAs

Microsoft SQL Server 2008 ADMINISTRATION. for ORACLE9 DBAs Microsoft SQL Server" 2008 ADMINISTRATION for ORACLE9 DBAs Contents Acknowledgments *v Introduction xvii Chapter 1 Introduction to the SQL Server Platform 1 SQLServer Editions 2 Premium Editions 3 Core

More information

ORACLE DBA TRAINING IN BANGALORE

ORACLE DBA TRAINING IN BANGALORE ORACLE DBA TRAINING IN BANGALORE TIB ACADEMY #5/3 BEML LAYOUT, VARATHUR MAIN ROAD KUNDALAHALLI GATE, BANGALORE 560066 PH: +91-9513332301/2302 WWW.TRAININGINBANGALORE.COM Oracle DBA Training Syllabus Introduction

More information

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI)

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI) Oracle DBA (10g, 11g) Training Course Content Introduction (Database Architecture) Describe course objectives Explore the Oracle 10g database architecture Installing the Oracle Database Software Explain

More information

Veritas NetBackup for Microsoft SQL Server Administrator's Guide

Veritas NetBackup for Microsoft SQL Server Administrator's Guide Veritas NetBackup for Microsoft SQL Server Administrator's Guide for Windows Release 8.1.1 Veritas NetBackup for Microsoft SQL Server Administrator's Guide Last updated: 2018-04-10 Document version:netbackup

More information

DumpsKing. Latest exam dumps & reliable dumps VCE & valid certification king

DumpsKing.   Latest exam dumps & reliable dumps VCE & valid certification king DumpsKing http://www.dumpsking.com Latest exam dumps & reliable dumps VCE & valid certification king Exam : 1z1-062 Title : Oracle Database 12c: Installation and Administration Vendor : Oracle Version

More information

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Description The SQL Fundamentals exam is intended to verify that certification candidates have a basic understanding of the SQL language. It covers the

More information

1z z0-060 Upgrade to Oracle Database 12c

1z z0-060 Upgrade to Oracle Database 12c 1z0-060 Number: 1z0-060 Passing Score: 800 Time Limit: 120 min File Version: 7.1 1z0-060 Upgrade to Oracle Database 12c Exam A QUESTION 1 Your multitenant container (CDB) contains two pluggable databases

More information

"Charting the Course... Oracle 18c DBA I (5 Day) Course Summary

Charting the Course... Oracle 18c DBA I (5 Day) Course Summary Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager Database Express (EMDE), SQL Developer and SQL*Plus.

More information

Expert Oracle GoldenGate

Expert Oracle GoldenGate Expert Oracle GoldenGate Ben Prusinski Steve Phillips Richard Chung Apress* Contents About the Authors About the Technical Reviewer Acknowledgments xvii xviii xix Chapter 1: Introduction...1 Distributed

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z1-063 Title : Oracle Database 12c: Advanced Administration Vendor : Oracle Version : DEMO Get Latest

More information

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps:// IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://www.certqueen.com Exam : 1Z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Version : DEMO 1 / 7 1.Which

More information

Copy Table From One Database To Another Sql

Copy Table From One Database To Another Sql Copy Table From One Database To Another Sql Server 2000 SQL 2000 Copy rows of data from one table to another in the same database "Server: Msg 107, Level 16, State 3, Line 1 The column prefix 'PartsSales'

More information

2. Recovery models ->

2. Recovery models -> 1. Database structure -> Chapter 3 -> Database architecture -> Subchapter 3.1 2. Recovery models -> https://docs.microsoft.com/en-us/sql/relational-databases/backuprestore/recovery-models-sql-server?view=sql-server-2014

More information

Data Protector. Software Version: Zero Downtime Backup Integration Guide

Data Protector. Software Version: Zero Downtime Backup Integration Guide Data Protector Software Version: 10.00 Zero Downtime Backup Integration Guide Document Release Date: June 2017 Software Release Date: June 2017 Legal Notices Warranty The only warranties for Hewlett Packard

More information

Oracle Database 11g: SQL Fundamentals I

Oracle Database 11g: SQL Fundamentals I Oracle Database SQL Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-051 Exam Title: Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-071 Exam Title: Oracle Database SQL Oracle and Structured

More information

SQL AlwaysOn - Skype for Business

SQL AlwaysOn - Skype for Business 2018 SQL AlwaysOn - Skype for Business DINESH SINGH Contents Before Starting... 2 Windows Failover Clustering... 2 IPs Address and DNS... 2 SQL AlwaysOn... 2 Service Accounts... 2 Network Configuration...

More information

MINION ENTERPRISE FEATURES LIST

MINION ENTERPRISE FEATURES LIST MINION ENTERPRISE FEATURES LIST Minion Enterprise is an automation and management tool for SQL Server. It provides you with the 10,000- foot view, detailed view, and fine-grained alerting and controls

More information

Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)?

Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)? Volume: 176 Questions Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)? A. A DBA can check specific tables with the DMU B. The database

More information

Microsoft SQL Server

Microsoft SQL Server Microsoft SQL Server Abstract This white paper outlines the best practices for Microsoft SQL Server Failover Cluster Instance data protection with Cohesity DataPlatform. December 2017 Table of Contents

More information

Technical White Paper

Technical White Paper Technical White Paper On Implementing IBM InfoSphere Change Data Capture for Sybase with a Remote Database Server Awajeet Kumar Arya(awajarya@in.ibm.com) CONTENTS Trademarks...03 Introduction...04 Overview...04

More information

Installing SQL Server Developer Last updated 8/28/2010

Installing SQL Server Developer Last updated 8/28/2010 Installing SQL Server Developer Last updated 8/28/2010 1. Run Setup.Exe to start the setup of SQL Server 2008 Developer 2. On some OS installations (i.e. Windows 7) you will be prompted a reminder to install

More information

Oracle 8i User Guide for CS2312

Oracle 8i User Guide for CS2312 Oracle 8i User Guide for CS Carole Goble. Introduction Oracle is a relational database management system that uses SQL as its data manipulation language. Information on SQL is given separately to these

More information

Replication. Some uses for replication:

Replication. Some uses for replication: Replication SQL Server 2000 Replication allows you to distribute copies of data from one database to another, on the same SQL Server instance or between different instances. Replication allows data to

More information

Empowering DBA's with IBM Data Studio. Deb Jenson, Data Studio Product Manager,

Empowering DBA's with IBM Data Studio. Deb Jenson, Data Studio Product Manager, Empowering DBA's with IBM Data Studio Deb Jenson, Data Studio Product Manager, dejenson@us.ibm.com Disclaimer Copyright IBM Corporation [current year]. All rights reserved. U.S. Government Users Restricted

More information

Oracle Standard Management Pack

Oracle Standard Management Pack Oracle Standard Management Pack Readme Release 2.1.0.0.0 February 2000 Part No. A76911-01 Table Of Contents 1 Introduction 2 Compatibility 3 Documentation and Help 4 Oracle Performance Manager 5 Oracle

More information

Release Notes. Oracle E-Business Suite. Desktop Reporting (Edition 1) & Hubble Suite (Edition 2) Version

Release Notes. Oracle E-Business Suite. Desktop Reporting (Edition 1) & Hubble Suite (Edition 2) Version Release Notes Oracle E-Business Suite Desktop Reporting (Edition 1) & Hubble Suite (Edition 2) Version 2016.1 Document Information..............................................................i Notices..........................................................................i

More information

ORACLE 11g RDBMS Features: Oracle Total Recall Oracle FLEXCUBE Universal Banking Release [May] [2017]

ORACLE 11g RDBMS Features: Oracle Total Recall Oracle FLEXCUBE Universal Banking Release [May] [2017] ORACLE 11g RDBMS Features: Oracle Total Recall Oracle FLEXCUBE Universal Banking Release 12.4.0.0.0 [May] [2017] Table of Contents 1. INTRODUCTION... 2 2. REQUIREMENT /PROBLEM STATEMENT... 3 3. PREREQUISITES...

More information

MySQL for Database Administrators Ed 4

MySQL for Database Administrators Ed 4 Oracle University Contact Us: (09) 5494 1551 MySQL for Database Administrators Ed 4 Duration: 5 Days What you will learn The MySQL for Database Administrators course teaches DBAs and other database professionals

More information

ORACLE STANDBY LICENSING OPERATING INSTRUCTIONS EBOOK

ORACLE STANDBY LICENSING OPERATING INSTRUCTIONS EBOOK 14 November, 2017 ORACLE STANDBY LICENSING OPERATING INSTRUCTIONS EBOOK Document Filetype: PDF 538.91 KB 0 ORACLE STANDBY LICENSING OPERATING INSTRUCTIONS EBOOK Based on Ch14-Page15 of the Streams manual.

More information

Oracle Database 11g: New Features for Administrators DBA Release 2

Oracle Database 11g: New Features for Administrators DBA Release 2 Oracle Database 11g: New Features for Administrators DBA Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: New Features for Administrators DBA Release 2 training explores new change

More information

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E

Oracle SQL Developer. Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide Release 4.0 E39882-02 December 2013 Oracle SQL Developer Oracle TimesTen In-Memory Database Support User's Guide, Release 4.0

More information

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

Performing an ObserveIT Upgrade Using the Interactive Installer

Performing an ObserveIT Upgrade Using the Interactive Installer Performing an ObserveIT Upgrade Using the Interactive Installer ABOUT THIS DOCUMENT This document contains detailed procedures and instructions on how to upgrade ObserveIT by using the interactive "One

More information

Oracle12c Release 1 New Features for Administrators (5 Days)

Oracle12c Release 1 New Features for Administrators (5 Days) www.peaklearningllc.com Oracle12c Release 1 New Features for Administrators (5 Days) Course Description This course provides a complete, hands-on introduction to the newest release of Oracle Enterprise

More information

MDCStore High Content Data Management Solution Database Schema

MDCStore High Content Data Management Solution Database Schema MDCStore High Content Data Management Solution Database Schema Version 2.3 Installation and Update Guide 0112-0144 I March 2013 This document is provided to customers who have purchased Molecular Devices,

More information

Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1

Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1 Oracle University Contact Us: Local: 0180 2000 526 Intl: +49 8914301200 Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1 Duration: 5 Days What you will learn The Oracle Database 12c

More information

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2

An Oracle White Paper September Methods for Upgrading to Oracle Database 11g Release 2 An Oracle White Paper September 2009 Methods for Upgrading to Oracle Database 11g Release 2 Introduction... 1 Database Upgrade Methods... 2 Database Upgrade Assistant (DBUA)... 2 Manual Upgrade... 3 Export

More information

DB2. Migration Guide. DB2 Version 9 GC

DB2. Migration Guide. DB2 Version 9 GC DB2 DB2 Version 9 for Linux, UNIX, and Windows Migration Guide GC10-4237-00 DB2 DB2 Version 9 for Linux, UNIX, and Windows Migration Guide GC10-4237-00 Before using this information and the product it

More information

DBArtisan New Features Guide

DBArtisan New Features Guide Product Documentation DBArtisan New Features Guide Version 8.7 Corporate Headquarters EMEA Headquarters Asia-Pacific Headquarters 100 California Street, 12th Floor San Francisco, California 94111 York

More information

Course Description. Audience. Prerequisites. At Course Completion. : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs

Course Description. Audience. Prerequisites. At Course Completion. : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs Module Title Duration : Course 40074A : Microsoft SQL Server 2014 for Oracle DBAs : 4 days Course Description This four-day instructor-led course provides students with the knowledge and skills to capitalize

More information

Oracle Database 12c: OCM Exam Preparation Workshop Ed 1

Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Duration: 5 Days What you will learn The Oracle Database 12c: OCM Exam Preparation

More information

TestsDumps. Latest Test Dumps for IT Exam Certification

TestsDumps.  Latest Test Dumps for IT Exam Certification TestsDumps http://www.testsdumps.com Latest Test Dumps for IT Exam Certification Exam : 1z1-062 Title : Oracle Database 12c: Installation and Administration Vendor : Oracle Version : DEMO Get Latest &

More information

Database Creation & Setup for SQL Server

Database Creation & Setup for SQL Server Database Creation & Setup for SQL Server INSTALLATION MANUAL D000480 rev 4.0 TRADEMARK NOTICE Bentley and the "B" Bentley logo are registered or non-registered trademarks of Bentley Systems, Inc. or Bentley

More information

Oracle Database 11g: New Features for Administrators Release 2

Oracle Database 11g: New Features for Administrators Release 2 Oracle University Contact Us: 0845 777 7711 Oracle Database 11g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course gives you the opportunity to learn about and

More information

How To Apply Archive Logs Manually In Standby Database Using Rman

How To Apply Archive Logs Manually In Standby Database Using Rman How To Apply Archive Logs Manually In Standby Database Using Rman Using Rman Active Duplicate to create a Standby from a standby. Posted by RMAN_. Let's create some Archivelogs in Primary Database so that

More information

Three methods compared

Three methods compared Querying SQL Data Changes Three methods compared eric@berkflow.com (561) 914-2097 Eric Berkowitz SQL Saturday South Florida 6/9/18 World s Greatest Credentials Eric Berkowitz First developed with SQL Server

More information

Veeam Backup & Replication. Version 9.0

Veeam Backup & Replication. Version 9.0 Veeam Backup & Replication Version 9.0 May, 2016 2016 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part of this publication may be reproduced, transmitted,

More information

Alfresco 2.1. Backup and High Availability Guide

Alfresco 2.1. Backup and High Availability Guide Copyright (c) 2007 by Alfresco and others. Information in this document is subject to change without notice. No part of this document may be reproduced or transmitted in any form or by any means, electronic

More information

MBS Microsoft Oracle Plug-In 6.82 User Guide

MBS Microsoft Oracle Plug-In 6.82 User Guide MBS Microsoft Oracle Plug-In 6.82 User Guide 10 Oracle Plug-In This version of the Oracle Plug-In supports Windows Agents. It is an add-on that allows you to perform database backups on Oracle databases.

More information

Designing Database Solutions for Microsoft SQL Server (465)

Designing Database Solutions for Microsoft SQL Server (465) Designing Database Solutions for Microsoft SQL Server (465) Design a database structure Design for business requirements Translate business needs to data structures; de-normalize a database by using SQL

More information

Use this procedure to manage nodes to an existing SQL Server failover cluster instance.

Use this procedure to manage nodes to an existing SQL Server failover cluster instance. How To Remove A Sql Server 2005 Failover Cluster Instance Setup Due to various reasons DBAs may need to uninstall SQL Server instances. of the SQL Server failover cluster instance to be modified during

More information

Oracle DBA Course Content

Oracle DBA Course Content 1 Oracle DBA Course Content Database Architecture: Introduction to Instance and Database How user connects to database How SQL statement process in the database Oracle data dictionary and its role Memory

More information

Designing Database Solutions for Microsoft SQL Server 2012

Designing Database Solutions for Microsoft SQL Server 2012 Designing Database Solutions for Microsoft SQL Server 2012 Course 20465B 5 Days Instructor-led, Hands-on Introduction This course describes how to design and monitor high performance, highly available

More information

Oracle Hospitality ecommerce Integration Cloud Service Security Guide Release 4.2 E

Oracle Hospitality ecommerce Integration Cloud Service Security Guide Release 4.2 E Oracle Hospitality ecommerce Integration Cloud Service Security Guide Release 4.2 E96343-01 May 2018 Copyright 2010, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

New Features Bulletin Replication Server Options 15.6

New Features Bulletin Replication Server Options 15.6 Bulletin Replication Server Options 15.6 Linux, Microsoft Windows, and UNIX DOCUMENT ID: DC01004-01-1560-01 LAST REVISED: November 2010 Copyright 2010 by Sybase, Inc. All rights reserved. This publication

More information

"Charting the Course... Oracle 18c DBA I (3 Day) Course Summary

Charting the Course... Oracle 18c DBA I (3 Day) Course Summary Oracle 18c DBA I (3 Day) Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager (EMDE), SQL Developer

More information

DESIGNING DATABASE SOLUTIONS FOR MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE

DESIGNING DATABASE SOLUTIONS FOR MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE 70-465 DESIGNING DATABASE SOLUTIONS FOR MICROSOFT SQL SERVER CERTIFICATION QUESTIONS AND STUDY GUIDE Designing Database Solutions for Microsoft SQL Server (70-465) WWW.ANALYTICSEXAM.COM Contents Designing

More information

1Z Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions

1Z Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions 1Z0-060 Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-060 Exam on Upgrade to Oracle Database 12c... 2 Oracle 1Z0-060 Certification Details:... 2

More information

Technical White Paper August Migrating to Oracle 11g Using Data Replicator Software with Transportable Tablespaces

Technical White Paper August Migrating to Oracle 11g Using Data Replicator Software with Transportable Tablespaces Technical White Paper August 2010 Migrating to Oracle 11g Using Data Replicator Software with Transportable Tablespaces Migrating to Oracle 11g Using DRS with Transportable Tablespaces Contents Contents...

More information

ITS. MySQL for Database Administrators (40 Hours) (Exam code 1z0-883) (OCP My SQL DBA)

ITS. MySQL for Database Administrators (40 Hours) (Exam code 1z0-883) (OCP My SQL DBA) MySQL for Database Administrators (40 Hours) (Exam code 1z0-883) (OCP My SQL DBA) Prerequisites Have some experience with relational databases and SQL What will you learn? The MySQL for Database Administrators

More information

MySQL for Database Administrators Ed 3.1

MySQL for Database Administrators Ed 3.1 Oracle University Contact Us: 1.800.529.0165 MySQL for Database Administrators Ed 3.1 Duration: 5 Days What you will learn The MySQL for Database Administrators training is designed for DBAs and other

More information

DefendX Software Control-Audit for Hitachi Installation Guide

DefendX Software Control-Audit for Hitachi Installation Guide DefendX Software Control-Audit for Hitachi Installation Guide Version 4.1 This guide details the method for the installation and initial configuration of DefendX Software Control-Audit for NAS, Hitachi

More information

Veeam Endpoint Backup

Veeam Endpoint Backup Veeam Endpoint Backup Version 1.5 User Guide March, 2016 2016 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part of this publication may be reproduced,

More information

SQL Server DBA Course Content

SQL Server DBA Course Content 1 SQL Server DBA Course Content SQL Server Versions and Editions Features of SQL Server Differentiate the SQL Server and Oracle Services of SQL Server Tools of SQL server SQL Server Installation SQL server

More information

CO MySQL for Database Administrators

CO MySQL for Database Administrators CO-61762 MySQL for Database Administrators Summary Duration 5 Days Audience Administrators, Database Designers, Developers Level Professional Technology Oracle MySQL 5.5 Delivery Method Instructor-led

More information

Vendor: IBM. Exam Code: Exam Name: IBM Certified Specialist Netezza Performance Software v6.0. Version: Demo

Vendor: IBM. Exam Code: Exam Name: IBM Certified Specialist Netezza Performance Software v6.0. Version: Demo Vendor: IBM Exam Code: 000-553 Exam Name: IBM Certified Specialist Netezza Performance Software v6.0 Version: Demo QUESTION NO: 1 Which CREATE DATABASE attributes are required? A. The database name. B.

More information

Oracle DBA workshop I

Oracle DBA workshop I Complete DBA(Oracle 11G DBA +MySQL DBA+Amazon AWS) Oracle DBA workshop I Exploring the Oracle Database Architecture Oracle Database Architecture Overview Oracle ASM Architecture Overview Process Architecture

More information

[Contents. Sharing. sqlplus. Storage 6. System Support Processes 15 Operating System Files 16. Synonyms. SQL*Developer

[Contents. Sharing. sqlplus. Storage 6. System Support Processes 15 Operating System Files 16. Synonyms. SQL*Developer ORACLG Oracle Press Oracle Database 12c Install, Configure & Maintain Like a Professional Ian Abramson Michael Abbey Michelle Malcher Michael Corey Mc Graw Hill Education New York Chicago San Francisco

More information

LT Auditor Installation Guide

LT Auditor Installation Guide LT Auditor+ 2013 Installation Guide Intellectual Property Copyright 2007-2012 Blue Lance, LT Auditor+, and the Report Generator are registered trademarks of Blue Lance, Inc. Microsoft, Windows 2003, Window

More information

Oracle Plug-in Version 6.85 for Microsoft Windows User s Guide

Oracle Plug-in Version 6.85 for Microsoft Windows User s Guide Oracle Plug-in Version 6.85 for Microsoft Windows User s Guide Published: September 13 th, 2011 Revision: This manual is updated for Version 6.85 Software Version: 6.85 (March, 2011) Copyright 1997-2011.

More information

Designing Database Solutions for Microsoft SQL Server 2012

Designing Database Solutions for Microsoft SQL Server 2012 Designing Database Solutions for Microsoft SQL Server 2012 Course 20465A 5 Days Instructor-led, Hands-on Introduction This course describes how to design and monitor high performance, highly available

More information

IBM Spectrum Protect Snapshot for Unix Installation Planning Sheet

IBM Spectrum Protect Snapshot for Unix Installation Planning Sheet IBM Spectrum Protect Snapshot for Unix 4.1.6 Installation Planning Sheet The purpose of this document is to provide a list of considerations that should be reviewed before installing and configuring Spectrum

More information

Notices Carbonite Availability for Linux User's Guide Version 8.1.1, Thursday, April 5, 2018 If you need technical assistance, you can contact

Notices Carbonite Availability for Linux User's Guide Version 8.1.1, Thursday, April 5, 2018 If you need technical assistance, you can contact Notices Carbonite Availability for Linux User's Guide Version 8.1.1, Thursday, April 5, 2018 If you need technical assistance, you can contact CustomerCare. All basic configurations outlined in the online

More information

IBM Spectrum Protect Snapshot for Unix Installation Planning Sheet

IBM Spectrum Protect Snapshot for Unix Installation Planning Sheet IBM Spectrum Protect Snapshot for Unix 8.1.4 Installation Planning Sheet The purpose of this document is to provide a list of considerations that should be reviewed before installing and configuring Spectrum

More information

Looking Into the New and Improved Functionality of SQL 2008

Looking Into the New and Improved Functionality of SQL 2008 ILTA University - Monday August 24, 2009 Looking Into the New and Improved Functionality of SQL 2008 Matthew Fredette Managing Director Senior Systems Engineer Boston, MA Matthew.Fredette@mindSHIFT.com

More information

Protecting Microsoft SQL Server databases using IBM Spectrum Protect Plus. Version 1.0

Protecting Microsoft SQL Server databases using IBM Spectrum Protect Plus. Version 1.0 Protecting Microsoft SQL Server databases using IBM Spectrum Protect Plus Version 1.0 Contents Executive summary 3 Audience 3 The solution: IBM Spectrum Protect Plus 3 Microsoft SQL Server setup on Microsoft

More information

Netezza PureData System Administration Course

Netezza PureData System Administration Course Course Length: 2 days CEUs 1.2 AUDIENCE After completion of this course, you should be able to: Administer the IBM PDA/Netezza Install Netezza Client Software Use the Netezza System Interfaces Understand

More information

Version Double-Take Availability for Linux User's Guide

Version Double-Take Availability for Linux User's Guide Version 8.0.0 Double-Take Availability for Linux User's Guide Notices Double-Take Availability for Linux User's Guide Version 8.0, Check your service agreement to determine which updates and new releases

More information

InsightUnlimited Release Notes. JD Edwards World & EnterpriseOne Version

InsightUnlimited Release Notes. JD Edwards World & EnterpriseOne Version InsightUnlimited Release Notes JD Edwards World & EnterpriseOne Version 2014.1 InsightUnlimited Version: 2014.1 Document Version: 1.0 Last Updated: July 25, 2014 Table of Contents General Information...

More information

Oracle 12C Administration Course Content:

Oracle 12C Administration Course Content: Oracle 12C Administration Course Content: Enterprise Manager and Other Tools Enterprise Manager (EM) Cloud Control home page Enterprise Manager Express home page versus Enterprise Manager Database Control

More information

DocAve 6 High Availability

DocAve 6 High Availability DocAve 6 High Availability User Guide Service Pack 10, Cumulative Update 1 Issued April 2018 The Enterprise-Class Management Platform for SharePoint Governance Table of Contents What s New in This Guide...

More information

Chapter 1: Introducing SQL Server

Chapter 1: Introducing SQL Server Leiter ftoc.tex V3-03/25/2009 1:31pm Page xv Introduction xxvii Chapter 1: Introducing SQL Server 2008 1 A Condensed History of SQL Server 1 In the Beginning 1 The Evolution of a Database 1 Microsoft Goes

More information

Project management integrated into Outlook

Project management integrated into Outlook Project management integrated into Outlook InLoox PM 7.x off-line operation An InLoox Whitepaper Published: November 2011 Copyright: 2011 InLoox GmbH. You can find up-to-date information at http://www.inloox.com

More information

1Z Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions

1Z Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions 1Z0-034 Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-034 Exam on Upgrade Oracle9i/10g to Oracle Database 11g OCP... 2 Oracle 1Z0-034

More information

SQL (Structured Query Language)

SQL (Structured Query Language) Dear Student, Based upon your enquiry we are pleased to send you the course curriculum for Oracle DBA 11g SQL (Structured Query Language) Software Installation (Environment Setup for Oracle on Window10)

More information

Oracle Database 12c: New Features for Administrators Ed 2 NEW

Oracle Database 12c: New Features for Administrators Ed 2 NEW Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 12c: New Features for Administrators Ed 2 NEW Duration: 5 Days What you will learn In the Oracle Database 12c:

More information

Microsoft SQL Server Database Administration

Microsoft SQL Server Database Administration Address:- #403, 4 th Floor, Manjeera Square, Beside Prime Hospital, Ameerpet, Hyderabad 500038 Contact: - 040/66777220, 9177166122 Microsoft SQL Server Database Administration Course Overview This is 100%

More information

IBM Security SiteProtector System SecureSync Guide

IBM Security SiteProtector System SecureSync Guide IBM Security IBM Security SiteProtector System SecureSync Guide Version 3.0 Note Before using this information and the product it supports, read the information in Notices on page 45. This edition applies

More information

EVault InfoStage 5.6 Oracle Plug-In for Solaris and Windows. Installation & Configuration Guide

EVault InfoStage 5.6 Oracle Plug-In for Solaris and Windows. Installation & Configuration Guide EVault InfoStage 5.6 Oracle Plug-In for Solaris and Windows Installation & Configuration Guide August 2006 This manual describes the installation and configuration of the EVault InfoStage Oracle Plug-In

More information

Db2 Analytics Accelerator V5.1 What s new in PTF 5

Db2 Analytics Accelerator V5.1 What s new in PTF 5 Ute Baumbach, Christopher Watson IBM Boeblingen Laboratory Db2 Analytics Accelerator V5.1 What s new in PTF 5 Legal Disclaimer IBM Corporation 2017. All Rights Reserved. The information contained in this

More information

Supported Fujitsu BS2000 Servers (page 1) Known Restrictions, Issues, and Workarounds (page 3) Documentation Accessibility (page 8)

Supported Fujitsu BS2000 Servers (page 1) Known Restrictions, Issues, and Workarounds (page 3) Documentation Accessibility (page 8) Oracle Database Release Notes 12c Release 1 (12.1) for Fujitsu BS2000/OSD E74140-02 January 2017 This document describes the features of Oracle Database on Fujitsu BS2000/OSD. This release implements the

More information

ORANET- Course Contents

ORANET- Course Contents ORANET- Course Contents 1. Oracle 11g SQL Fundamental-l 2. Oracle 11g Administration-l 3. Oracle 11g Administration-ll Oracle 11g Structure Query Language Fundamental-l (SQL) This Intro to SQL training

More information

DB2 for Linux, UNIX, Windows - Adv. Recovery and High Availability

DB2 for Linux, UNIX, Windows - Adv. Recovery and High Availability DB2 for Linux, UNIX, Windows - Adv. Recovery and High Availability Duration: 4 Days Course Code: CL492G Overview: Gain a deeper understanding of the advanced recovery features of DB2 9 for Linux, UNIX,

More information

Oracle 1Z0-053 Exam Questions & Answers

Oracle 1Z0-053 Exam Questions & Answers Oracle 1Z0-053 Exam Questions & Answers Number: 1Z0-053 Passing Score: 660 Time Limit: 120 min File Version: 38.8 http://www.gratisexam.com/ Oracle 1Z0-053 Exam Questions & Answers Exam Name: Oracle Database

More information