Diplomado Oracle DBA Specialist

Size: px
Start display at page:

Download "Diplomado Oracle DBA Specialist"

Transcription

1 Diplomado Oracle DBA Specialist Duración: 250 horas. Horario: Sabatino de 8:00 a 16:00 horas. Incluye: 1. Curso presencial de 250 horas. 2.- Material oficial de Oracle University (e-kit s) de los siguientes cursos: - Oracle Database 12c: SQL & PLSQL Fundamentals - Oracle Database 12c: Admin, Install and Upgrade Accelerated - Oracle Database 12c: Backup and Recovery Workshop - Oracle Database 12c: Management Multitenant Architecture - Oracle Database 12c: Performance Management and Tuning - Oracle Database 12c: RAC Administration Requisitos: Es Indispensable traer lap-top con las siguientes características: 1. Procesador: Intel(R) Core(TM) i5 ó i7 Quad Core a 2.0 GHz o un procesador equivalente en Intel o AMD de cuatro núcleos. 2. Tipo de Sistema Operativo Windows 7 u 8 a 64 Bits. 3. Mínimo de memoria RAM: 12 GB. 4. Mínimo de espacio en Disco 150 GB disponibles.

2 Oracle University Contact Us: & Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training delivers the fundamentals of SQL and PL/SQL along with the benefits of the programming languages using Oracle Database technology. You'll explore the concepts of relational databases. Learn To: Write queries against single and multiple tables, manipulate data in tables and create database objects. Use single row functions to customize output. Invoke conversion functions and conditional expressions. Use group functions to report aggregated data. Create PL/SQL blocks of application code that can be shared by multiple forms, reports and data management applications. Develop anonymous PL/SQL blocks, stored procedures and functions. Declare identifiers and trap exceptions. Use DML statements to manage data. Use DDL statements to manage database objects. Declare PL/SQL Variables. Conditionally control code flow (loops, control structures). Describe stored procedures and functions. Retrieve row and column data from tables. Benefits to You Ensure fast, reliable, secure and easy to manage performance. Optimize database workloads, lower IT costs and deliver a higher quality of service by enabling consolidation onto database clouds. Hands-On Practices Demonstrations and hands-on practice reinforce the fundamental concepts that you ll learn in this course. By enrolling in this course, you ll begin using Oracle SQL Developer to develop these program units. SQL*Plus and JDeveloper are available as optional tools. Course Bundle Note: This course is a combination of Oracle Database: SQL Workshop I and Oracle Database: PL/SQL Fundamentals courses. Audience Application Developers Copyright 2013, Oracle. All rights reserved. Page 1

3 Forms Developer Functional Implementer PL/SQL Developer Portal Developer Reports Developer Technical Consultant Related Training Required Prerequisites Familiarity with data processing concepts and techniques Familiarity with programming concepts Course Objectives Run data manipulation statements (DML) to update data in the Oracle Database. Design PL/SQL anonymous block that execute efficiently. Describe the features and syntax of PL/SQL. Handle runtime errors. Describe stored procedures and functions. Use PL/SQL programming constructs and conditionally control code flow (loops, control structures, and explicit cursors). Use cursors to process rows. Identify the major structural components of the Oracle Database 11g. Retrieve row and column data from tables with the SELECT statement. Create reports of sorted and restricted data. Employ SQL functions to generate and retrieve customized data. Display data from multiple tables using the ANSI SQL 99 JOIN syntax. Create reports of aggregated data. Run data definition language (DDL) statements to create and manage schema objects. Course Topics Introduction Overview of Oracle Database 12c and related products Copyright 2013, Oracle. All rights reserved. Page 2

4 Overview of relational database management concepts and terminologies Introduction to SQL and its development environments The HR schema and the tables used in this course Oracle Database documentation and additional resources Retrieve Data using the SQL SELECT Statement List the capabilities of SQL SELECT statements Generate a report of data from the output of a basic SELECT statement Use arithmetic expressions and NULL values in the SELECT statement Invoke Column aliases Concatenation operator, literal character strings, alternative quote operator, and the DISTINCT keyword Display the table structure using the DESCRIBE command Restricted and Sorted Data Write queries with a WHERE clause to limit the output retrieved Describe the comparison operators and logical operators Describe the rules of precedence for comparison and logical operators Usage of character string literals in the WHERE clause Write queries with an ORDER BY clause Sort the output in descending and ascending order Substitution Variables Usage of Single-Row Functions to Customize Output List the differences between single row and multiple row functions Manipulate strings using character functions Manipulate numbers with the ROUND, TRUNC, and MOD functions Perform arithmetic with date data Manipulate dates with the DATE functions Conversion Functions and Conditional Expressions Describe implicit and explicit data type conversion Describe the TO_CHAR, TO_NUMBER, and TO_DATE conversion functions Nesting multiple functions Apply the NVL, NULLIF, and COALESCE functions to data Usage of conditional IF THEN ELSE logic in a SELECT statement Aggregated Data Using the Group Functions Usage of the aggregation functions in SELECT statements to produce meaningful reports Describe the AVG, SUM, MIN, and MAX function How to handle Null Values in a group function? Divide the data in groups by using the GROUP BY clause Exclude groups of date by using the HAVING clause Display Data From Multiple Tables Write SELECT statements to access data from more than one table Join Tables Using SQL:1999 Syntax View data that does not meet a join condition by using outer joins Join a table to itself by using a self join Create Cross Joins Usage of Subqueries to Solve Queries Use a Subquery to Solve a Problem Copyright 2013, Oracle. All rights reserved. Page 3

5 Single-Row Subqueries Group Functions in a Subquery Multiple-Row Subqueries Use the ANY and ALL Operator in Multiple-Row Subqueries Use the EXISTS Operator SET Operators Describe the SET operators Use a SET operator to combine multiple queries into a single query Describe the UNION, UNION ALL, INTERSECT, and MINUS Operators Use the ORDER BY Clause in Set Operations Data Manipulation Add New Rows to a Table Change the Data in a Table Use the DELETE and TRUNCATE Statements How to save and discard changes with the COMMIT and ROLLBACK statements Implement Read Consistency Describe the FOR UPDATE Clause DDL Statements to Create and Manage Tables Categorize Database Objects Create Tables Describe the data types Understand Constraints Create a table using a subquery How to alter a table? How to drop a table? Other Schema Objects Create, modify, and retrieve data from a view Perform Data manipulation language (DML) operations on a view How to drop a view? Create, use, and modify a sequence Create and drop indexes Create and drop synonyms Introduction to PL/SQL PL/SQL Overview List the benefits of PL/SQL Subprograms Overview of the Types of PL/SQL blocks Create a Simple Anonymous Block Generate the Output from a PL/SQL Block PL/SQL Identifiers List the different Types of Identifiers in a PL/SQL subprogram Usage of the Declarative Section to Define Identifiers Use of variables to store data Scalar Data Types %TYPE Attribute Bind Variables Sequences in PL/SQL Expressions Copyright 2013, Oracle. All rights reserved. Page 4

6 Write Executable Statements Basic PL/SQL Block Syntax Guidelines How to comment code? SQL Functions in PL/SQL Data Type Conversion Nested Blocks Operators in PL/SQL Interaction with the Oracle Server SELECT Statements in PL/SQL to Retrieve data Data Manipulation in the Server Using PL/SQL The SQL Cursor concept Learn to use SQL Cursor Attributes to Obtain Feedback on DML How to save and discard transactions? Control Structures Conditional processing Using IF Statements Conditional processing Using CASE Statements Simple Loop Statement While Loop Statement For Loop Statement The Continue Statement Usage of Composite Data Types PL/SQL Records The %ROWTYPE Attribute Insert and Update with PL/SQL Records Associative Arrays (INDEX BY Tables) INDEX BY Table Methods INDEX BY Table of Records Explicit Cursors Understand Explicit Cursors Declare the Cursor How to open the Cursor? Fetching data from the Cursor How to close the Cursor? Cursor FOR loop Explicit Cursor Attributes FOR UPDATE Clause and WHERE CURRENT Clause Exception Handling What are Exceptions? Handle Exceptions with PL/SQL Trap Predefined Oracle Server Errors Trap Non-Predefined Oracle Server Errors Trap User-Defined Exceptions Propagate Exceptions RAISE_APPLICATION_ERROR Procedure Stored Procedures and Functions What are Stored Procedures and Functions? Copyright 2013, Oracle. All rights reserved. Page 5

