Contents. Part One Database Basics, Data Modeling, and UNIX/Linux...1

Size: px
Start display at page:

Download "Contents. Part One Database Basics, Data Modeling, and UNIX/Linux...1"

Transcription

1 About the Author...xxxi About the Technical Reviewer...xxxii Acknowledgments...xxxiii Introduction...xxxv Part One Database Basics, Data Modeling, and UNIX/Linux...1 Chapter 1 The Oracle DBA s World...3 The Oracle DBA s Role...3 The DBA s Security Role...4 The DBA s System Management Role...6 The DBA s Database Design Role...8 Different DBA Job Classifications...10 Types of Databases...10 Online Transaction Processing and Decision Support System Databases...11 Development, Test, and Production Databases...11 Background and Training...12 Background and Training for an Oracle DBA...12 Certification...15 Resources and Organizations for Oracle DBAs...16 Managing High-Performance Databases...18 Improving Your Troubleshooting Skills...19 The Daily Routine of a Typical Oracle DBA...21 Some General Advice...21 Know When You Need Help...22 Remember You Are Not Alone...22 Think Outside the Box...22 Summary...23 vii

2 Chapter 2 Relational Database Modeling and Database Design...25 Relational Databases: A Brief Introduction...26 The Relational Database Model...26 Database Schemas...27 Data Definition and Data Manipulation Languages...27 Relational Algebra...28 Relational Calculus...29 SQL and Relational Theory...29 Relational Database Life Cycle...30 Requirements Gathering and Analysis...30 Logical Database Design...31 Entity-Relationship Modeling...32 Normalization...38 The Normal Forms...40 ERM Tools: The Oracle Designer...44 Physical Database Design...45 Transformation of Entities and Relationships...46 Designing Different Types of Tables...47 Table Structures and Naming Conventions...47 Column Specifications and Choosing Data Types...47 Business Rules and Data Integrity...47 Implementation of the Physical Design...48 Database Sizing and Database Storage...48 Implementing Database Security...48 Moving to the New System...49 Reverse Engineering a Database...49 Object-Relational and Object Databases...49 The Relational Model...50 The Object Model...50 The Object-Relational Model...51 Summary...53 Chapter 3 Essential UNIX (and Linux) for the Oracle DBA...55 Overview of the UNIX Operating System...55 Understanding the UNIX Shell(s)...57 Accessing the UNIX System...58 Logging Into and Logging Out of UNIX...58 Overview of Basic UNIX Commands...60 viii

3 Introducing the UNIX Environment...63 Displaying the Environment...64 Working with Shell Variables...65 Modifying the Environment...65 Input and Output in UNIX...65 Navigating Files and Directories in UNIX...66 Files in the UNIX System...67 Types of Files...67 Linking Files...67 Managing Files...68 Permissions: Reading from or Writing to Files in UNIX...69 UNIX Directory Structure...72 Directory Management...72 Important UNIX Directories...73 Writing Files with the vi Editor...74 Creating and Modifying Files Using vi...74 Using the Head and Tail Commands...75 Shell Scripting...76 Creating a Simple UNIX Shell Program...76 Using Shell Variables...76 Control Flow Structures in Korn Shell Programming...79 Looping...79 Conditional Branching...81 Dealing with UNIX Processes...82 Running Programs in the Background with Nohup...83 Terminating Processes with the Kill Command...83 UNIX System Administration and the Oracle DBA...84 UNIX Backup and Restore Utilities...84 The Crontab and Automation of Scripts...85 Using Telnet...86 Remote Login and Remote Copy...87 Using ssh, the Secure Shell...87 Using FTP to Send and Receive Files...87 UNIX System Performance Monitoring Tools...88 Disks and Storage in UNIX...92 Disk Storage Configuration Choices...92 Monitoring Disk Usage...93 Disk Storage, Performance, and Availability...94 RAID Systems...95 RAID Levels...96 Choosing the Ideal Disk Configuration...98 Redundant Disk Controllers RAID and Backups RAID and Oracle ix

4 Storage Technologies Storage Area Networks Networked Attached Storage InfiniBand Oracle and Storage System Compatibility Summary Part Two The Oracle RDBMS Chapter 4 Installing the Oracle9i RDBMS Installing Oracle on UNIX Systems Reviewing the Documentation Determining Disk and Memory Requirements Following the Optimal Flexible Architecture Mount Points Directory and File Naming Conventions Performing Preinstallation Tasks UNIX System Administrator s Tasks Oracle Owner s Tasks A Final Checklist for the Installation Installing the Oracle Software After the Installation UNIX Post-Installation Tasks User Oracle Post-Installation Tasks Uninstalling Oracle Summary Chapter 5 Introduction to the Oracle9i Architecture Oracle Database Structures The Logical Structures Physical Database Structures Trace Files Data Files and Tablespaces Automatic Undo Management Oracle Managed Files Oracle Processes Interaction Between the User and Oracle Processes The Server Process The Background Processes x

