Anda di halaman 1dari 9

ORACLE

DATABASE 11G
CURRICULUM
Introduction to SQL
Introduction to Oracle Database
l List the features of Oracle Database 12c
l Discuss the basic design, theoretical, and physical
l
l
l
l

aspects of a relational database


Categorize the different types of SQL statements
Describe the data set used by the course
Log on to the database using SQL Developer
environment
Save queries to files and use script files in SQL
Developer

Retrieve Data using the SQL SELECT Statement


l List the capabilities of SQL SELECT statements
l Generate a report of data from the output of a basic
l
l
l
l
l
l

SELECT statement
Select All Columns
Select Specific Columns
Use Column Heading Defaults
Use Arithmetic Operators
Understand Operator Precedence
Learn the DESCRIBE command to display the table
structure

Learn to Restrict and Sort Data


l Write queries that contain a WHERE clause to limit the
l
l
l
l
l

output retrieved
List the comparison operators and logical operators that
are used in a WHERE clause
Describe the rules of precedence for comparison and
logical operators
Use character string literals in the WHERE clause
Write queries that contain an ORDER BY clause to sort
the output of a SELECT statement
Sort output in descending and ascending order

Usage of Single-Row Functions to Customize Output


l Describe the differences between single row and multiple
l
l
l
l

row functions
Manipulate strings with character function in the SELECT
and WHERE clauses
Manipulate numbers with the ROUND, TRUNC, and
MOD functions
Perform arithmetic with date data
Manipulate dates with the DATE functions

Invoke Conversion Functions and Conditional Expressions


l Describe implicit and explicit data type conversion
l Use the TO_CHAR, TO_NUMBER, and TO_DATE

conversion functions
l Nest multiple functions
l Apply the NVL, NULLIF, and COALESCE functions to
data
l Use conditional IF THEN ELSE logic in a SELECT
statement

Aggregate Data Using the Group Functions


l Use the aggregation functions to produce meaningful

reports
l Divide the retrieved data in groups by using the GROUP
BY clause
l Exclude groups of data by using the HAVING clause

Display Data From Multiple Tables Using Joins


l Write SELECT statements to access data from more than

one table
l View data that generally does not meet a join condition by
using outer joins
l Join a table to itself by using a self-join

Use Sub-queries to Solve Queries


l Describe the types of problem that sub-queries can solve
l Define sub-queries
l List the types of sub-queries
l Write single-row and multiple-row sub-queries

The SET Operators


l Describe the SET operators
l Use a SET operator to combine multiple queries into a

single query
l Control the order of rows returned

Data Manipulation Statements


l Describe each DML statement
l Insert rows into a table
l Change rows in a table by the UPDATE statement
l Delete rows from a table with the DELETE statement
l Save and discard changes with the COMMIT and

ROLLBACK statements
l Explain read consistency

Use of DDL Statements to Create and Manage Tables


l Categorize the main database objects
l Review the table structure
l List the data types available for columns
l Create a simple table
l Decipher how constraints can be created at table creation
l Describe how schema objects work

Other Schema Objects


l Create a simple and complex view
l Retrieve data from views
l Create, maintain, and use sequences
l Create and maintain indexes
l Create private and public synonyms

Control User Access


l Differentiate system privileges from object privileges
l Create Users
l Grant System Privileges
l Create and Grant Privileges to a Role
l Change Your Password
l Grant Object Privileges
l How to pass on privileges?
l Revoke Object Privileges

Management of Schema Objects


l Add, Modify, and Drop a Column
l Add, Drop, and Defer a Constraint
l How to enable and Disable a Constraint?
l Create and Remove Indexes
l Create a Function-Based Index
l Perform Flashback Operations
l Create an External Table by Using ORACLE_LOADER

and by Using ORACLE_DATAPUMP


l Query External Tables

Manage Objects with Data Dictionary Views


l Explain the data dictionary
l Use the Dictionary Views
l USER_OBJECTS and ALL_OBJECTS Views
l Table and Column Information
l Query the dictionary views for constraint information
l Query the dictionary views for view, sequence, index and