7 Differentiate between anonymous blocks and subprograms Create a Simple Procedure Create a Simple Procedure with IN parameter Create a Simple Function Execute a Simple Procedure Execute a Simple Function Copyright 2013, Oracle. All rights reserved. Page 6

8 Oracle University Contact Us: Oracle Database 12c: Admin, Install and Upgrade Accelerated Duration: 5 Days What you will learn This Oracle Database 12c: Admin, Install and Upgrade Accelerated course covers 7 days worth of content in only 5 days. It consists of the Oracle Database 12c: Administration Workshop Ed 1 course (5 days) and the Oracle Database 12c: Install and Upgrade Workshop Ed 1 course (2 days). This course will will teach you about the Oracle Database architecture and you will discover how to effectively manage an Oracle Database instance. You will also be provided key information on how to install and administer Oracle Database 12c. Learn To: Upgrade an existing Oracle Database to Oracle Database 12c. Create and manage an Oracle Database Instance. Create and manage Storage Structures. Configure the Oracle Network Environment. Create and manage users. Monitor the database and manage performance. Learn basic information on backup and recovery techniques. Benefits To You Discover how you can effectively install and manage an Oracle Database instance. Create a container database and provision pluggable databases to support your business needs. Benefit from learning how to configure the Oracle Network Environment to perform database maintenance. Audience Data Warehouse Administrator Database Administrators Database Designers Support Engineer Technical Administrator Related Training Required Prerequisites Working knowledge of SQL and use of PL/SQL packages Suggested Prerequisites Basic knowledge of Linux Operating System Copyright 2013, Oracle. All rights reserved. Page 1

9 Course Objectives Install Oracle Database 12c software Upgrade database to Oracle Database 12c Create an Oracle Database Create a container database Monitor the Database Manage Database Performance Implement Database Auditing Configure the Database Instance Such That Resources Are Appropriately Allocated Among Sessions and Tasks Schedule Jobs to Run Inside or Outside of the Database Configure Oracle Net Services Configure your Database For Backup and Recovery Operations Describe Oracle Database Architecture Manage the Oracle Database Instance Manage Oracle Database Storage structures Course Topics Introduction Course Objectives Course Schedule Overview of Oracle Database 12c Overview of Oracle Cloud Overview of the HR Schema Oracle Database 12c Introduction Exploring the Oracle Database Architecture Oracle Database Architecture: Overview Oracle Database Instance Configurations Connecting to the Oracle Database Instance Oracle Database memory Structures (overview) Process Architecture Process Structures Process Startup Sequence Database Storage Architecture Oracle Software Installation Basics Copyright 2013, Oracle. All rights reserved. Page 2

10 Planning Your Installation Configuring Oracle Linux with Oracle RDBMS Pre-Install RPM Operating System Groups and Users Environment Variables Configuring the Oracle Software Owner Environment Using Oracle Universal Installer (OUI) Installation Option: Silent Mode Installing Oracle Database Software System Requirements for Oracle Database Creating Operating System Groups and Users Types of Installations Creating an Oracle Database by Using DBCA Planning the Database Storage Structure Types of Databases (based on workload) Choosing the Appropriate Character Set Understanding How Character Sets are Used Setting the NLS_LANG Initialization Parameter Using the Database Configuration Assistant (DBCA) Oracle Database Management Tools Introducing Oracle Database Management Tools Using SQL*Plus Using SQL Developer Logging in to Oracle Enterprise Manager Database Express Using the Enterprise Manager Database Express Home Page Understanding the Enterprise Manager Cloud Control Framework Using Enterprise Manager Cloud Control Managing the Database Instance Initialization Parameter Files Starting an Oracle Database Instance Shutting Down an Oracle Database Instance Viewing Log Files Using Trace Files Using the Dynamic Performance Views Data Dictionary Configuring the Oracle Network Environment Oracle Net Services Overview Oracle Net Listener Overview Establishing Oracle Network Connections Connecting to a Server Tools for Configuring and Managing the Oracle Network Using the Listener Control Utility Using Oracle Net Configuration Assistant Using Oracle Net Manager Administering User Security Database User Accounts (overview) Predefined Administrative Accounts Copyright 2013, Oracle. All rights reserved. Page 3

11 Creating a User Authentication Unlocking a User Account and Resetting the Password Privileges Roles Profiles Managing Database Storage Structures Understanding Storage of Data Database Block contents Exploring the Storage Structure Creating a New Tablespace Overview of Tablespaces Created by Default Managing Tablespaces Viewing Tablespace Information Using Oracle Managed Files Managing Space Space Management Overview Block Space Management Row Chaining and Migration Free Space Management Within Segments Types of Segments Allocating Extents Allocating Space Creating Tables Without Segments Managing Undo Data Undo Data Overview Transactions and Undo Data Storing Undo Information Comparing Undo Data and Redo Data Managing Undo Configuring Undo Retention Guaranteeing Undo Retention Changing an Undo tablespace to a Fixed Size Managing Data Concurrency Overview of Locks Locking Mechanism Data Concurrency DML Locks Enqueue Mechanism Lock Conflicts Implementing Oracle Database Auditing Separation of Responsibilities Database Security Monitoring for Compliance Standard Database Auditing Unified Audit Data Trail Separation for Duties for Audit Administration (AUDIT_ADMIN and AUDIT_VIEWER roles) Copyright 2013, Oracle. All rights reserved. Page 4

12 Configuring the Audit Trail Specifying Audit Options Backup and Recovery Concepts Categories of Failures Flashback Technology Understanding Instance Recovery Phases of Instance Recovery Tuning Instance Recovery Using the MTTR Advisor Comparing Complete and Incomplete Recovery Oracle Data Protection Solutions Backup and Recovery Configuration Configuring for Recoverability Configuring the Fast Recovery Area Multiplexing the Control File Online Redo Log File Multiplexing the Online Redo Log File Archived Redo Log Files Archiver Process Archived Redo Log File Naming and Destinations Performing Database Backups Backup Solutions Overview Oracle Secure Backup (overview) User Managed Backup (overview) Backup Terminology and Types of Backups Using Recovery Manager (RMAN) Configuring Backup Settings Oracle-Suggested Backup Backing Up the Control File to a Trace File Performing Database Recovery Data Recovery Advisor Loss of a Control File Loss of a Redo Log File Loss of a Datafile in NOARCHIVELOG Mode Loss of a Noncritical Datafile in ARCHIVELOG Mode Loss of a System-Critical Datafile in ARCHIVELOG Mode Moving Data Moving Data: General Architecture Oracle Data Pump SQL*Loader External Tables Performing Database Maintenance Database Maintenance (overview) Viewing the Alert History Terminology Automatic Workload Repository (AWR) Copyright 2013, Oracle. All rights reserved. Page 5

13 Statistic Levels Automatic Database Diagnostic Monitor (ADDM) Advisory Framework Enterprise Manager and Advisors Managing Performance Performance Monitoring Tuning Activities Performance Planning Instance Tuning Performance Tuning Methodology Performance Tuning Data Monitoring Performance Managing Memory Managing Performance: SQL Tuning SQL Tuning Oracle Optimizer SQL Plan Directives Adaptive Execution Plans SQL Advisors Automatic SQL Tuning results Implement Automatic Tuning Recommendations SQL Tuning Advisor Copyright 2013, Oracle. All rights reserved. Page 6