5 Oracle Memory Structures Oracle System Global Area (SGA) The Program Global Area (PGA) Monitoring Memory Allocation Dynamically Modifying the SGA Using Oracle s SGA and PGA Advisories Managing Memory Parameters with Oracle Enterprise Manager A Simple Oracle Database Transaction Data Consistency and Data Concurrency The Database Writer and the Write Ahead Protocol The System Change Number The Central Role of the Oracle Control File The Oracle Data Dictionary and the Dynamic Performance Views The Oracle Data Dictionary The Dynamic Performance (V$) Views The Oracle Optimizer Oracle Enterprise Manager Summary Chapter 6 Using SQL*Plus and isql*plus SQL*Plus for the DBA Using SQL*Plus in Interactive and Noninteractive Modes SQL*Plus Commands and SQL Commands SQL*Plus Security Setting the SQL*Plus Environment with the Set Command Setting Common SQL*Plus Variables SQL*Plus Command Line Arguments Removing Settings with the Clear Command The Store Command The Show Command Exiting SQL*Plus Key SQL*Plus Performing Commands The Sqlprompt Command The Describe Command The Host Command The Spool Command The Accept and Prompt Commands The Execute Command The Pause Command Creating Command Files in SQL*Plus Saving SQL Commands to a File Executing SQL*Plus Scripts xi

6 Executing a SQL*Plus Command Script Creating a Windows Batch Script The Define and Undefine Commands Using Comments in SQL*Plus Listing Your SQL Commands Editing Within SQL*Plus Inserting and Deleting Lines in SQL*Plus Adding to Text Incorporating Comments with the Remark Command Copying Tables with the Copy Command Making DML Changes Permanent with SQL*Plus Creating Web Pages Using SQL*Plus Key SQL*Plus Database Administration Commands The Recover Command The Start and Shutdown Commands The Archivelog Command Commands for Formatting SQL*Plus Output and Creating Reports The Break Command The Column Command The Compute Command The Repfooter Command The Repheader Command The Btitle and Ttitle Commands Using SQL to Generate SQL Introducing the Oracle9i isql*plus Interface Installing the isql*plus Software Configuring isql*plus Using the isql*plus Interface Authentication Levels Executing Statements A Security Warning for isql*plus Summary xii

7 Chapter 7 Schema Management in Oracle9i Types of SQL Statements in Oracle System Control Statements Session Control Statements Data Manipulation Statements Transaction Control Statements Data Definition Statements Oracle Schema Management Creating and Managing Tablespaces Locally and Dictionary Managed Tablespaces Creating Locally Managed Tablespaces Creating a Simple Table Special Oracle Tables Temporary Tables Index-Organized Tables External Tables Partitioned Tables Data Dictionary Views for Managing Tables Clusters Hash Clusters Oracle Indexes Guidelines for Creating Indexes Oracle Index Schemes Creating a Simple Index Bitmap Indexes Reverse Key Indexes Function-Based Indexes Partitioned Indexes Monitoring Index Usage Index Maintenance Database Integrity Constraint Management Primary Key Constraints Not Null Constraints Check Constraints Unique Constraints Referential Integrity Constraints xiii

8 Integrity Constraint States Disabling Integrity Constraints Rely Constraints Deferrable and Immediate Constraints Using Synonyms Creating a Public Synonym Creating a Private Synonym Viewing Information on Synonyms Using Sequences Using Triggers Using Views Using Materialized Views Using the Summary Advisor Creating Materialized Views Summary Chapter 8 Oracle Transaction Management Transactions Anatomy of a SQL Transaction Parsing Binding Execution Transaction Properties Transaction Concurrency Control Concurrency Problems Schedules and Serializability The ISO Transaction Standard Oracle Transaction Management Oracle s Isolation Levels Changing the Default Isolation Level The Read-Only Isolation Level The Serializable Isolation Level The Read Committed vs. the Serializable Level of Isolation Implementing Oracle s Concurrency Control Oracle Locking Methods Oracle Lock Types Oracle Lock Modes Explicit Locking in Oracle Managing Oracle Locks Using Undo Records to Provide Read Consistency Automatic Undo Management xiv

