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

Size: px
Start display at page:

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

Transcription

1 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 Athens London Madrid Mexico City Milan New Delhi Singapore Sydney Toronto

2 [Contents m I ACKNOWLEDGMENTS INTRODUCTION xxi xxiii I The Database: The Foundations of 12c I CRITICAL SKILL 1.1 Define a Database 3 CRITICAL SKILL 1.2 Become Familiar with the Characteristics of a Database 5 Sharing 5 Storage 6 Data Consistency 7 Data Integrity 9 CRITICAL SKILL 1.3 Learn When to Use a Database 12 CRITICAL SKILL 1.4 Learn the Oracle Database 12c Architecture 13 Shared Memory 13 System Support Processes 15 Operating System Files 16 CRITICAL SKILL 1.5 Work with Objects in the Oracle Database 18 Tables 19 Views 20 Synonyms 20 Stored Objects 21 CRITICAL SKILL 1.6 Work with Data Types in an Oracle Database Variable Length Character varchar2 23 Number 24 Datetime 25 CLOB/BLOB 26 CRITICAL SKILL 1.7 Pull It All Together: Objects and Data Types 27 CRITICAL SKILL 1.8 Interact with the Data 30 SQL*Developer 30 sqlplus 34 xi

3 xii Oracle Database 12c: Install, Configure & Maintain Like a Professional CRITICAL SKILL 1.9 Learn the New Features of Oracle Database 12c 39 Pluggable Databases 40 Application Development 42 Availability 42 Business Intelligence and Data Warehousing 43 Compression and Archiving 44 Overall Database Features 44 Grid Features 44 Manageability 45 Performance 4^ Security XML DB 47 2 Installing Oracle 49 CRITICAL SKILL 2.1 Research and Plan the Installation 50 Define System Requirements 51 Linux Installation 52 CRITICAL SKILL 2.2 Set Up the Operating System 56 Project 2-1 Configure Kernel Parameters 59 Step by Step 59 Project Summary 61 CRITICAL SKILL 2.3 Get Familiar with Linux 61 CRITICAL SKILL 2.4 Choose Components to Install 63 CRITICAL SKILL 2.5 Install the Oracle Software 64 Database Configuration Assistant 73 Verify the Installation 84 Tie It All Together 85 3 SQL: Accessing and Retrieving Data 87 CRITICAL SKILL 3.1 Learn the SQL Statement Components 88 DDL 89 DML 90 CRITICAL SKILL 3.2 Use Basic Insert and Select Statements 91 Insert 91 Select 92 CRITICAL SKILL 3.3 Use Simple WHERE Clauses 94 A WHERE Clause with AND/OR 97 The WHERE Clause with NOT 98 The WHERE Clause with a Range Search 99 The WHERE Clause with a Search List 99 The WHERE Clause with a Pattern Search 100 The WHERE Clause: Common Operators 103 4^

4 Contents xiii CRITICAL SKILL 3.4 Use Basic Update, Delete, and Merge Statements 105 Update 105 Delete 106 Insert 107 Use Basic Merge Statements 107 CRITICAL SKILL 3.5 Order Data 110 CRITICAL SKILL 3.6 Employ Functions: String, Numeric, Aggregate (No Grouping) 112 String Functions 112 Numeric Functions 113 Aggregate Functions 114 CRITICAL SKILL 3.7 Use Dates and Data Functions (Formatting and Chronological) 115 Date Functions 116 Special Formats with the Date Data Type 116 Nested Functions 116 CRITICAL SKILL 3.8 Employ Joins (ANSI vs. Oracle): Inner, Outer, Self, Apply 119 Inner Joins 119 Outer Joins 124 Project 3-1 Join Data Using Inner and Outer Joins 124 Step by Step 125 Project Summary 127 Project 3-2 Join Data Using ANSI SQL Joins 128 Step by Step 128 Project Summary 129 Self-Joins 129 CRITICAL SKILL 3.9 Learn the Group By and Having Clauses 131 Group By 131 Having 132 Project 3-3 Group Data in Your Select Statements 133 Step by Step 133 Project Summary 135 CRITICAL SKILL 3.10 Learn Subqueries: Simple and Correlated Comparison with Joins 136 Simple Subquery 136 Correlated Subqueries with Joins 137 CRITICAL SKILL 3.11 Use Set Operators: Union, Intersect, Minus 138 Union 139 Union All 140 Intersect 140 Minus 141

5 1 xiv Oracle Database 12c: Install, Configure & Maintain Like a Professional Project 3-4 Use the Union Function in Your SQL 141 Step by Step 141 Project Summary 142 CRITICAL SKILL 3.12 Use Views 143 CRITICAL SKILL 3.13 Learn Sequences: Just Simple CRITICAL SKILL 3.14 Employ Constraints: Linkage to Entity Models, Stuff 145 Types, Deferred, Enforced, Gathering Exceptions 146 Linkage to Entity Models 147 Types 147 Deferred 149 CRITICAL SKILL 3.15 Format Your Output with SQL*Plus 149 Page and Line Size 149 Page Titles 150 Page Footers 150 Formatting Columns 150 Project 3-5 Format Your SQL Output 150 Step by Step 150 Project Summary 153 Writing SQL*Plus Output to a File Programming in the Database 155 CRITICAL SKILL 4.1 Define PL/SQL and Learn Why We Use It 157 CRITICAL SKILL 4.2 Describe the Basic PL/SQL Program Structure... CRITICAL SKILL 4.3 Define PL/SQL Data Types 160 Valid Characters Arithmetic Operators 161 The VARCHAR2 Data Type 163 The NUMBER Data Type 164 The DATE Data Type 164 The BOOLEAN Data Type 165 The VARRAY Data Type 166 CRITICAL SKILL 4.4 Write PL/SQL Programs in SQL*Plus 169 Project 4-1 Create a PL/SQL Program 171 Step by Step 171 Project Summary 171 SQL in Your PL/SQL Programs 172 PL/SQL Cursors 172 The Cursor FOR Loop 1 75 CRITICAL SKILL 4.5 Handle Error Conditions in PL/SQL 1 77 CRITICAL SKILL 4.6 Include Conditions in Your Programs 184 Program Control IF Logic Structures CASE Statements

6 Contents XV Loops 189 The WHILE Loop 190 The FOR Loop 190 Project 4-2 Use Conditions and Loops in PL/SQL 192 Step by Step 192 Project Summary 193 CRITICAL SKILL 4.7 Create Stored Procedures How and Why 194 CRITICAL SKILL 4.8 Create and Use Functions 199 Project 4-3 Create and Use a Function 199 Step by Step 200 Project Summary 201 CRITICAL SKILL 4.9 Call PL/SQL Programs The Database Administrator 205 CRITICAL SKILL 5.1 Learn What a DBA Does 206 CRITICAL SKILL 5.2 Perform Day-to-Day Operations 208 Architecture and Design 208 Capacity Planning 208 Backup and Recovery 208 Security 209 Performance and Tuning 209 Managing Database Objects 209 Storage Management 210 Change Management 210 Schedule Jobs 210 Network Management 210 High Availability 211 Troubleshooting 211 CRITICAL SKILL 5.3 Understand the Oracle Database 12c Architecture 211 Schemas 211 Segments, Extents, and Blocks 211 Databases 213 Pluggable Logical Schema Structures 213 Storage Structures 216 CRITICAL SKILL 5.4 Operate Modes for an Oracle Database 12c 217 Modes of Operation 217 Container Database STARTUP 218 Other Ways to Open the Database 218 Forcing a Startup 219 Database and Instance Shutdown 219

7 Xvi Oracle Database 12c: Install, Configure & Maintain Like a Professional CRITICAL SKILL 5.5 Get Started with Oracle Enterprise Manager 221 Instance Configuration 225 User Sessions 99c ZZJ Resource Consumer Groups 226 Other Tools 228 CRITICAL SKILL 5.6 Understand Database Connections 230 Oracle Net Services 230 Command-Line Utilities 231 Connections 233 Maintain Connections 233 Define a Location 234 A Connect Descriptor 235 Define a Connect Descriptor 236 CRITICAL SKILL 5.7 Manage Database Objects 236 Control Files 236 Redo Logs 237 Undo Management 237 Schema Objects 237 CRITICAL SKILL 5.8 Manage Space 240 Archive Logs 240 Tablespaces and Data Files 240 CRITICAL SKILL 5.9 Manage Users 242 Create a User 243 Edit Users 245 CRITICAL SKILL 5.10 Manage Privileges for Database Users 245 Grant Authority 245 Types of Grants 246 Take Away Authority 246 Roles 246 Oracle-Defined Roles 247 Create and Grant a Role 247 Profiles 247 Tie It All Together 249 Project 5-1 Create Essential Objects 249 Step by Step 249 Project Summary Backup and Recovery 253 CRITICAL SKILL 6.1 Understand Rman 254 Rman Metadata 255 CRITICAL SKILL 6.2 See Reasons to Use Rman 256 CRITICAL SKILL 6.3 Understand Storage Media 256

8 Contents XVli CRITICAL SKILL 6.4 Examine Rman Components 258 Backup 258 Restore 259 Recovery 259 CRITICAL SKILL 6.5 Invoke Rman 259 CRITICAL SKILL 6.6 Learn Rman Commands 262 CRITICAL SKILL 6.7 Review Rman Channels 265 CRITICAL SKILL 6.8 Examine Rman Configuration 267 CRITICAL SKILL 6.9 Explore Backup Commands 269 Database 269 Tablespace 269 Datafile 270 Control File 270 Server Parameter File 270 Archived Redo Logs 270 CRITICAL SKILL 6.10 Conduct Incremental Backups 271 CRITICAL SKILL 6.11 List Backups 272 CRITICAL SKILL See Rman Metadata 273 CRITICAL SKILL Use Rman Restore 276 CRITICAL SKILL 6.14 Understand Rman Recover 277 CRITICAL SKILL 6.15 Learn About Backup Retention 277 CRITICAL SKILL 6.16 Check Syntax 278 CRITICAL SKILL Recover a Table 278 CRITICAL SKILL 6.18 Pull It All Together 279 Backup Script 279 Restore and Recovery Script High Availability: RAC, ASM, and Data Guard 283 CRITICAL SKILL 7.1 Define High Availability 284 CRITICAL SKILL 7.2 Understand Real Application Clusters 285 CRITICAL SKILL 7.3 Install RAC 287 CRITICAL SKILL 7.4 Test RAC 292 Workload Manager 293 ASM 293 CRITICAL SKILL 7.4 Set Up the ASM Instance 295 Project 7-1 Install ASMLib 301 Step by Step 301 Project Summary 301 CRITICAL SKILL 7.5 Create ASM Disk Groups 302 Project 7-2 Create Disk Croups 302 Step by Step 303 Project Summary 304

9 XVlii Oracle Database 12c: Install, Configure & Maintain Like a Professional CRITICAL SKILL 7.6 Use ASMCMD and ASMLib 304 CRITICAL SKILL 7.7 Convert an Existing Database to ASM 305 CRITICAL SKILL 7.8 Understand Data Guard 309 CRITICAL SKILL 7.9 Explain Data Guard Protection Modes 309 CRITICAL SKILL 7.10 Create a Physical Standby Server 313 Project 7-3 Create a Physical Standby Server 314 Step by Step 314 Project Summary Using and Managing Large Databases CRITICAL SKILL 8.1 Learn to Identify a Very Large Database 320 CRITICAL SKILL 8.2 How and Why to Use Data Partitioning 321 Why Use Data Partitioning Manageability Performance Implement Data Partitioning Ask the Expert Project 8-1 Create a Range-Partitioned Table and a Local-Partitioned Index 344 Project Summary CRITICAL SKILL 8.3 Compress Your Data Data Compression Index 349 Key Compression Automatic Data Optimization 349 CRITICAL SKILL 8.4 Use Parallel Processing to Improve Performance Parallel Processing Database Components 352 Parallel Processing Configuration 352 Invoke Parallel Execution 353 CRITICAL SKILL 8.5 Use Materialized Views 355 Uses for Materialized Views 356 Query Rewrite 358 When to Create Materialized Views 359 Create Materialized Views 359 CRITICAL SKILL 8.6 Use SQL Aggregate and Analysis Functions 360 Aggregation Functions 360 rollup 360 cube 362 Analytic Functions 363 Windowing Functions 370 Other Functions 371 CRITICAL SKILL 8.7 Create SQL Models 372 Project 8-2 Use Analytic SQL Functions and Models 375 Project Summary 377

10 Contents xix 9 Oracle's Engineered Systems: From the Database Appliance to Exadata 379 CRITICAL SKILL 9.1 Understand Oracle Database Appliance 381 CRITICAL SKILL 9.2 Manage Oracle Database Appliance 381 Initial Configuration 382 CRITICAL SKILL 9.3 Learn about Exadata's Main Components 383 CRITICAL SKILL 9.4 Understand Exadata Storage 385 Exadata Storage Concepts 386 CRITICAL SKILL 9.5 Accelerate Large Queries with Storage Offload 388 Smart Scan in Action 388 Why Smart Scans May Not Happen 390 CRITICAL SKILL 9.6 Understand Storage Indexes 391 Storage Indexes in Action 392 CRITICAL SKILL 9.7 Use the Exadata Flash Cache 392 Trying Out the Flash Cache 393 CRITICAL SKILL 9.8 Save Storage Space with Hybrid Columnar Compression 394 Hybrid Columnar Compression in Action 396 Using DBMS_COMPRESSION to Estimate Compression 397 CRITICAL SKILL 9.9 Enable Database Consolidation with I/O Resource Management 398 Project 9-1 Create an Interdatabase IORM Plan 399 Step by Step 399 Project Summary 400 CRITICAL SKILL 9.10 Perform Common Exadata Management Tasks User Accounts on Exadata Storage Servers 400 Using DCLI to Retrieve Metrics from the Storage Server 400 Using EXACHK to Validate Exadata Configurations 401 CRITICAL SKILL 9.11 Manage Exadata with Oracle Enterprise Manager 403 Mastery Check Answers 407 Chapter 1: The Database: The Foundations of 12c 408 Chapter 2: Installing Oracle 409 Chapter 3: SQL: Accessing and Retrieving Data 410 Chapter 4: Programming in the Database 413 Chapter 5: The Database Administrator 414 Chapter 6: Backup and Recovery 417 Chapter 7: High Availability: RAC, ASM, and Data Guard 418 Chapter 8: Using and Managing Large Databases 420 Chapter 9: Oracle's Engineered Systems: From the Database Appliance to Exadata 422 Index 427

"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

"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

Oracle Real Application Clusters Handbook

Oracle Real Application Clusters Handbook ORACLE Oracle Press Oracle Database 11 g Oracle Real Application Clusters Handbook Second Edition K Copalakrishnan Mc Gnaw Hill McGraw-Hill New York Chicago San Francisco Lisbon London Madrid Mexico City

More information

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 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

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 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

"Charting the Course... Oracle 12c New Features for Administrators. Course Summary

Charting the Course... Oracle 12c New Features for Administrators. Course Summary Course Summary Description This course provides a complete, hands-on introduction to the newest release of Oracle Enterprise Edition. Key features of this product are fully discussed and demonstrated.

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

Deep Dive. Cloud Control 12c. Oracle Enterprise Manager ORACLG. Oracle Press. Michael New Edward Whalen Matthew Burke. London Madrid Mexico City Milan

Deep Dive. Cloud Control 12c. Oracle Enterprise Manager ORACLG. Oracle Press. Michael New Edward Whalen Matthew Burke. London Madrid Mexico City Milan ORACLG Oracle Press Oracle Enterprise Manager Cloud Control 12c Deep Dive Michael New Edward Whalen Matthew Burke Mc Graw Hill Education New York Chicago San Francisco Athens London Madrid Mexico City

More information

Oracle Exadata Recipes

Oracle Exadata Recipes Oracle Exadata Recipes A Problem-Solution Approach John Clarke Apress- Contents About the Author About the Technical Reviewer Acknowledgments Introduction xxxiii xxxv xxxvii xxxix Part 1: Exadata Architecture

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 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

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 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

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

Exadata Database Machine Administration Workshop NEW

Exadata Database Machine Administration Workshop NEW Exadata Database Machine Administration Workshop NEW What you will learn: This course introduces students to Oracle Exadata Database Machine. Students learn about the various Exadata Database Machine features

More information

Exadata Database Machine Administration Workshop

Exadata Database Machine Administration Workshop Exadata Database Machine Administration Workshop Duration : 32 Hours This course introduces you to the Oracle Exadata Database Machine. You'll learn about the various Exadata Database Machine features

More information

Exadata Database Machine: 12c Administration Workshop Ed 2

Exadata Database Machine: 12c Administration Workshop Ed 2 Oracle University Contact Us: 800-260-690 Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days What you will learn This Exadata Database Machine: 12c Administration Workshop training

More information

Exadata Database Machine: 12c Administration Workshop Ed 2

Exadata Database Machine: 12c Administration Workshop Ed 2 Oracle University Contact Us: 00 9714 390 9050 Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days What you will learn This Exadata Database Machine: 12c Administration Workshop

More information

Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days

Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days This Exadata Database Machine: 12c Administration Workshop introduces you to Oracle Exadata Database Machine. Explore the various

More information

Enterprise Manager: Scalable Oracle Management

Enterprise Manager: Scalable Oracle Management Session id:xxxxx Enterprise Manager: Scalable Oracle John Kennedy System Products, Server Technologies, Oracle Corporation Enterprise Manager 10G Database Oracle World 2003 Agenda Enterprise Manager 10G

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

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

Exdata Database Machine: 12c Administration Workshop Ed 2

Exdata Database Machine: 12c Administration Workshop Ed 2 Exdata Database Machine: 12c Administration Workshop Ed 2 Duration 5 Days What you will learn This Exadata Database Machine: 12c Administration Workshop training introduces you to Oracle Exadata Database

More information

Exadata Database Machine: 12c Administration Workshop Ed 1

Exadata Database Machine: 12c Administration Workshop Ed 1 Oracle University Contact Us: 20 (0)2 35350254 Exadata Database Machine: 12c Administration Workshop Ed 1 Duration: 5 Days What you will learn This course introduces students to Oracle Exadata Database

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 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

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

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

ORACLE DATABASE 12C INTRODUCTION

ORACLE DATABASE 12C INTRODUCTION SECTOR / IT NON-TECHNICAL & CERTIFIED TRAINING COURSE In this training course, you gain the skills to unleash the power and flexibility of Oracle Database 12c, while gaining a solid foundation of database

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

Oracle Database 11g Data Guard

Oracle Database 11g Data Guard Oracle Database 11g Data Guard Overview This course introduces the delegate to the main architectural concepts of Data Guard. Delegates will learn how to use Oracle Data Guard to protect Oracle Databases

More information

Oracle Database 10g: Introduction to SQL

Oracle Database 10g: Introduction to SQL ORACLE UNIVERSITY CONTACT US: 00 9714 390 9000 Oracle Database 10g: Introduction to SQL Duration: 5 Days What you will learn This course offers students an introduction to Oracle Database 10g database

More information

DB2 SQL Tuning Tips for z/os Developers

DB2 SQL Tuning Tips for z/os Developers DB2 SQL Tuning Tips for z/os Developers Tony Andrews IBM Press, Pearson pic Upper Saddle River, NJ Boston Indianapolis San Francisco New York Toronto Montreal London Munich Paris Madrid Cape Town Sydney

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

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

SQL Queries. for. Mere Mortals. Third Edition. A Hands-On Guide to Data Manipulation in SQL. John L. Viescas Michael J. Hernandez

SQL Queries. for. Mere Mortals. Third Edition. A Hands-On Guide to Data Manipulation in SQL. John L. Viescas Michael J. Hernandez SQL Queries for Mere Mortals Third Edition A Hands-On Guide to Data Manipulation in SQL John L. Viescas Michael J. Hernandez r A TT TAddison-Wesley Upper Saddle River, NJ Boston Indianapolis San Francisco

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

Essentials of Database Management

Essentials of Database Management Essentials of Database Management Jeffrey A. Hoffer University of Dayton Heikki Topi Bentley University V. Ramesh Indiana University PEARSON Boston Columbus Indianapolis New York San Francisco Upper Saddle

More information

Oracle - Exadata Database Machine: 12c

Oracle - Exadata Database Machine: 12c Oracle - Exadata Database Machine: 12c Administration Workshop Ed 2 Code: Lengt h: URL: D92889GC20 5 days View Online This Exadata Database Machine: 12c Administration Workshop training introduces you

More information

Exadata Database Machine Administration Workshop

Exadata Database Machine Administration Workshop Exadata Database Machine Administration Workshop Training Calendar Date Training Time Location 11 March 2019 5 Days Bilginç IT Academy 15 April 2019 5 Days Bilginç IT Academy Training Details Training

More information

Exadata Implementation Strategy

Exadata Implementation Strategy BY UMAIR MANSOOB Who Am I Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist since 2011 Oracle Database Performance Tuning Certified Expert Oracle Business Intelligence

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

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

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

CHAPTER. Oracle Database 11g Architecture Options

CHAPTER. Oracle Database 11g Architecture Options CHAPTER 1 Oracle Database 11g Architecture Options 3 4 Part I: Critical Database Concepts Oracle Database 11g is a significant upgrade from prior releases of Oracle. New features give developers, database

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

Key to A Successful Exadata POC

Key to A Successful Exadata POC BY UMAIR MANSOOB Who Am I Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist since 2011 Oracle Database Performance Tuning Certified Expert Oracle Business Intelligence

More information

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda Agenda Oracle9i Warehouse Review Dulcian, Inc. Oracle9i Server OLAP Server Analytical SQL Mining ETL Infrastructure 9i Warehouse Builder Oracle 9i Server Overview E-Business Intelligence Platform 9i Server:

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

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: 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

"Charting the Course to Your Success!" MOC D Querying Microsoft SQL Server Course Summary

Charting the Course to Your Success! MOC D Querying Microsoft SQL Server Course Summary Course Summary Description This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft SQL Server 2014. This course is the foundation

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

"Charting the Course... Oracle18c SQL (5 Day) Course Summary

Charting the Course... Oracle18c SQL (5 Day) Course Summary Course Summary Description This course provides a complete, hands-on introduction to SQL including the use of both SQL Developer and SQL*Plus. This coverage is appropriate for users of Oracle11g and higher.

More information

"Charting the Course... MOC C: Querying Data with Transact-SQL. Course Summary

Charting the Course... MOC C: Querying Data with Transact-SQL. Course Summary Course Summary Description This course is designed to introduce students to Transact-SQL. It is designed in such a way that the first three days can be taught as a course to students requiring the knowledge

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

Arup Nanda Longtime Oracle DBA (and now DMA)

Arup Nanda Longtime Oracle DBA (and now DMA) Arup Nanda Longtime Oracle DBA (and now DMA) Why this Session? If you are an Oracle DBA Familiar with RAC, 11gR2 and ASM about to be a Database Machine Administrator (DMA) How much do you have to learn?

More information

Exadata for Oracle DBAs. Arup Nanda Longtime Oracle DBA (and now DMA)

Exadata for Oracle DBAs. Arup Nanda Longtime Oracle DBA (and now DMA) Arup Nanda Longtime Oracle DBA (and now DMA) Why this Session? If you are an Oracle DBA Familiar with RAC, 11gR2 and ASM about to be a Database Machine Administrator (DMA) How much do you have to learn?

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 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: 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

Exadata Implementation Strategy

Exadata Implementation Strategy Exadata Implementation Strategy BY UMAIR MANSOOB 1 Who Am I Work as Senior Principle Engineer for an Oracle Partner Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist

More information

5. Single-row function

5. Single-row function 1. 2. Introduction Oracle 11g Oracle 11g Application Server Oracle database Relational and Object Relational Database Management system Oracle internet platform System Development Life cycle 3. Writing

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 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

Oracle RMAN for Absolute Beginners

Oracle RMAN for Absolute Beginners Oracle RMAN for Absolute Beginners Darl Kuhn Apress Contents About the Author Acknowledgments Introduction xvii xix xxi Chapter 1: Getting Started... 1 Connecting to Your Database 1 Establishing OS Variables

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

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 9i release 1. Administration. Database Outsourcing Experts

Oracle 9i release 1. Administration. Database Outsourcing Experts Administration Default Temporary Tablespace The system will automatically allocate new users an appropriate temporary tablespace without you needing to specify it explicitly in the create user statement.

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

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

Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l

Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l Course Topics: Introduction Overview Oracle Database Innovation Enterprise Cloud

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 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 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

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 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

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle University Contact Us: (+202) 35 35 02 54 Oracle Database: Introduction to SQL Duration: 5 Days What you will learn View a newer version of this course This Oracle Database: Introduction to SQL

More information

Ryan Stephens. Ron Plew Arie D. Jones. Sams Teach Yourself FIFTH EDITION. 800 East 96th Street, Indianapolis, Indiana, 46240

Ryan Stephens. Ron Plew Arie D. Jones. Sams Teach Yourself FIFTH EDITION. 800 East 96th Street, Indianapolis, Indiana, 46240 Ryan Stephens Ron Plew Arie D. Jones Sams Teach Yourself FIFTH EDITION 800 East 96th Street, Indianapolis, Indiana, 46240 Table of Contents Part I: An SQL Concepts Overview HOUR 1: Welcome to the World

More information

ORACLE 12C NEW FEATURE. A Resource Guide NOV 1, 2016 TECHGOEASY.COM

ORACLE 12C NEW FEATURE. A Resource Guide NOV 1, 2016 TECHGOEASY.COM ORACLE 12C NEW FEATURE A Resource Guide NOV 1, 2016 TECHGOEASY.COM 1 Oracle 12c New Feature MULTITENANT ARCHITECTURE AND PLUGGABLE DATABASE Why Multitenant Architecture introduced with 12c? Many Oracle

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

Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.)

Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.) Volume: 183 Questions Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.) A. The user cannot set privileges on persistent lightweight jobs. B. The use