14 Oracle University Contact Us: Oracle Database 12c: Backup and Recovery Workshop Duration: 5 Days What you will learn This Oracle Database 12c: Backup and Recovery Workshop will teach you how to evaluate your own recovery requirements. You'll develop appropriate strategies for backup, restore and recovery procedures from provided scenarios. Learn To: Develop appropriate backup and recovery procedures to address your business needs. Implement backup and recovery settings and perform backup operations to disk and tape. Employ Oracle Database recovery procedures to recover from media and other failures. Diagnose and repair data failures. Use Flashback Technologies and data duplication to complement backup and recovery procedures. Secure the availability of your database by appropriate backup and recovery strategies. Benefits to You Ensure fast, reliable, secure and easy to manage performance. Optimize database workloads, lower IT costs and deliver a higher quality of service by enabling consolidation onto database clouds. Perform Backup and Recovery Expert instructors will begin by helping you gain a deeper understanding of possibly the most important job of a Database Administrator backup and recovery. The concepts and architecture that support backup and recovery, along with the steps required to carry it out in various ways and situations, are covered in detail. Recovery Manager Command Line and Graphical Interfaces This course will teach you about Recovery Manager (RMAN) command line and graphical interfaces for various backup, failure, restore and recovery scenarios. Participate in Hands-on Practices and Workshops Participating in extensive hands-on practices and workshops will help you gain experience in a realistic technical environment. Interactive workshops give you the opportunity to diagnose and recover from numerous failure scenarios, based on backup and recovery case studies. Key Takeaways Upon completing this course, you will know how to evaluate your own recovery requirements. You'll have the skills to develop an appropriate strategy for backup and recovery procedures. Audience Copyright 2013, Oracle. All rights reserved. Page 1

15 Data Warehouse Administrator Database Administrators Support Engineer Technical Administrator Technical Consultant Related Training Required Prerequisites Knowledge of Oracle Database 12c Knowledge of SQL and PL/SQL Oracle Database 12c: Administration Workshop Suggested Prerequisites Using Oracle Enterprise Manager Cloud Control 12c Course Objectives Describe Oracle Database backup methods and recovery operations that can be used to resolve database failure. Describe the Oracle Database architecture components related to backup and recovery operations. Plan effective backup and recovery procedures. Configure the database for recoverability. Use Recovery Manager (RMAN) to create backups and perform recovery operations. Use the Data Recovery Advisor to diagnose and repair failures. Use Oracle Flashback Technologies to recover from human error. Perform an encrypted database backup and restore. Perform tablespace point-in-time recovery. Describe additional high availability features such as Oracle Data Guard. Course Topics Introduction Curriculum Context Assess your Recovery Requirements Categories of failures Oracle Backup and Recovery Solutions Oracle Maximum Availability Architecture Copyright 2013, Oracle. All rights reserved. Page 2

16 Oracle Secure Backup Benefits of using Oracle Data Guard Basic Workshop Architecture Getting Started Core Concepts of the Oracle Database, Critical for Backup and Recovery Oracle DBA Tools for Backup and Recovery Connecting to Oracle Recovery Manager (RMAN) Quick Start: A Problem-Solution Approach Configuring for Recoverablility RMAN commands Configuring and managing persistent settings Using the Fast Recovery Area (FRA) Control File Redo Log File Archiving Logs Using the RMAN Recovery Catalog Creating and Configuring the Recovery Catalog Managing Target Database Records in the Recovery Catalog Using RMAN Stored Scripts Maintaining and Protecting the Recovery Catalog Virtual Private Catalogs Backup Strategies and Terminology Backup Solutions Overview and Terminology Balancing Backup and Restore Requirements Backing Up Read-Only Tablespaces Best Practices for Data Warehouse Backups Additional Backup Terminology Performing Backups RMAN Backup Types Incrementally Updated Backups Fast Incremental Backup Block Change Tracking Oracle-Suggested Backup Reporting on Backups Managing Backups Improving Your Backups Compressing Backups Using a Media Manager Creating RMAN Multisection Backups, Proxy Copies, Duplexed Backup Sets and Backups of Backup Sets Creating and Managing Archival Backups Backing Up Recovery Files Backing Up the Control File to a Trace File Cataloging Additional Backup Files Backing Up ASM Disk Group Metadata Using RMAN-Encrypted Backups Copyright 2013, Oracle. All rights reserved. Page 3

17 Creating RMAN-Encrypted Backups Using Transparent-Mode Encryption Using Password-Mode Encryption Using Dual-Mode Encryption Diagnosing Database Failures Reducing Problem Diagnosis Time Automatic Diagnostic Repository Interpreting RMAN Message Output and Error Stacks Data Recovery Advisor Diagnosing Data File Loss (file system and ASM) Handling Block Corruption Restore and Recovery Concepts Restoring and Recovering Instance Failure and Instance/Crash Recovery Media Failure Complete Recovery (Overview) Point-in-Time Recovery (Overview) Recovery Through RESETLOGS Performing Recovery, Part 1 RMAN Recovery in NOARCHIVELOG Mode Performing Complete Recovery (of critical and noncritical data files) Restoring ASM Disk Groups Recovery with Image Files Performing Point-in-Time (PITR) or Incomplete Recovery Table Recovery from Backups Performing Recovery, Part 2 Recovery of Server Parameter File, Control File Redo Log File Loss and Recovery Password Authentication File Re-creation Index, Read-Only Tablespace, and Tempfile Recovery Restoring the Database to a New Host Disaster Recovery Restoring RMAN Encrypted Backups RMAN and Oracle Secure Backup Oracle Secure Backup Overview Oracle Database Disk and Tape Backup Solution Backing Up the Fast Recovery Area to Tape Defining Retention for RMAN Backups RMAN and Oracle Secure Backup Basic Process Flow Integration with Cloud Control RMAN Database Backup to Tape Performing Tape Backups and Restores Scheduling Backups with EM Oracle-Suggested Backup RMAN and OSB Process Flow RMAN and Oracle Secure Backup Jobs Copyright 2013, Oracle. All rights reserved. Page 4

18 Managing Database Tape Backups Performing Database Recovery RMAN Automatic Failover to Previous Backup Using Flashback Technologies Flashback Technology: Overview and Setup Using Flashback Technology to Query Data Flashback Table Flashback Transaction (Query and Backout) Flashback Drop and the Recycle Bin Flashback Data Archive Using Flashback Database Flashback Database Architecture Configuring Flashback Database Performing Flashback Database Best Practices for Flashback Database Managing Backup Space or Transporting Data Transporting Tablespaces Transporting Databases Duplicating a Database Using a Duplicate Database Choosing Database Duplication Techniques Creating a Backup-up Based Duplicate Database Understanding the RMAN Duplication Operation Using Cloud Control to Clone a Database RMAN Performance and Tuning Tuning Principles RMAN Multiplexing Diagnosing Performance Bottlenecks Restore and Recovery Performance Best Practices Backup and Recovery Workshop Workshop Structure Workshop Approach to Solving Failure Scenarios Business Requirements for Database Availability and Procedures Copyright 2013, Oracle. All rights reserved. Page 5

19 Certificación Duración: 21 horas. Horario: Sabatino de 8:00 a 15:00 horas. Incluye: 1. Curso presencial de 21 horas. 2.- Material oficial de Oracle University (e-kit s) del siguiente curso: Oracle Database 12c: Managing Multitenant Architecture voucher de certificación a elegir con 6 meses de vigencia.