9 Querying Old Data with Oracle Flashback Implementing Flashback Query Discrete Transactions Autonomous Transactions Resumable Storage Allocation Resumable Operations Common Resumable Errors Using the Resumable Space Allocation Feature Notification of Suspended Operations Monitoring Resumable Space Allocation Managing Long Transactions Benefits of Using the Workspace Manager Table Versioning and Workspaces Managing the Workspace Manager Summary Part Three Database Creation, Connectivity, and User Management Chapter 9 Creating an Oracle Database Getting Ready to Create the Database Installing the Software Creating the File System for the Database Ensuring Enough Memory Is Allocated Getting Necessary Authorizations Setting the Operating System Environment Variables Creating the Initialization File Important Oracle9i Initialization Parameters Rollback Segment Parameters Undocumented Initialization Parameters Viewing the Current Initialization Parameter Values Reading the Init.ora File (or the SPFILE) The V$PARAMETER Table The Show Parameter Command Creating the Database Setting Operating System Variables Ensuring You Have the Privileges to Create Databases Creating the Init.ora File Starting the Oracle Instance xv

10 The Create Database Script Running Oracle Scripts to Create Data Dictionary Objects Creating Additional Tablespaces Changing the Passwords for the Default Users Changing the Archive Logging Mode Running the Pupbld.sql File What Next? The Server Parameter File (SPFILE) Creating a Server Parameter File Scope of Dynamic Parameter Changes Starting and Shutting Down the Database Starting the Database Restricting Database Access Shutting Down the Database Quiescing a Database Suspending a Database Using V$VIEWS to Monitor Database Status Summary Chapter 10 Connectivity and Networking Oracle Networking and Database Connectivity Networking Concepts: How Oracle Networking Works Database Instance Name Database Service Name Connect Descriptors Connect Identifiers Connect Strings The Listener and Connectivity Automatic Service Registration Listener Commands Listener Management Naming and Connectivity Local Naming Host Naming Method External Naming Method Oracle Names The Directory Naming Method Oracle and Java Database Connectivity Establishing Database Connectivity Working with the Database A Complete Program Connectivity Troubleshooting Summary xvi

11 Chapter 11 User Management and Database Security Managing Users Preliminary Tasks Before Creating Users Creating a New User User Profiles and Resource Management Profile Parameters and Limits Using the Database Resource Manager Using the Database Resource Manager Creating Resource Plans and Plan Directives Enabling the Database Resource Manager Managing Access to Data Privileges in an Oracle Database Roles and Privileges Using Views and Stored Procedures to Manage Privileges Fine-grained Data Security Using Virtual Private Databases Label-Based Access Control Auditing Database Usage Customizing Database Auditing with the Help of Triggers Enabling Auditing Oracle Default Auditing Audit Levels Turning Auditing On Turning Auditing Off Using Fine-grained Auditing Managing the Audit Trail User Authentication Database Authentication of Users External Authentication Proxy Authentication Centralized User Authorization Enterprise User Security Shared Schemas Single Sign-On Data Encryption Using Oracle Internet Directory for Security Management Database Security Do s and Don ts User Accounts Passwords Operating System Authentication Audit Your Database Grant Privileges Appropriately xvii

12 Set Appropriate Permissions Safeguard the Network and the Listener Keep Up-to-Date Use Oracle s Advanced Security Feature Take Care of Application Security Useful Techniques for Managing Users How to Alter a Profile How to List User Information How to Find Out the Memory Use for Each Active Session What SQL Is a User Currently Executing? How to Log In As a Different User Useful DBA Views to Monitor User Roles and Privileges How to Kill a User s Session Summary Part Four Data Loading, Backup, and Recovery Chapter 12 Loading and Transforming Data Introduction to Data Loading and Transformation Loading Data with ETL Loading Data with the Oracle9i Warehouse Builder The SQL*Loader Utility Different Methods of Data Loading The SQL*Loader Control File Generating Data During the Load Invoking SQL*Loader Using External Tables to Load Data Using External Tables for Data Loading Important Access Parameters for External Tables Using SQL*Loader to Generate External Table Creation Statements Transforming Data Deriving the Data from Existing Tables Using PL/SQL to Transform Data Using SQL to Transform Data Some Useful SQL*Loader Data-Loading Techniques Using the When Clause During Loads Loading the Username into a Table Loading Large Data Fields into a Table Loading a Sequence Number into a Table xviii