synonym information
l Add a comment to a table
l Query the dictionary views for comment information

Manipulate Large Data Sets


l Use Subqueries to Manipulate Data
l Retrieve Data Using a Subquery as Source
l Insert Using a Subquery as a Target
l Usage of the WITH CHECK OPTION Keyword on DML
l
l
l
l

Statements
List the types of Multitable INSERT Statements
Use Multitable INSERT Statements
Merge rows in a table
Track Changes in Data over a period of time

Data Management in different Time Zones


l Time Zones
l CURRENT_DATE, CURRENT_TIMESTAMP, and
l
l
l
l
l
l

LOCALTIMESTAMP
Compare Date and Time in a Session's Time Zone
DBTIMEZONE and SESSIONTIMEZONE
Difference between DATE and TIMESTAMP
INTERVAL Data Types
Use EXTRACT, TZ_OFFSET and FROM_TZ
Invoke TO_TIMESTAMP,TO_YMINTERVAL and
TO_DSINTERVAL

Retrieve Data Using Sub-queries


l Multiple-Column Subqueries
l Pairwise and Non-pairwise Comparison
l Scalar Subquery Expressions
l Solve problems with Correlated Subqueries
l Update and Delete Rows Using Correlated Subqueries
l The EXISTS and NOT EXISTS operators
l Invoke the WITH clause
l The Recursive WITH clause

Regular Expression Support


l Use the Regular Expressions Functions and Conditions in

SQL
l Use Meta Characters with Regular Expressions
l Perform a Basic Search using the REGEXP_LIKE
l
l
l
l
l

function
Find patterns using the REGEXP_INSTR function
Extract Substrings using the REGEXP_SUBSTR function
Replace Patterns Using the REGEXP_REPLACE
function
Usage of Sub-Expressions with Regular Expression
Support
Implement the REGEXP_COUNT function

Oracle Database 11g : Administration - 1


Exploring the Oracle Database Architecture
l Oracle Database Architecture Overview
l Oracle ASM Architecture Overview
l Process Architecture
l Memory structures
l Logical and physical storage structures
l ASM storage components

Installing your Oracle Software


l Tasks of an Oracle Database Administrator
l Tools Used to Administer an Oracle Database
l Installation: System Requirements
l Oracle Universal Installer (OUI)
l Installing Oracle Grid Infrastructure
l Installing Oracle Database Software
l Silent Install

Creating an Oracle Database


l Planning the Database
l Using the DBCA to Create a Database
l Password Management
l Creating a Database Design Template
l Using the DBCA to Delete a Database

Managing the Oracle Database Instance


l Start and stop the Oracle database and components
l Use Oracle Enterprise Manager
l Access a database with SQL*Plus
l Modify database installation parameters
l Describe the stages of database startup
l Describe database shutdown options
l View the alert log
l Access dynamic performance views

Manage the ASM Instance


l Set up initialization parameter files for ASM instance
l Start up and shut down ASM instances
l Administer ASM disk groups

Configuring the Oracle Network Environment


l Use Enterprise Manager to create and configure the

Listener
l Enable Oracle Restart to monitor the listener
l Use tnsping to test Oracle Net connectivity
l Identify when to use shared servers and when to use
dedicated servers

Managing Database Storage Structures


l Storage Structures
l How Table Data Is Stored
l Anatomy of a Database Block
l Space Management in Tablespaces
l Tablespaces in the Preconfigured Database
l Actions with Tablespaces
l Oracle Managed Files (OMF)

Administering User Security


l Database User Accounts
l Predefined Administrative Accounts
l Benefits of Roles
l Predefined Roles
l Implementing Profiles

Managing Data Concurrency


l Data Concurrency
l Enqueue Mechanism
l Resolving Lock Conflicts
l Deadlocks

Managing Undo Data


l Data Manipulation
l Transactions and Undo Data
l Undo Data Versus Redo Data
l Configuring Undo Retention