20 Oracle Database 12c: Managing Multitenant Architecture Introduction Course Objectives Course Schedule Tools Container and Pluggable Database Architecture Challenges and Benefits Multitenant Architecture Provisioning PDBs Terminology CDB and PDB Creation Using Tools Configuring and Creating a CDB Creating PDBs Dropping PDBs Migrating PDBs Managing a CDB and PDBs Connection Managing a CDB and PDBs Managing PDBs Open Mode and Settings Configuring CDB and PDBs Initialization Parameters Managing Storage in a CDB and PDBs Managing Permanent Tablespaces in CDB and PDBs Managing Temporary Tablespaces in CDB and PDBs Managing Security in a CDB and PDBs Managing Common and Local Users Managing Common and Local Privileges Managing Common and Local Roles Understanding Shared and Non-Shared Objects Managing Common and Local Profiles Managing Availability Managing Backups Managing Recovery Operations Managing Flashback Database Duplicating PDBs Special Situations and Views

21 Managing Performance Managing Performance Managing Resource Allocation Maximizing Consolidated Database Replay Miscellaneous Exporting and Importing Data Loading Data Auditing Operations Scheduling Jobs Using Other Products

22 Certificación Duración: 40 horas. Horario: Sabatino de 8:00 a 15:00 horas. Incluye: 1. Curso presencial de 40 horas. 2.- Material oficial de Oracle University (e-kit s) del siguiente curso: Performance Management and Tuning Requisitos: Es Indispensable traer lap-top con las siguientes características: 1. Procesador: Intel(R) Core(TM) i5 ó i7 Quad Core a 2.0 GHz o un procesador equivalente en Intel o AMD de cuatro núcleos. 2. Tipo de Sistema Operativo Windows 7 u 8 a 64 Bits. 3. Mínimo de memoria RAM: 12 GB. 4. Mínimo de espacio en Disco 150 GB disponibles.

23 Oracle Database 12c: Performance Management and Tuning Introduction Course Objectives Course Organization Course Agenda Topics Not Included in the Course Who Tunes? What Does the DBA Tune? How to Tune Tuning Methodology Basic Tuning Diagnostics Performance Tuning Diagnostics Performance Tuning Tools Tuning Objectives Top Timed Events DB Time CPU and Wait Time Tuning Dimensions Time Model Dynamic Performance Views Using Automatic Workload Repository Automatic Workload Repository Overview Automatic Workload Repository Data Enterprise Manager Cloud Control and AWR Snapshots Reports Compare Periods Defining the Scope of Performance Issues Defining the Problem Limiting the Scope Setting the Priority Top SQL Reports Common Tuning Problems Tuning During the Life Cycle ADDM Tuning Session Performance Versus Business Requirements Using Metrics and Alerts Metrics and Alerts Overview Limitation of Base Statistics Benefits of Metrics Viewing Metric History Information Viewing Histograms Server-Generated Alerts Setting Thresholds Metrics and Alerts Views

24 Using Baselines Comparative Performance Analysis with AWR Baselines Automatic Workload Repository Baselines Moving Window Baseline Baselines in Performance Page Settings Baseline Templates AWR Baseslines Creating AWR Baselines Managing Baselines with PL/SQL Using AWR-Based Tools Automatic Maintenance Tasks ADDM Performance Monitoring Using Compare Periods ADDM Active Session History New or Enhanced Automatic Workload Repository Views Emergency Monitoring Real-time ADDM Real-Time Database Operation Monitoring Overview Use Cases Defining a Database Operation Scope of a Composite Database Operation Database Operation Concepts Identifying a Database Operation Enabling Monitoring of Database Operations Identifying, Starting, and Completing a Database Operation Monitoring Applications What is a Service? Service Attributes Service Types Creating Services Managing Services in a Single-Instance Environment Where are Services Used? Using Services with Client Applications Services and Pluggable Databases Identifying Problem SQL Statements SQL Statement Processing Phases Role of the Oracle Optimizer Identifying Bad SQL Top SQL Reports SQL Monitoring What is an Execution Plan? Methods for Viewing Execution Plans Uses of Execution Plans

25 Influencing the Optimizer Functions of the Query Optimizer Selectivity Cardinality and Cost Changing Optimizer Behavior Optimizer Statistics Extended Statistics Controlling the Behavior of the Optimizer with Parameters Enabling Query Optimizer Features Reducing the Cost of SQL Operations Reducing the Cost Index Maintenance SQL Access Advisor Table Maintenance for Performance Table Reorganization Methods Space Management Extent Management Data Storage Using SQL Performance Analyzer Real Application Testing: Overview Real Application Testing: Use Cases SQL Performance Analyzer: Process Capturing the SQL Workload Creating a SQL Performance Analyzer Task SQL Performance Analyzer: Tasks Parameter Change SQL Performance Analyzer Task Page SQL Performance Management Maintaining SQL Performance Maintaining Optimizer Statistics Automated Maintenance Tasks Statistic Gathering Options Setting Statistic Preferences Restore Statistics Deferred Statistics Publishing Automatic SQL Tuning Using Database Replay Using Database Replay The Big Picture System Architecture Capture Considerations Replay Considerations: Preparation Replay Considerations Replay Options Replay Analysis

26 Tuning the Shared Pool Shared Pool Architecture Shared Pool Operation The Library Cache Latch and Mutex Diagnostic Tools for Tuning the Shared Pool Avoiding Hard Parses Reducing the Cost of Soft Parses Sizing the Shared Pool Tuning the Buffer Cache Oracle Database Architecture: Buffer Cache Buffer Cache: Highlights Database Buffers Buffer Hash Table for Lookups Working Sets Buffer Cache Tuning Goals and Techniques Buffer Cache Performance Symptoms Buffer Cache Performance Solutions Tuning PGA and Temporary Space SQL Memory Usage Performance Impact Automatic PGA Memory SQL Memory Manager Configuring Automatic PGA Memory Setting PGA_AGGREGATE_TARGET Initially Limiting the size of the Program Global Area (PGA) SQL Memory Usage Automatic Memory Oracle Database Architecture Dynamic SGA Granule Memory Advisories Manually Adding Granules to Components Increasing the Size of an SGA Component Automatic Shared Memory Management: Overview SGA Sizing Parameters: Overview Performance Tuning Summary with Waits Commonly Observed Wait Events Additional Statistics Top 10 Mistakes Found in Customer Systems Symptoms

27 Oracle University Contact Us: Oracle 12c: RAC Duration: 5 Days What you will learn This Oracle 11g: RAC and Grid Infrastructure Administration Accelerated training teaches you about the Oracle Grid Infrastructure products, including Oracle Automatic Storage Manager (ASM), ASM Cluster File System and Oracle Clusterware. You will also learn to administer the Oracle Clusterware and storage products using both command line utilities and graphical tools using both command line and graphical user interface clients. Learn To: Describe the Oracle Database 11g Grid Infrastructure. Administer both Policy and Administrator managed RAC databases. Install and configure Grid Infrastructure. Describe Oracle Database 11g RAC enhancements and new features Describe Grid Plug and Play. Use Oracle Clusterware to make applications highly available. Troubleshoot the Oracle Clusterware by examining log files, enabling debugging and enabling tracing for various utilities. Add and remove nodes and explore quality of service concepts. Upgrade or patch the Grid Infrastructure environment. Upgrade and path Oracle RAC databases. Benefits to You Enrolling in this advanced course will help you develop the skills to leverage the Oracle Clusterware to make applications highly available. You'll leave the class with the ability to support monitoring and failover to other nodes as well. RAC Database Administration in the Oracle Grid Infrastructure Environment Furthemore, you'll get hands-on training administering cluster databases using Enterprise Manager and command-line utilities like SRVCTL, CRSCTL and SQL*Plus. Expert Oracle University instructors will help you study the new connection architecture and how to make those connections highly available. Backup and recovery issues relative to cluster database environments will also be covered, along with Oracle RAC One Node and online migration. Accelerated Course This course is based on Oracle Database 11g Release 2. Please note that this is an accelerated course, covering 9 days' worth of content in only 5 days. Because of the extra content covered each day, the daily class duration may be Copyright 2013, Oracle. All rights reserved. Page 1