13 Loading Data from a Table into an ASCII File Identifying and Removing Duplicate Data Dropping Indexes Before Bulk Data Loads Loading into Multiple Tables Trapping Error Codes from SQL*Loader Loading XML Data into an Oracle XML Database Summary Chapter 13 Using the Export and Import Utilities Exporting and Importing Data Using the Export Utility Export Parameters Invoking the Export Utility Using the Import Utility The Order of Importing Import Parameters Invoking the Import Utility Transportable Tablespaces Uses of Transportable Tablespaces Transporting a Tablespace Some Export and Import Techniques Avoiding Common Export/Import Errors Using the Statistics Parameter Appropriately Understanding the Limitations of the Export and Import Utilities Performing an Efficient Database Migration Restoring a Database Using the Export and Import Utilities Exporting and Importing Large Databases UNIX Shell Script to Automate Exports Ensuring the Validity of the Exports Optimizing Exports and Imports Summary Chapter 14 Backing Up Databases Backing Up Oracle Databases Important Backup Terms Backup Strategies Backing Up the Other Files A Summary of Backup Methods xix

14 Oracle Recovery Manager Benefits of RMAN RMAN Architecture Connecting to RMAN Scripting with RMAN Important RMAN Terms RMAN Commands Configuring RMAN Creating the Recovery Catalog Examples of Various Backups Using RMAN Performing Incremental Backups Using RMAN to Perform Online Backups Using a Media Management Layer with RMAN Using Legato Single Server Version with RMAN The LSSV Architecture Installing LSSV Using LSSV LSSV and RMAN Creating Backups with Operating System Commands Making Whole Database Backups Partial Database Backups Monitoring User-Managed Online Backups Enhanced Data Protection for Disaster Recovery Oracle Data Guard and Standby Databases Physical and Logical Standby Databases Protection Modes Database Corruption and Testing Backups Oracle Data Block Corruption Detecting Data Block Corruption Verification of RMAN Backups Oracle s HARD Initiative Techniques and Troubleshooting Monitoring RMAN The ORA_00257 Error Summary Chapter 15 Database Recovery Types of Database Failures System Failure Fast-Start Fault Recovery Data Center Disasters Human Error Media Failures xx

15 Extent of Database Failure and Types of Recovery Restoring vs. Recovering a Database Time Needed for Recovery Complete and Incomplete Recovery Open and Closed Recovery Reducing Your Vulnerability Performing Recovery with RMAN Why RMAN Is Best for Recovery User-Managed Recovery of a Database Typical Media Recovery Scenarios Complete Recovery of a Whole Database Recovering a Tablespace Recovering a Data File Incomplete Recovery Recovering from the Loss of Control Files Recovering a Data File Without a Backup Cloning a Database Using RMAN Cloning a Database Manually Techniques for Granular Recovery Tablespace Point-in-Time Recovery Using RMAN for TSPITR Using LogMiner for Precision Recovery Using Flashback Query for Recovery Repairing Data Corruption and Trial Recovery Block Media Recovery Trial Recovery Troubleshooting Recovery The ORA Error The ORA Error The ORA Error Summary Part Five Managing the Operational Oracle Database Chapter 16 Managing the Operational Database Oracle s Automatic Management Features Fully Locally Managed Databases Automatic Undo Management Resumable Space Allocation Automating and Monitoring Recovery Time xxi

16 Easy File Management with OMF Benefits of Using OMF Creating Oracle Managed Files Online Capabilities of Oracle9i Online Data Reorganization Online Table Redefinition Dynamic Resource Management Online Database Block Changes Dynamic Memory Reconfiguration Using Database Quiescing for Online Maintenance Suspending the Database Managing the Online Redo Logs Managing the Archived Logs Managing a Database Link Mapping Oracle Files to Physical Devices Architecture of File Mapping Setting Up File Mapping Tips and Troubleshooting Problems During Quiescing a Database Failed Online Table Redefinitions Problems During Online Index Rebuilds Summary Chapter 17 Using Oracle9i Enterprise Manager Oracle Enterprise Manager Benefits of Using OEM to Manage Databases The Various Systems of OEM The OEM Architecture and Components Configuring OEM Configuring the Intelligent Agent Configuring the Management Server Configuring the OEM Console Configuring Reporting Running the Console from a Web Browser Using the OEM Console Discovering Services The Services.ora File Database Management Through OEM Database Instance Management Database Schema Management Database Security Management Database Storage Management Distributed Database Management xxii