More information

Oracle Exadata Course Content

Oracle Exadata Course Content 1 Oracle Exadata Course Content Introduction Course Objectives Audience and Prerequisites Course Contents Terminology Additional Resources Introducing the Laboratory Environment Exadata Database Machine

More information

Course Modules for MCSA: SQL Server 2016 Database Development Training & Certification Course:

Course Modules for MCSA: SQL Server 2016 Database Development Training & Certification Course: Course Modules for MCSA: SQL Server 2016 Database Development Training & Certification Course: 20762C Developing SQL 2016 Databases Module 1: An Introduction to Database Development Introduction to the

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 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 Syllabus Course code-r10605 SQL

Oracle Syllabus Course code-r10605 SQL Oracle Syllabus Course code-r10605 SQL Writing Basic SQL SELECT Statements Basic SELECT Statement Selecting All Columns Selecting Specific Columns Writing SQL Statements Column Heading Defaults Arithmetic

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

<Insert Picture Here> Controlling resources in an Exadata environment

<Insert Picture Here> Controlling resources in an Exadata environment Controlling resources in an Exadata environment Agenda Smart IO IO Resource Manager Compression Hands-on time Exadata Security Flash Cache Storage Indexes Parallel Execution Agenda

More information

ORACLE 11g R2 New Features

ORACLE 11g R2 New Features KNOWLEDGE POWER Oracle Grid Infrastructure Installation and Upgrade Enhancements Oracle Restart ASM Enhancements Storage Enhancements Data Warehouse and Partitioning Enhancements Oracle SecureFiles Security

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 12c R2: New Features for Administrators Part 2 Ed 1

Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1 Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1 Duration 5 Days What you will learn Throughout the lessons of the Oracle Database 12c R2: New Features for Administrators Part 2 course

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 Database 12c R2: New Features for Administrators Part 2 Ed 1 -

Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1 - Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 12c R2: New Features for Administrators Part 2 Ed 1 - Duration: 5 Days What you will learn Throughout the lessons

More information

Oracle Database Administration

Oracle Database Administration A Active (Current) and Inactive Redo Log Files... 12:8 Alert and Trace Log Files... 1:34 Alert Log Files... 1:34 ALTER TABLE Statement - Reasons for using... 9:18 ALTER TABLESPACE... 7:23 Application Development...

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