28 slightly longer than usual. Audience Data Warehouse Administrator Database Administrators Database Designers Support Engineer Technical Administrator Related Training Required Prerequisites Oracle Database Administration experience Oracle Database 11g: Administration Workshop I Release 2 Suggested Prerequisites Oracle Database 11g: Administration Workshop II Release 2 Oracle Database: Introducción a SQL NUEVO Oracle Database: Introduction to SQL Course Objectives Understand Oracle Clusterware architecture Describe how Grid Plug and Play affects Clusterware Describe Automatic Storage Management (ASM) architecture Perform Grid Infrastructure installation and create RAC database Demonstrate Clusterware management proficiency Manage application resources Troubleshoot Oracle Clusterware Administer ASM Instances and disk groups Administer ASM Cluster File Systems Install Oracle Database 11gR2 software and create RAC database Manage RAC databases Manage backup and recovery for RAC Determine RAC-specific tuning components Copyright 2013, Oracle. All rights reserved. Page 2

29 Configure and manage services in a RAC environment Describe high availability architectures Course Topics Oracle Grid Infrastructure Concepts Oracle Grid Infrastructure Oracle Clusterware Architecture and Services Goals for Oracle Clusterware Oracle Clusterware Networking Grid Naming Service, Single-Client Access Name Grid Plug and Play GPnP Domain, Components, Profile Oracle Automatic Storage Management (ASM) and Grid Infrastructure Oracle Clusterware Architecture Oracle Grid Infrastructure for a Cluster Oracle Cluster Registry (OCR) CSS Voting Disk Function Oracle Local Registry and High Availability Oracle Clusterware Initialization, Controlling Oracle Clusterware Verifying the Status of Oracle Clusterware, Viewing the High Availability Services Stack GPnP Architecture: Overview Automatic Storage Management Grid Infrastructure Pre-installation Tasks Pre-installation Planning Shared Storage Planning for Grid Infrastructure Sizing Shared Storage for Oracle Clusterware Storing the OCR in ASM Managing Voting Disks in ASM Installing & Preparing ASMLib Grid Infrastructure Pre-installation Tasks Oracle Grid Infrastructure 11g Grid Infrastructure Installation Choosing an Installation Type Grid Plug and Play Support Cluster Node Information Specify Network Interface Usage Storage Option Information Specify Cluster Configuration: Typical Installation Verifying the Grid Infrastructure Installation Modifying Oracle Clusterware Binaries after Installation Adding and Removing Cluster Nodes Adding Oracle Clusterware Prerequisite Steps for Running addnode.sh Adding a Node with addnode.sh Copyright 2013, Oracle. All rights reserved. Page 3

30 Completing OUI Node Addition Removing a Node from the Cluster Deleting a Node from the Cluster Deleting a Node from a Cluster (GNS in Use Deleting a Node from the Cluster Administering Oracle Clusterware Managing Oracle Clusterware Managing Clusterware with Enterprise Manager Controlling Oracle High Availability Services Determining the Location of Oracle Clusterware Configuration Files g Checking the Integrity of Oracle Clusterware Configuration Files Backing Up and Recovering the Voting Disk Adding, Deleting, or Migrating Voting Disks Locating the OCR Automatic Backups Upgrading and Patching Grid Infrastructure Out-of-Place Oracle Clusterware Upgrade Oracle Clusterware Upgrade Types of Patches, Patch Properties Configuring the Software Library Setting Up Patching, Starting the Provisioning Daemon Obtaining Oracle Clusterware Patches Rolling Patches, Checking Software Versions Installing a Rolling Patchset with OUI, Installing a Rolling Patch with OPatch Troubleshooting Oracle Clusterware Golden Rule in Debugging Oracle Clusterware Monitoring Oracle Clusterware Cluster Health Monitor (CHM) oclumon Utility oclumon debug Command clumon dumpnodeview Command oclumon dumpnodeview Command oclumon manage Command Making Applications Highly Available with Oracle Clusterware Oracle Clusterware High Availability (HA) Resource Management Options Server Pools GENERIC and FREE Server Pools Assignment of Servers to Server Pools ew Server Attributes and States Creating Server Pools with srvctl and crsctl Managing Server Pools with srvctl and crsctl ASM: Overview ASM and ASM Cluster File System ASM Key Features and Benefits ASM Instance Designs: Nonclustered ASM and Oracle Databases ASM Instance Designs: Clustered ASM for Clustered Databases ASM Instance Designs: Clustered ASM for Mixed Databases Copyright 2013, Oracle. All rights reserved. Page 4

31 ASM System Privileges ASM OS Groups with Role Separation Authentication for Accessing ASM Instances Administering ASM Managing ASM with ASMCA Starting and Stopping ASM Instances by Using ASMCA and ASMCMD Starting and Stopping ASM Instances by Using srvctl Starting and Stopping ASM Instances by Using SQL*Plus Starting and Stopping ASM Instances Containing Cluster Files ASM Initialization Parameters AASM_DISKGROUPS Disk Groups Mounted at Startup Administering ASM Disk Groups Disk Group: Overview Creating a New Disk Group Creating a New Disk Group with ASMCMD Creating an ASM Disk Group with ASMCA Creating an ASM Disk Group: Advanced Options Creating a Disk Group with Enterprise Manager Disk Group Attributes V$ASM_ATTRIBUTE Administering ASM Files, Directories, and Templates ASM Clients Interaction between Database Instances and ASM Accessing ASM Files by Using RMAN Accessing ASM Files by Using XML DB Accessing ASM Files by Using DBMS_FILE_TRANSFER Accessing ASM Files by Using ASMCMD Fully Qualified ASM File Names Other ASM File Names Administering ASM Cluster File Systems ASM Files and Volumes ACFS and ADVM Architecture: Overview ASM Cluster File System Striping Inside the Volume Creating an ACFS Volume Creating an ASM Dynamic Volume with Enterprise Manager Managing ADVM Dynamic Volumes Creating an ASM Cluster File System with Enterprise Manager RAC Concepts Overview of Oracle RAC RAC One Node Single-Instance High Availability Oracle RAC One Node and Oracle Clusterware Cluster-Aware Storage Solutions Oracle Cluster File System Benefits of Using RAC Clusters and Scalability Copyright 2013, Oracle. All rights reserved. Page 5

32 Levels of Scalability Installing and Configuring Oracle RAC Installing the Oracle Database Software, Creating the Cluster Database Database Type Selection, Database Identification Cluster Database Management Options Database File Locations, Recovery Configuration, Database Content Create the Database Background Processes Specific to Oracle RAC Considerations for Converting Single-Instance Databases to Oracle RAC Single-Instance Conversion Using the DBCA and rconfig Oracle RAC Administration Configuration Section, Topology Viewer Enterprise Manager Alerts and RAC, Metrics and RAC Enterprise Manager Alert History and RAC, Enterprise Manager Blackouts and RAC Redo Log Files and RAC, Automatic Undo Management and RAC Starting and Stopping RAC Instances Switch Between Automatic and Manual Policies RAC Initialization Parameter Files Managing Backup and Recovery for RAC RAC and Instance Recovery Instance Recovery and Database Availability Instance Recovery and RAC Protecting Against Media Failure Media Recovery in Oracle RAC Parallel Recovery in RAC Archived Log File Configurations RAC and the Fast Recovery Area, RAC Backup and Recovery Using EM RAC Database Monitoring and Tuning CPU and Wait Time Tuning Dimensions, RAC-Specific Tuning Analyzing Cache Fusion Impact in RAC Typical Latencies for RAC Operations Wait Events for RAC, Wait Event Views Global Cache Wait Events: Overview, Global Enqueue Waits Session and System Statistics Most Common RAC Tuning Tips AWR Reports and RAC: Overview Oracle RAC One Node Verifying an Existing RAC One Node Database Oracle RAC One Node Online Migration, Online Migration Considerations Performing an Online Migration Online Migration Illustration, Online Maintenance: Rolling Patches Adding an Oracle RAC One Node Database to an Existing Cluster Converting a RAC One Node Database to RAC Converting a Single Instance Database to RAC One Node Converting a RAC Database to RAC One Node Quality of Service Management Copyright 2013, Oracle. All rights reserved. Page 6

33 QoS Management Overview QoS Management and Exadata Database Machine QoS Management Focus, Benefits, Functional Overview and Policy Sets Server Pools, Performance Classes Classification and Tagging Performance Policies, Performance Class Ranks, Performance Objectives Server Pool Directive Overrides, Overview of Metrics QoS Management Architecture Design for High Availability Causes of Unplanned Down Time, Causes of Planned Down Time Oracle s Solution to Down Time RAC and Data Guard Complementarily Maximum Availability Architecture RAC and Data Guard Topologies, RAC and Data Guard Architecture Data Guard Broker (DGB) and Oracle Clusterware (OC) Integration Hardware RAID Striped LUNs, Hardware RAID Striped LUNs HA Extended RAC: Overview, Connectivity and Disk Mirroring Copyright 2013, Oracle. All rights reserved. Page 7

34

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-9 7 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle University Contact Us: 1.800.529.0165 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Duration: 5 Days What you will learn This Oracle 11g: RAC and Grid Infrastructure

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 What you will learn This Oracle 11g: RAC and Grid Infrastructure Administration Accelerated training teaches you about the Oracle

More information

ORACLE RAC DBA COURSE CONTENT

ORACLE RAC DBA COURSE CONTENT ORACLE RAC DBA COURSE CONTENT Course Objectives Understand Oracle Clusterware architecture Describe how Grid Plug and Play affects Clusterware Describe Automatic Storage Management (ASM) architecture Perform

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

Oracle 12C DBA Online Training. Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL:

Oracle 12C DBA Online Training. Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL: Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL: A. Introduction Course Objectives, Course Agenda and Appendixes Used in this Course Overview of Oracle Database

More information

Page 1 نشانی: تهران خیابان شهید بهشتی نرسیده به قائم مقام فراهانی پالک طبقه تلفن: فکس:

Page 1 نشانی: تهران خیابان شهید بهشتی نرسیده به قائم مقام فراهانی پالک طبقه تلفن: فکس: Oracle 11g: RAC and Grid Infrastructure Administration Accelerated R2 (48 hrs.) This Oracle 11g: RAC and Grid Infrastructure Administration Accelerated training teaches you about the Oracle Grid Infrastructure

More information

Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW

Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW Oracle University Contact Us: 0845 777 7711 Oracle Database 12c: Backup and Recovery Workshop Ed 2 NEW Duration: 5 Days What you will learn This Oracle Database 12c: Backup and Recovery Workshop will teach

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training delivers the fundamentals of SQL and PL/SQL along with the

More information

What you will learn. interface clients. Learn To:

What you will learn. interface clients. Learn To: Oracle Uni Contact Us: 08 Oracle 11g: RAC and Grid Infrastructure Admin Durat5 Da What you will learn This Oracle 11g: RAC and Grid Infrastructure Administr Oracle Grid Infrastructure products, including

More information

Oracle Database: SQL and PL/SQL Fundamentals Ed 2

Oracle Database: SQL and PL/SQL Fundamentals Ed 2 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Database: SQL and PL/SQL Fundamentals Ed 2 Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP) Audience Data Warehouse Administrator Database Administrators Support Engineer Technical Administrator Technical Consultant Related Training Required Prerequisites Knowledge of Oracle Database 12c Knowledge