Implementing Oracle Database Auditing


l Describe DBA responsibilities for security
l Enable standard database auditing
l Specify audit options
l Review audit information
l Maintain the audit trail

Database Maintenance
l Manage optimizer statistics
l Manage the Automatic Workload Repository (AWR)
l Use the Automatic Database Diagnostic Monitor (ADDM)
l Describe and use the advisory framework
l Set alert thresholds
l Use server-generated alerts
l Use automated tasks

Performance Management
l Performance Monitoring
l Managing Memory Components
l Enabling Automatic Memory Management (AMM)
l Automatic Shared Memory Advisor
l Using Memory Advisors
l Dynamic Performance Statistics
l Troubleshooting and Tuning Views
l Invalid and Unusable Objects

Backup and Recovery Concepts


l Part of Your Job
l Statement Failure
l User Error
l Understanding Instance Recovery
l Phases of Instance Recovery
l Using the MTTR Advisor
l Media Failure
l Archive Log Files

Performing Database Backups


l Backup Solutions: Overview
l Oracle Secure Backup
l User-Managed Backup
l Terminology
l Recovery Manager (RMAN)
l Configuring Backup Settings
l Backing Up the Control File to a Trace File
l Monitoring the Flash Recovery Area

Moving Data
l Describe ways to move data
l Create and use directory objects
l Use SQL*Loader to move data
l Use external tables to move data
l General architecture of Oracle Data Pump
l Use Data Pump export and import to move data

Working with Support


l Use the Enterprise Manager Support Workbench
l Work with Oracle Support\
l Log service requests (SR)
l Manage patches

Oracle Database 11g : Administration - 2


Core Concepts and Tools of the Oracle Database
l The Oracle Database Architecture: Overview
l ASM Storage Concepts
l Connecting to the Database and the ASM Instance
l DBA Tools Overview

Configuring for Recoverability


l Purpose of Backup and Recovery (B&R), Typical Tasks

and Terminology
l Using the Recovery Manager (RMAN)
l Configuring your Database for B&R Operations

l Configuring Archivelog Mode


l Configuring Backup Retention
l Configuring and Using a Flash Recovery Area (FRA)

Using the RMAN Recovery Catalog


l Tracking and Storing Backup Information
l Setting up a Recovery Catalog
l Recording Backups
l Using RMAN Stored Scripts
l Managing the Recovery Catalog (Backup, Export, Import,

Upgrade, Drop and Virtual Private Catalog)

Configuring Backup Settings


l Configuring and Managing Persistent Settings for RMAN
l Configuring Autobackup of Control File
l Backup optimization
l Advanced Configuration Settings: Compressing Backups
l Configuring Backup and Restore for Very Large Files

(Multisection)

Creating Backups with RMAN


l RMAN backup types
l Creating and Using the following
Backup Sets and Image Copies
Whole Database Backup
Fast Incremental Backup
Configure Backup Destinations
Duplexed Backup Sets
Archival Backups

Restore and Recovery Task


l Restoring and Recovering
l Causes of File Loss
l Automatic Tempfile Recovery
l Recovering from the Loss of a Redo Log Group
l Recovering from a Lost Index Tablespace
l Re-creating a Password Authentication File
l Complete and Incomplete Recovery
l Other Recovery Operations

Using RMAN to Perform Recovery


l Complete Recovery after Loss of a Critical or Noncritical
l
l
l
l
l
l

Data File
Recovering Image Copies and Switching Files
Restore and Recovery of a Database in
NOARCHIVELOG Mode
Incomplete Recovery
Performing Recovery with a Backup Control File
Restoring from Autobackup: Server Parameter File and
Control File
Restoring and Recovering the Database on a New Host

Monitoring and Tuning RMAN


l Monitoring RMAN Jobs
l Balance Between Speed of Backup Versus Speed of

Recovery
l RMAN Multiplexing
l Synchronous and Asynchronous I/O
l Explaining Performance Impact of MAXPIECESIZE,
FILESPERSET, MAXOPENFILES and BACKUP
DURATION