17 Using the OEM Wizards The Export and Import Wizards The Analyze Wizard The Backup Wizard Using the OEM Reporting Features Prebuilt and Custom Reports Accessing the Reporting Web Site Managing Jobs with OEM The Job Detail View Creating a Job Managing Events with OEM Creating Events Specifying the Test Conditions Selecting the Test Criteria Scheduling the Event Configuring and Paging Notification Configuring Paging Notification Configuring Notification Oracle Management Packs Oracle Diagnostics Pack Oracle Tuning Pack Oracle Change Management Pack Troubleshooting OEM Summary Part Six Performance Tuning and Troubleshooting the Production Database Chapter 18 Improving Database Performance: SQL Query Optimization An Approach to Oracle Performance Tuning A Systematic Approach to Performance Tuning Reactive Performance Tuning SQL Coding Practices Optimizing Oracle Query Processing Parsing Optimization Query Execution xxiii

18 Query Optimization and the Oracle Cost-Based Optimizer Choosing Your Optimization Mode Providing Statistics About the Objects to the Optimizer Setting the Optimizer Mode Setting the Optimizer Level What Does the Optimizer Do? Drawbacks of the CBO Providing Statistics to the CBO Writing Efficient SQL Efficient Where Clauses Using Hints to Influence the Execution Plan Selecting the Best Join Method Using Bitmap Join Indexes Selecting the Best Join Order Indexing Strategy Using the OEM Index Tuning Wizard Monitoring Index Utilization Removing Unnecessary Indexes Using Similar SQL Statements Reducing SQL Overhead via Inline Functions Using Bind Variables Avoiding Improper Use of Views Avoiding Unnecessary Full Table Scans How the DBA Can Help Improve SQL Processing Using Partitioned Tables Using Compression Techniques Using Materialized Views Using Stored Outlines to Stabilize the CBO Using Parallel Execution Other DBA Tasks SQL Performance Tuning Tools Using the Explain Plan Using Autotrace Using SQL Trace and TKPROF Using V$SQLAREA to Find Inefficient SQL Using GUI Tools in Tuning A Simple Approach to Tuning SQL Statements Identify Problem Statements Locate the Source of the Inefficiency Tune the Statement Compare Performance Summary xxiv

19 Chapter 19 Performance Tuning: Tuning the Instance An Introduction to Instance Tuning Tuning Oracle Memory Tuning the Shared Pool Tuning the Buffer Cache Tuning the Large Pool Tuning PGA Memory Automatic PGA Memory Management Evaluating System Performance CPU Performance Disk I/O Measuring I/O Performance Is the I/O Optimally Distributed? Reducing Disk Contention The Oracle SAME Guidelines for Optimal Disk Usage Collecting Instance Performance Statistics with Statspack Installing Statspack Using Statspack Measuring Instance Performance Database Hit Ratios Database Wait Statistics Know Your Application Operating System Memory Management When a Database Hangs Handling a Stuck Archiver Process System Utilization Problems Excessive Contention for Resources Locking Issues Abnormal Increase in Process Size Delays Due to Shared Pool Problems Problems Due to Bad Statistics Collecting Information During a Database Hang A Simple Approach to Instance Tuning What s Happening in the Database? Are There Any Long-Running Transactions? Is Oracle the Problem? Is the Network Okay? Is the System CPU Bound? Is the System I/O Bound? Checking Memory-Related Issues xxv

20 Is the System Wait Bound? Eliminating the Contention Summary Chapter 20 The Oracle Data Dictionary and the Dynamic Performance Views The Oracle Data Dictionary How Is the Data Dictionary Created? Using the Data Dictionary Static Views General Views User Management Related Views Audit-Related Views Storage-Related Views Views for Monitoring Transactions Constraint- and Index-Related Views Views for Managing Database Objects Views for Managing Tables and Views Using the Dynamic Performance Tables Memory-Related Views Backup-Related Views Session- and User-Related Views Redo Log and Archive Log Related Views Recovery-Related Views Performance Monitoring Views SQL-Related Views Operational Performance Related Views General Views Storage- and File-Related Views Summary Chapter 21 Using Oracle PL/SQL Packages xxvi Overview of the Oracle-Supplied PL/SQL Packages Who Creates the Oracle Packages? How Do You Use the Oracle Packages? DBMS_JOB Using the DBMS_JOB Package Other DBMS_JOB Procedures DBMS_APPLICATION_INFO DBMS_SESSION Set_Role Set_Sql_Trace Switch_Current_Consumer_Group