More information

Oracle - Oracle Database 12c: Backup and Recovery Workshop Ed 2

Oracle - Oracle Database 12c: Backup and Recovery Workshop Ed 2 Oracle - Oracle Database 12c: Backup and Recovery Workshop Ed 2 Code: Lengt h: URL: 12cDB-BR 5 days View Online This Oracle Database 12c: Backup and Recovery Workshop will teach you how to evaluate your

More information

COURSE CONTENT. ORACLE 10g/11g DBA. web: call: (+91) / 400,

COURSE CONTENT. ORACLE 10g/11g DBA.   web:  call: (+91) / 400, COURSE CONTENT ORACLE 10g/11g DBA 1. Introduction (Database Architecture) Oracle 10g: Database Describe course objectives Explore the Oracle 10g database architecture 2: Installing the Oracle Database

More information

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: Toll Free: 0008004401672 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery

More information

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: +386 1 588 88 13 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery Workshop,

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

Oracle Database 11g: SQL and PL/SQL Fundamentals

Oracle Database 11g: SQL and PL/SQL Fundamentals Oracle University Contact Us: +33 (0) 1 57 60 20 81 Oracle Database 11g: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn In this course, students learn the fundamentals of SQL and PL/SQL

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

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery Workshop,

More information

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3

Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Oracle University Contact Us: Toll Free: 0008004401672 Oracle Database 12c R2: Backup and Recovery Workshop Ed 3 Duration: 5 Days What you will learn In this Oracle Database 12c R2: Backup and Recovery

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle University Contact Us: 0845 777 7711 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Duration: 5 Days What you will learn In this intensive course, you'll learn about

More information

Oracle Database 12c: Administration Workshop Ed 2 NEW

Oracle Database 12c: Administration Workshop Ed 2 NEW Oracle Database 12c: Administration Workshop Ed 2 NEW Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about the Oracle Database architecture. You will

More information

Oracle Database 12c: Administration Workshop Ed 2

Oracle Database 12c: Administration Workshop Ed 2 Oracle University Contact Us: +40 21 3678820 Oracle Database 12c: Administration Workshop Ed 2 Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about

More information

Oracle Database 12c: Administration Workshop Ed 2

Oracle Database 12c: Administration Workshop Ed 2 Oracle Database 12c: Administration Workshop Ed 2 Duration 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about the Oracle Database architecture. You will discover

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 NEW

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 NEW Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 4108 4709 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 NEW Duration: 5 Days What you will learn This 11g

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 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led

Oracle Database 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led Oracle Database 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led Certification: Oracle Database 12c Administrator Certified Associate Exam: Oracle Database 12c: Installation and Administration

More information

ORACLE CERTIFIED ASSOCIATE ORACLE DATABASE 11g ADMINISTRATOR

ORACLE CERTIFIED ASSOCIATE ORACLE DATABASE 11g ADMINISTRATOR ORACLE CERTIFIED ASSOCIATE ORACLE DATABASE 11g ADMINISTRATOR The process of becoming Oracle Database certified broadens your knowledge and skills by exposing you to a wide array of important database features,

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 What you will learn In this intensive course, students will learn about the Oracle Grid Infrastructure products. This includes

More information

Oracle Database: Introduction to SQL/PLSQL Accelerated

Oracle Database: Introduction to SQL/PLSQL Accelerated Oracle University Contact Us: Landline: +91 80 67863899 Toll Free: 0008004401672 Oracle Database: Introduction to SQL/PLSQL Accelerated Duration: 5 Days What you will learn This Introduction to SQL/PLSQL

More information

EZY Intellect Pte. Ltd., #1 Changi North Street 1, Singapore

EZY Intellect Pte. Ltd., #1 Changi North Street 1, Singapore Oracle Database 12c: Performance Management and Tuning NEW Duration: 5 Days What you will learn In the Oracle Database 12c: Performance Management and Tuning course, learn about the performance analysis

More information

Oracle Database 12c: Performance Management and Tuning