Diagnosing the Database


l Data Recovery Advisor (DRA)
l Block Corruption
l Automatic Diagnostic Repository (ADR)
l Health Monitor
l The ADR Command-Line Tool, ADRCI

Using Flashback Technology I


l Flashback Technology: Overview and Setup
l Using Flashback Technology to Query Data
l Flashback Table
l Flashback Transaction Query
l Performing Flashback Transaction Backout

Using Flashback Technology II


l Oracle Total Recall
l Flashback Drop and the Recycle Bin

Performing Flashback Database


l Configuring Flashback Database
l Performing Flashback Database Operations
l Monitoring Flashback Database

Managing Memory
l Oracle Memory Structures
l Oracle Database Memory Parameters
l Using Automatic Memory Management
l Automatic Shared Memory Management
l Using Memory Advisors
l Using Data Dictionary Views

Managing Database Performance


l Tuning Activities
l Using Statistic Preferences
l Optimizer Statistics Collection
l Monitor the Performance of Sessions and Services
l Automatic Workload Repository (AWR)
l Describing the Benefits of Database Replay

Managing Performance by SQL Tuning


l SQL Tuning and SQL Advisors
l Using SQL Tuning Advisor
l SQL Access Advisor
l SQL Performance Analyzer Overview

Managing Resources
l Database Resource Manager: Overview and Concepts
l Accessing and Creating Resource Plans
l Creating Consumer Group
l Specifying Resource Plan Directives, including
Limiting CPU Utilization at the Database Level
Instance Caging
Activating a Resource Plan
Monitoring the Resource Manager

Automating Tasks with the Scheduler


l Simplifying Management Tasks
l Creating a Job, Program, and Schedule
l Using Time-Based, Event-Based, and Complex

Schedules
l Describing the Use of Windows, Window Groups, Job
Classes, and Consumer Groups
l Multi-Destination Jobs

Managing Space in Blocks


l Free Space Management
l Monitoring Space
l Compressing Data

Managing Space in Segments


l Segment Creation on Demand
l Additional Automatic Space-Saving Functionality
l Shrinking Segments
l Segment Advisor
l Managing Resumable Space Allocation

Managing Space for the Database


l Using 4 KB-Sector Disks
l Transporting Tablespaces
l Transporting Databases

Duplicating a Database
l Purpose and Methods of Cloning a Database
l Using RMAN to Create a Duplicate Database
l Cloning a Database from a Backup
l Duplicate a Database Based on a Running Instance
l Targetless Duplicating a Database

Partners :

www.facebook.com/ducateducation

Java
NOIDA

GREATER NOIDA

GHAZIABAD

FARIDABAD

A-43 & A-52, Sector-16,


Noida - 201301, (U.P.) INDIA
Ph. : 0120-4646464
Mb. : 09871055180

E - 35, SITE - 4, Near Swarna


Nagari, Adjacent J.P.
. Golf
Course, Greater Noida (U. P.)
Ph. : 0120-4345190-91-92 to 97
Mb. :09899909738, 09899913475

1, Anand Industrial Estate,


Near ITS College, Mohan Nagar,
Ghaziabad (U.P.)
Ph.: 0120-4835400...98-99
Mb. : 09810831363 / 9818106660
: 08802288258 - 59-60

SCO-32, 1st Floor, Sec.-16,


Faridabad (HARYANA)
Ph. : 0129-4150605-09
Mb. : 09811612707

GURGAON

JAIPUR

1808/2, 2nd floor old DLF,


Near Honda Showroom,
Sec.-14, Gurgaon (Haryana)
Ph. : 0124-4219095-96-97-98
Mb. : 09873477222-333

38,Jai Jawan Colony 3rd,


Near Gaurav Tower,JLN
Marg, Jaipur (Rajsthan)
Ph. : 0141-2550077, 2550202
Mb : 08824246937

Anda mungkin juga menyukai