21 DBMS_SYSTEM Set_Sql_Trace_In_Session Set_Int_Param_In_Session Set_Bool_Param_In_Session Set_Ev DBMS_OUTPUT DBMS_REPAIR Using the DBMS_REPAIR Package Fixing Block Corruption DBMS_OUTLN and DBMS_OUTLN_EDIT Using the DBMS_OUTLN Package to Manage Stored Outlines Tracking the Outlines in the Database DBMS_SPACE DBMS_SPACE_ADMIN DBMS_PROFILER A Useful Package for Developers Installing the DBMS_PROFILER Package Using the DBMS_PROFILER Package UTL_FILE Using the UTL_FILE Package A Simple Example Using the UTL_FILE Package UTL_SMTP Procedures in the UTL_SMTP Package Using the UTL_SMTP Package DBMS_SHARED_POOL DBMS_LOGSTDBY Oracle Packages in Earlier Chapters The DBMS_STATS Package DBMS_RLS DBMS_FGA DBMS_RESOURCE_MANAGER DBMS_RESUMABLE DBMS_OLAP DBMS_MVIEW DBMS_METADATA DBMS_REDEFINITION DBMS_FLASHBACK DBMS_WM DBMS_LOGMNR DBMS_REFRESH DBMS_TTS DBMS_UTILITY DBMS_STORAGE_MAP Summary xxvii

22 Chapter 22 Managing Oracle Databases on Windows and Linux Systems Oracle9i and Windows Database Access Methods Oracle Support for.net Integration with Windows Services Essential Differences in Managing Oracle on Windows and UNIX Processes vs. Threads Oracle Service Threads Services and Daemons Tuning Memory Resources CPU and Memory Considerations Automatic Start-up and Shutdown Users and Groups The File Systems The Windows Copy Utilities Differences in the Use of the GUI Automating Jobs Diagnostic Tools Installing Oracle9i on a Windows System The Windows Registry Using the Registry Managing Oracle on Windows Systems Oracle Services Starting Up and Shutting Down the Oracle Database Using the Oracle Administration Assistant for NT Uninstalling Oracle on Windows Oracle9i and Linux Oracle s Commitment to Linux Ensuring You Have a Stable Version of Linux Managing Oracle on Linux Summary Appendix A Brief Oracle9i SQL and PL/SQL Primer The Oracle9i Sample Schemas Basic SQL The Select Statement The Insert Statement xxviii

23 The Delete Statement The Update Statement Filtering Data Sorting the Results of a Query The Order By Clause Sorting Order Sorting by Multiple Columns Operators Comparison Operators Logical Operators The Set Operators SQL Functions Single-Row Functions Aggregate Functions Number and Date Functions General Functions and Conditional Expressions SQL Analytical Functions Hierarchical Retrieval of Data Selecting Data from Multiple Tables The Cartesian Product The Four Types of Oracle Joins Grouping Operations Nesting Group Functions The Group By Clause with a Rollup Operator The Group By Clause with a Cube Operator The Group By Clause with a Grouping Operator The Group By Clause with a Grouping Sets Operator The Having Clause Writing Subqueries Top N Analysis Single-Row Subqueries Multiple-Row Subqueries Multiple-Column Subqueries Advanced Subqueries The Exists and Not Exists Operators Abstract Data Types The Create Type Command Object Tables Collections Type Inheritance The Cast Operator xxix

24 Using PL/SQL The Basic PL/SQL Block Declaring Variables Writing Executable Statements Handling Errors PL/SQL Control Structures Conditional Control PL/SQL Looping Constructs Cursors Implicit Cursors Explicit Cursors Cursor Attributes Cursor For Loops PL/SQL Records Cursor Variables Functions Packages Oracle XML DB Storing XML in Oracle XML DB The Oracle XML DB Repository Setting Up an XML Schema Creating a Relational View from an XML Document Oracle9i and Java Using Java with Oracle Summary Index xxx

Expert Oracle Database

Expert Oracle Database Expert Oracle Database logadministration Sam R. Alapati Apress Contents About the Author About the Technical Reviewer Acknowledgments Introduction xxxiii xxxiv xxxv xxxvii PART 1 Background, Data Modeling,

More information

Course Contents of ORACLE 9i

Course Contents of ORACLE 9i Overview of Oracle9i Server Architecture Course Contents of ORACLE 9i Responsibilities of a DBA Changing DBA Environments What is an Oracle Server? Oracle Versioning Server Architectural Overview Operating

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

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

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

"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

"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

Introduction. Assessment Test. Chapter 1 Introduction to Performance Tuning 1. Chapter 2 Sources of Tuning Information 33

Introduction. Assessment Test. Chapter 1 Introduction to Performance Tuning 1. Chapter 2 Sources of Tuning Information 33 Contents at a Glance Introduction Assessment Test xvii xxvii Chapter 1 Introduction to Performance Tuning 1 Chapter 2 Sources of Tuning Information 33 Chapter 3 SQL Application Tuning and Design 85 Chapter

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

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 9i Application Development and Tuning