Oracle Database 12c: Performance Management and Tuning Oracle University Contact Us: +43 (0)1 33 777 401 Oracle Database 12c: Performance Management and Tuning Duration: 5 Days What you will learn In the Oracle Database 12c: Performance Management and Tuning

More information

Introduction to SQL/PLSQL Accelerated Ed 2

Introduction to SQL/PLSQL Accelerated Ed 2 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Introduction to SQL/PLSQL Accelerated Ed 2 Duration: 5 Days What you will learn This Introduction to SQL/PLSQL Accelerated course

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

1. Name of Course: Oracle Database 12c: Backup and Recovery Workshop

1. Name of Course: Oracle Database 12c: Backup and Recovery Workshop ITSW 2037 Course Syllabus 1. Name of Course: Oracle Database 12c: Backup and Recovery Workshop 2. Number of Clock Hours: 60 hours 3. Course Description: Students will gain an understanding of Oracle database

More information

Course Overview on Oracle 11g Database Administration (OCP)

Course Overview on Oracle 11g Database Administration (OCP) Course Overview on Oracle 11g Database Administration (OCP) Course Description Oracle Database 11g Administrator Certified Professionals have the skills and expertise to manage the Oracle 11g Database

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

Oracle Database 12C: Advanced Administration - 1Z0-063

Oracle Database 12C: Advanced Administration - 1Z0-063 Oracle Database 12C: Advanced Administration - 1Z0-063 Backup and Recovery Explain Oracle backup and recovery solutions o Describe types of database failures o Describe the tools available for backup and

More information

Oracle Database: Introduction to SQL Ed 2

Oracle Database: Introduction to SQL Ed 2 Oracle University Contact Us: +40 21 3678820 Oracle Database: Introduction to SQL Ed 2 Duration: 5 Days What you will learn This Oracle Database 12c: Introduction to SQL training helps you write subqueries,

More information

Oralogic Education Systems

Oralogic Education Systems Oralogic Education Systems Next Generation IT Education Systems Introduction: In the Oracle Database 12c: Performance Management and Tuning course, learn about the performance analysis and tuning tasks

More information

Diplomado Certificación

Diplomado Certificación Diplomado Certificación Duración: 250 horas. Horario: Sabatino de 8:00 a 15:00 horas. Incluye: 1. Curso presencial de 250 horas. 2.- Material oficial de Oracle University (e-kit s) de los siguientes cursos:

More information

CO Oracle Database 12c: Backup and Recovery Workshop

CO Oracle Database 12c: Backup and Recovery Workshop CO-78850 Oracle Database 12c: Backup and Recovery Workshop Summary Duration 5 Days Audience Data Warehouse Administrators, Database Administrators, Support Engineers, Technical Administrators, Technical

More information

Oracle Database 10g: New Features for Administrators Release 2

Oracle Database 10g: New Features for Administrators Release 2 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 10g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course introduces students to the new features

More information

Oracle Database 11g: Administration Workshop II

Oracle Database 11g: Administration Workshop II Oracle Database 11g: Administration Workshop II Duration: 5 Days What you will learn In this course, the concepts and architecture that support backup and recovery, along with the steps of how to carry

More information

Oracle Database 12c R2: RAC Administration Ed 2

Oracle Database 12c R2: RAC Administration Ed 2 Oracle University Contact Us: +36 1224 1760 Oracle Database 12c R2: RAC Administration Ed 2 Duration: 4 Days What you will learn This Oracle Database 12c R2: RAC Administration training will teach you

More information

Oracle Database 11g: Administration Workshop I DBA Release 2

Oracle Database 11g: Administration Workshop I DBA Release 2 Oracle Database 11g: Administration Workshop II DBA Release 2 What you will learn: This course takes the database administrator beyond the basic tasks covered in the first workshop. The student begins

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: Administration Workshop I Release 2 course explores the fundamentals of basic database

More information

Oracle Database 12c Administration Workshop

Oracle Database 12c Administration Workshop Oracle Database 12c Administration Workshop Course information Days : 5 Total lessons : 18 Suggested Prerequisites : Oracle Database : SQL Fundamentals I Training includes : Experienced trainer(s) Pre-test

More information

Oracle Database 11g: RAC Administration Release 2 NEW

Oracle Database 11g: RAC Administration Release 2 NEW Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 4108 4709 Oracle Database 11g: RAC Administration Release 2 NEW Duration: 4 Days What you will learn This Oracle Database 11g: RAC Administration

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

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

Oracle Database 12c R1: New Features for Administrators Ed 2 Oracle Database 12c R1: New Features for Administrators Ed 2 Duration 5 Days What you will learn In the Oracle Database 12c: New Features for Administrators Ed 2 course, you ll learn about the new and

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

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-97 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

Oracle Database 11g: Performance Tuning DBA Release 2

Oracle Database 11g: Performance Tuning DBA Release 2 Oracle University Contact Us: +65 6501 2328 Oracle Database 11g: Performance Tuning DBA Release 2 Duration: 5 Days What you will learn This Oracle Database 11g Performance Tuning training starts with an

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: 55-800-891-6502 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This course is designed to give you a firm foundation in basic

More information

Oracle Database 12c: Clusterware & RAC Admin Accelerated Ed 1

Oracle Database 12c: Clusterware & RAC Admin Accelerated Ed 1 Oracle University Contact Us: 001-855-844-3881 Oracle Database 12c: Clusterware & RAC Admin Accelerated Ed 1 Duration: 5 Days What you will learn This Oracle Database 12c: Clusterware & RAC Admin Accelerated

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

Oracle Database 12c: RAC Administration Ed 1

Oracle Database 12c: RAC Administration Ed 1 Oracle University Contact Us: +7 (495) 641-14-00 Oracle Database 12c: RAC Administration Ed 1 Duration: 4 Days What you will learn This Oracle Database 12c: RAC Administration training will teach you about

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 Database 11g: Administration Workshop I

Oracle Database 11g: Administration Workshop I Oracle Database 11g: Administration Workshop I Duration: 5 Days What you will learn This course is designed to give students a firm foundation in basic administration of Oracle Database 11g. In this class,

More information

Course Outline: Oracle Database 11g: Administration II. Learning Method: Instructor-led Classroom Learning. Duration: 5.

Course Outline: Oracle Database 11g: Administration II. Learning Method: Instructor-led Classroom Learning. Duration: 5. Course Outline: Oracle Database 11g: Administration II Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40 hrs Overview: In this course, the concepts and architecture that support

More information

In the Oracle Database 12c: Performance Management and

In the Oracle Database 12c: Performance Management and Oracle Uni Contact Us: 08 Oracle Database 12c: Performance Management a Durat5 Da What you will learn In the Oracle Database 12c: Performance Management and analysis and tuning tasks expected of a DBA:

More information

supporting Oracle products. An OCA credential is available for several of today s most in -demand technology job roles. OCA & OCP Requirement

supporting Oracle products. An OCA credential is available for several of today s most in -demand technology job roles. OCA & OCP Requirement https://workforce.oracle.com Computer Point Nepal is only authorized center of Oracle as an Oracle Workforce Development Partner Program under Oracle University in Nepal to deliver Official Oracle Trainings.

More information

Oracle 11g Release 2 RAC & Grid Infrastructure Administration Course Overview

Oracle 11g Release 2 RAC & Grid Infrastructure Administration Course Overview Oracle 11g Release 2 RAC & Grid Infrastructure Administration Course Overview This Oracle 11g Release 2 RAC & Grid Infrastructure Administration course provides an introduction to the general features

More information

Oracle Database 12c: New Features for Administrators Duration: 5 Days

Oracle Database 12c: New Features for Administrators Duration: 5 Days Oracle Database 12c: New Features for Administrators Duration: 5 Days What you will learn In the Oracle Database 12c: New Features for Administrators course, you ll learn about the new and enhanced features

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