Oracle 9i Application Development and Tuning Index 2NF, NOT 3NF or BCNF... 2:17 A Anomalies Present in this Relation... 2:18 Anomalies (Specific) in this Relation... 2:4 Application Design... 1:28 Application Environment... 1:1 Application-Specific

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

Installing the Oracle Database Softwar

Installing the Oracle Database Softwar Contents chapter 1:Architecture Oracle Database Architecture Database Structures Oracle Memory Structures Process Structures Oracle Instance Management Server Process and Database Buffer Cache Physical

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

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

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

More information

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

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

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

"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

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

Managing Oracle Real Application Clusters. An Oracle White Paper January 2002

Managing Oracle Real Application Clusters. An Oracle White Paper January 2002 Managing Oracle Real Application Clusters An Oracle White Paper January 2002 Managing Oracle Real Application Clusters Overview...3 Installation and Configuration...3 Oracle Software Installation on a

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

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

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

Chapter 1: Introducing SQL Server

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

More information

Installing and Administering a Satellite Environment

Installing and Administering a Satellite Environment IBM DB2 Universal Database Installing and Administering a Satellite Environment Version 8 GC09-4823-00 IBM DB2 Universal Database Installing and Administering a Satellite Environment Version 8 GC09-4823-00

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

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

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

IT100: Oracle Administration

IT100: Oracle Administration IT100: Oracle Administration IT100 Rev.001 CMCT COURSE OUTLINE Page 1 of 8 Training Description: Introduction to Oracle Administration and Management is a five-day course designed to provide Oracle professionals

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

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

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

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

More information

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

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

Oracle PL/SQL - 12c & 11g [Basic PL/SQL & Advanced PL/SQL]

Oracle PL/SQL - 12c & 11g [Basic PL/SQL & Advanced PL/SQL] Chapter Overview of PL/SQL Programs Control Statements Using Loops within PLSQL Oracle PL/SQL - 12c & 11g [Basic PL/SQL & Advanced PL/SQL] Table of Contents Describe a PL/SQL program construct List the

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

System Administration of PTC Windchill 11.0

System Administration of PTC Windchill 11.0 System Administration of PTC Windchill 11.0 Overview Course Code Course Length TRN-4830-T 16 Hours In this course, you will gain an understanding of how to perform routine Windchill system administration

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

Oracle Database 12c: Administration Workshop Oracle Database 12c: Administration Workshop Student Guide Volume I D78846GC10 Edition 1.0 July 2013 D82566 Authors Donna K. Keesling James L. Spiller Technical Contributors and Reviewers Darryl Balaski

More information

Oracle Database 11g: SQL Tuning Workshop

Oracle Database 11g: SQL Tuning Workshop Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 11g: SQL Tuning Workshop Duration: 3 Days What you will learn This Oracle Database 11g: SQL Tuning Workshop Release

More information

Topics - System Administration for Glovia

Topics - System Administration for Glovia Topics - System Administration for Glovia 1. Network Architecture Sample Network 2. glovia.com Technology Architecture Application Server Database Server Web Server 3. Operating System Architecture High

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

Rampant TechPress. Oracle DBA made simple Oracle database administration techniques. Mike Ault

Rampant TechPress. Oracle DBA made simple Oracle database administration techniques. Mike Ault Rampant TechPress Oracle DBA made simple Oracle database administration techniques Mike Ault Oracle DBA made simple Oracle database administration techniques By Mike Ault Copyright 2003 by Rampant TechPress.

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

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

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

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 DBA I. Exploring Oracle Database Architecture

ORACLE DBA I. Exploring Oracle Database Architecture ORACLE DBA I Exploring Oracle Database Architecture Introducing Oracle Database Relation Database Models Oracle SQL and PL/SQL Oracle Database Server Architecture Connecting to Oracle Databases Oracle

More information

Introduction 1. Conventions 7 Source Code and Updates 8. Setting Up 11

Introduction 1. Conventions 7 Source Code and Updates 8. Setting Up 11 Introduction 1 What This Book Is About 1 Who Should Use This Book? 2 How This Book Is Structured 3 Understanding the Database 3 Database Structures and Utilities 4 Performance 5 Advanced SQL Features 5

More information

Microsoft SQL Server" 2008 ADMINISTRATION. for ORACLE9 DBAs

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

More information

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

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

More information

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

Course 40045A: Microsoft SQL Server for Oracle DBAs

Course 40045A: Microsoft SQL Server for Oracle DBAs Skip to main content Course 40045A: Microsoft SQL Server for Oracle DBAs - Course details Course Outline Module 1: Database and Instance This module provides an understanding of the two major components

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

Software Development & Education Center

Software Development & Education Center Software Development & Education Center Oracle 10g Database Administrator What you will learn Oracle 10g Database Administration Workshop 1 This course is your first step towards success as an Oracle professional,

More information

Expert Oracle Database 11g Administration

Expert Oracle Database 11g Administration Expert Oracle Database 11g Administration Sam R. Alapati Expert Oracle Database 11g Administration Copyright 2009 by Sam R. Alapati All rights reserved. No part of this work may be reproduced or transmitted

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

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

11gR2 Performance. Tuning Cookbook. Oracle Database. 1 enterprise J. performance from Oracle Database applications. achieve better

11gR2 Performance. Tuning Cookbook. Oracle Database. 1 enterprise J. performance from Oracle Database applications. achieve better Oracle Database 11gR2 Performance Tuning Cookbook Over 80 recipes to help beginners achieve better performance from Oracle Database applications Ciro Fiorillo PUBLISHING 1 enterprise J professional expertise

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

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

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

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

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved.

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved. Configuring the Oracle Network Environment Objectives After completing this lesson, you should be able to: Use Enterprise Manager to: Create additional listeners Create Oracle Net Service aliases Configure

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

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

"Charting the Course... Oracle 18c PL/SQL (5 Day) Course Summary

Charting the Course... Oracle 18c PL/SQL (5 Day) Course Summary Course Summary Description This course provides a complete, hands-on, comprehensive introduction to PL/SQL including the use of both SQL Developer and SQL*Plus. This coverage is appropriate for both Oracle11g

More information

SQL Server T-SQL Recipes. Andy Roberts Wayne Sheffield. A Problem-Solution Approach. Jonathan Gennick. Jason Brimhall David Dye

SQL Server T-SQL Recipes. Andy Roberts Wayne Sheffield. A Problem-Solution Approach. Jonathan Gennick. Jason Brimhall David Dye SQL Server 2012 T-SQL Recipes A Problem- Approach v? Jason Brimhall David Dye Jonathan Gennick Andy Roberts Wayne Sheffield Contents About the Authors About the Technical Reviewers Acknowledgments Introduction

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

Introduction... xxxi Chapter 1: Introducing SQL Server In Depth... 2

Introduction... xxxi Chapter 1: Introducing SQL Server In Depth... 2 Introduction... xxxi Chapter 1: Introducing SQL Server 2012... 1 In Depth... 2 Why Use SQL Server?... 2 Features Introduced in SQL Server 2008 R2... 3 Master Data Services... 3 StreamInsight... 3 Multi-Server

More information

Oracle9i: New Features for Administrators

Oracle9i: New Features for Administrators Oracle9i: New Features for Administrators Student Guide Volume One D11318GC20 Edition 2.0 July 2002 D34916 Authors David Austin Harald van Breederode Ric Van Dyke Lex de Haan Michael Möller Jean-Francois

More information

A Unit of SequelGate Innovative Technologies Pvt. Ltd. All Training Sessions are Completely Practical & Real-time

A Unit of SequelGate Innovative Technologies Pvt. Ltd. All Training Sessions are Completely Practical & Real-time SQL Basics & PL-SQL Complete Practical & Real-time Training Sessions A Unit of SequelGate Innovative Technologies Pvt. Ltd. ISO Certified Training Institute Microsoft Certified Partner Training Highlights

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 1Z Oracle Database 11g: Administration I. Download Full Version :

Oracle 1Z Oracle Database 11g: Administration I. Download Full Version : Oracle 1Z0-052 Oracle Database 11g: Administration I Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-052 D. Functionbased index Answer: A QUESTION: 191 The user HR owns the EMP

More information

Oracle 9i New Features Quick Overview. Kevin Toepke Trilegiant Corp.

Oracle 9i New Features Quick Overview. Kevin Toepke Trilegiant Corp. Oracle 9i New Features Quick Overview Kevin Toepke Trilegiant Corp. 1 MERGE Statement Merges the data from a SELECT statement into a table. You decide when data is updated/inserted via the ON () clause

More information

"Charting the Course... MOC C: Developing SQL Databases. Course Summary

Charting the Course... MOC C: Developing SQL Databases. Course Summary Course Summary Description This five-day instructor-led course provides students with the knowledge and skills to develop a Microsoft SQL database. The course focuses on teaching individuals how to use

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

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