Learning Objectives : This chapter provides an introduction to performance tuning scenarios and its tools.

Learning Objectives : This chapter provides an introduction to performance tuning scenarios and its tools. Oracle Performance Tuning Oracle Performance Tuning DB Oracle Wait Category Wait AWR Cloud Controller Share Pool Tuning 12C Feature RAC Server Pool.1 New Feature in 12c.2.3 Basic Tuning Tools Learning

More information

Oracle Database 12c Performance Management and Tuning

Oracle Database 12c Performance Management and Tuning Course Code: OC12CPMT Vendor: Oracle Course Overview Duration: 5 RRP: POA Oracle Database 12c Performance Management and Tuning Overview In the Oracle Database 12c: Performance Management and Tuning course,

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

Oracle Database 12c R2: Administration Workshop Ed 3 NEW

Oracle Database 12c R2: Administration Workshop Ed 3 NEW Oracle Database 12c R2: Administration Workshop Ed 3 NEW Duration: 5 Days What you will learn The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with a firm foundation

More information

Oracle Database 11g: Performance Tuning DBA Release 2

Oracle Database 11g: Performance Tuning DBA Release 2 Course Code: OC11PTDBAR2 Vendor: Oracle Course Overview Duration: 5 RRP: POA Oracle Database 11g: Performance Tuning DBA Release 2 Overview This course starts with an unknown database that requires tuning.

More information

Course Outline. [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z

Course Outline. [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z Course Outline [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 28 Apr 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards

More information

Course Outline. [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z

Course Outline. [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z Course Outline [ORACLE PRESS] All-in-One Course for the OCA/OCP Oracle Database 12c Exams 1Z0-061, 1Z0-062, & 1Z0-063 18 Jun 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards

More information

Oracle Database 12c R2: Administration Workshop Ed 3

Oracle Database 12c R2: Administration Workshop Ed 3 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 12c R2: Administration Workshop Ed 3 Duration: 5 Days What you will learn The Oracle Database 12c R2: Administration Workshop Ed 3 course

More information

Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop II

Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop II Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop II What you will learn This Oracle Database 11g: Administration Workshop II Release 2 training takes the database

More information

Course: Oracle Database 12c R2: Administration Workshop Ed 3

Course: Oracle Database 12c R2: Administration Workshop Ed 3 Course: Oracle Database 12c R2: Administration Workshop Ed 3 The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with a firm foundation in administration of an Oracle

More information

Oracle Database 12c: RAC Administration Ed 1 LVC

Oracle Database 12c: RAC Administration Ed 1 LVC Oracle University Contact Us: 001-855-844-3881 Oracle Database 12c: RAC Administration Ed 1 LVC Duration: 4 Days What you will learn This Oracle Database 12c: RAC Administration training will teach you

More information

Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours

Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours What you will learn This course advances your success as an Oracle professional in the area of database administration.

More information

Oracle Database 11g : Performance Tuning DBA Release2

Oracle Database 11g : Performance Tuning DBA Release2 Oracle Database 11g : Performance Tuning DBA Release2 Target Audience : Technical Consultant/L2/L3 Support DBA/Developers Course Duration : 5 days Day 1: Basic Tuning Tools Monitoring tools overview Enterprise

More information

Oracle Database 11g Administration Workshop II

Oracle Database 11g Administration Workshop II Oracle Database 11g Administration Workshop II Course information Days : 5 Total lessons : 20 Suggested Prerequisites : Oracle Database 11g: SQL Fundamentals I Oracle Database 11g: Administration Workshop

More information

ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II

ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II ORACLE 12C - M-IV - DBA - ADMINISTRADOR DE BANCO DE DADOS II CONTEÚDO PROGRAMÁTICO Core Concepts and Tools of the Oracle Database The Oracle Database Architecture: Overview ASM Storage Concepts Connecting

More information

Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop I

Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop I Programa de Actualización Profesional ACTI Oracle Database 11g: Administration Workshop I What you will learn This Oracle Database 11g: Administration Workshop I Release 2 course explores the fundamentals

More information

Oracle Database 11g: Administration Workshop I

Oracle Database 11g: Administration Workshop I Oracle University Contacte con nosotros: 902 302 302 Oracle Database 11g: Administration Workshop I Duración: 5 Días Lo que aprenderá This course is designed to give students a firm foundation in basic

More information

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database: Introduction to SQL Duration: 5 Days What you will learn This Oracle Database: Introduction to SQL training helps you write subqueries,

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

Exam Prep Seminar Package: Oracle Database 12c Administrator Certified Associate

Exam Prep Seminar Package: Oracle Database 12c Administrator Certified Associate Oracle University Contact Us: +27 (0)11 319-4111 Exam Prep Seminar Package: Oracle Database 12c Administrator Certified Associate Duration: 1 Day What you will learn This package provides everything an

More information

Oracle - Oracle Database 11g: Backup and Recovery Workshop (Training On Demand)

Oracle - Oracle Database 11g: Backup and Recovery Workshop (Training On Demand) Oracle - Oracle Database 11g: Backup and Recovery Workshop (Training On Demand) Code: URL: D89616GC10 View Online This Oracle Database 11g: Backup and Recovery Workshop will teach you how to evaluate your

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

Oracle Database 12c: New Features for Administrators NEW

Oracle Database 12c: New Features for Administrators NEW Oracle Database 12c: New Features for Administrators NEW Duration: 5 Days Course Objectives Create, manage and monitor multitenant container database and pluggable databases Manage datafile online operations,

More information

Oracle Database 12c R2: Managing Multitenant Architecture Ed 2

Oracle Database 12c R2: Managing Multitenant Architecture Ed 2 Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 12c R2: Managing Multitenant Architecture Ed 2 Duration: 4 Days What you will learn During the Oracle Database

More information

ORACLE DATABASE: ADMINISTRATION WORKSHOP II

ORACLE DATABASE: ADMINISTRATION WORKSHOP II ORACLE DATABASE: ADMINISTRATION WORKSHOP II CORPORATE COLLEGE SEMINAR SERIES Date: March 18 April 25 Presented by: Lone Star Corporate College in partnership with the Oracle Workforce Development Program

More information

AO3 - Version: 2. Oracle Database 11g SQL

AO3 - Version: 2. Oracle Database 11g SQL AO3 - Version: 2 Oracle Database 11g SQL Oracle Database 11g SQL AO3 - Version: 2 3 days Course Description: This course provides the essential SQL skills that allow developers to write queries against

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

ORACLE DATABASE: ADMINISTRATION WORKSHOP II

ORACLE DATABASE: ADMINISTRATION WORKSHOP II ORACLE DATABASE: ADMINISTRATION WORKSHOP II CORPORATE COLLEGE SEMINAR SERIES Date: March 18 April 25 Presented by: Lone Star Corporate College in partnership with the Oracle Workforce Development Program

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

Oracle Database 11g: New Features for Oracle 9i DBAs

Oracle Database 11g: New Features for Oracle 9i DBAs Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: New Features for Oracle 9i DBAs Duration: 5 Days What you will learn This course introduces students to the new features of Oracle Database

More information

Oracle Developer Track Course Contents. Mr. Sandeep M Shinde. Oracle Application Techno-Functional Consultant

Oracle Developer Track Course Contents. Mr. Sandeep M Shinde. Oracle Application Techno-Functional Consultant Oracle Developer Track Course Contents Sandeep M Shinde Oracle Application Techno-Functional Consultant 16 Years MNC Experience in India and USA Trainer Experience Summary:- Sandeep M Shinde is having

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

Oracle - Oracle Database 12c R2: Administration Workshop Ed 3

Oracle - Oracle Database 12c R2: Administration Workshop Ed 3 Oracle - Oracle Database 12c R2: Administration Workshop Ed 3 Code: Lengt h: URL: 12cDB-A 5 days View Online The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with

More information