SlideShare a Scribd company logo
Oracle 12c and its pluggable
databases

Presented by : Gustavo René Antúnez
Oracle DBA
The Pythian Group
February, 2014
About Pythian
• 

Recognized Leader:
–  Global industry-leader in remote database administration services and
consulting for Oracle, Oracle Applications, MySQL and Microsoft SQL Server
–  Work with over 250 multinational companies such as Forbes.com, Fox Sports,
Nordion and Western Union to help manage their complex IT deployments

• 

Expertise:
–  One of the world’s largest concentrations of dedicated, full-time DBA
expertise. Employ 9 Oracle ACEs/ACE Directors.
–  Hold 7 Specializations under Oracle Platinum Partner program, including
Oracle Exadata, Oracle GoldenGate & Oracle RAC

• 

Global Reach & Scalability:
–  Around the clock global remote support for DBA and consulting, systems
administration, special projects or emergency response
About Me
–  Oracle DBA
•  Started with Version 9.2 in 2004

–  With The Pythian Group for the
last year
–  Movie Fanatic
–  Music Lover
–  Bringing the best from México
(Mexihtli) to the rest of the world
and in the process
photographing it :)
–  reneantunez.com
–  @antunezrene
Where do I come from?
How did you get to be a DBA
What is The Multitenant
Architecture?
•  Container database (CDB) is an Oracle
database that includes zero, one, or many
customer-created Containers or Pluggable
Databases.
•  A pluggable Database (PDB) is a user-created
container holding the data and code for your
specific applications
What is a Pluggable Database?
CDB
PDB
Administrator
for hrpdb

Root
(CDB$ROOT)
CDB
Administrator
hrpdb

PDB
Administrator
for salespdb

salespdb

Seed
(PDB$SEED)

Sales Application
HR Application

Logical
Physical
Database
Data
Files

10101

Control
Files

10101

Online
Redo Log

Archived
Redo Log

Flashback
Log
Benefits of a Pluggable Database
•  Achieve a greater level of scalability and
consolidation density
•  Managing many databases as one
•  Single set of Background Processes
•  Oracle System dictionary resides in the
Container Database.
•  Rapid Provisioning and Cloning
What is a Pluggable Database?
CDB

CREATE PLUGGABLE DATABASE

Root
(CDB$ROOT)

Seed
(PDB$SEED)

HR
PDB

Sales
PDB

New
PDB

Sales
PDB2

CREATE PLUGGABLE DATABASE. . . FROM
Multitenant Architecture
CDB_view : All of the objects in the CDB across all PDBs.
DBA_view: All of the objects in a CDB or PDB
All_view Objects accessible by the current user
User_view : Objects owned by the current user

Container ID

Rows Belong to

0

Whole CDB

1

CDB$ROOT

2

PDB$SEED

All other IDs

User created PDBs
Multitenant Architecture Users
•  Common User. – Can connect and perform operations
within the root and every existing and future PDBs.
•  Local User. – Specific user that can only operate within
the PDB. A restriction is that a user cannot begin with
c## or C##
My 12c Top Features
•  Online rename and relocation of an active data file.
–  ALTER DATABASE MOVE DATAFILE

•  DDL logging
–  ALTER SYSTEM|SESSION SET ENABLE_DDL_LOGGING=TRUE;
–  $ORACLE_BASE/diag/rdbms/DBNAME/log|ddl

•  Datapump
–  Export View As a Table
–  Turn off redo log generation for Datapump Imports
•  TRANSFORM=DISABLE_ARCHIVE_LOGGING:Y
My 12c Top Features
•  Active Data Guard Far Sync
–  Synchronous replication to a far sync instance (repeater)
situated at distance /reasonable latency, then
asynchronous replication to the final standby
SYNC

ASYNC
My 12c Top Features
•  Oracle Flex ASM
–  Enables an Oracle ASM instance to run on a separate
physical server from the database servers

•  Parallel Upgrade Utility
–  $ORACLE_HOME/perl/bin/perl catctl.pl -n 4 -l $ORACLE_HOME/
diagnostics catupgrd.sql
DEMO 1
What is RMAN?
•  Oracle utility to perform backup and recovery, available
since version 8
Executable found in
$ORACLE_HOME/bin

RMAN Utility

recover.bsq
(library file)

Channel

Server
Session

Target
DB

DISK
MML
How does an RMAN
backup work?
Read Phase
Datafiles Input I/O Buffers
1
2
3
4

Write Phase

Copy Phase

1 MB

1 MB

1 MB

1 MB

1 MB

1 MB

1 MB

1 MB

1 MB

1 MB

1 MB

1 MB

1 MB

1 MB

1 MB

1 MB

Output Buffers

Channel
Validation
Compression
Encryption

1 MB

1 MB

1 MB

1 MB

Backup Piece
SUPPORT FOR MULTITENANT CONTAINER
DATABASES AND PLUGGABLE DATABASES
•  Backing up the CDB and all of its PDBs
rman target sys/oracle@cdb1
connected to target database: CDB1 (DBID=808250731)
RMAN> backup database plus archivelog;

•  Backing up just one PDB
rman target sys/oracle@pdb1
connected to target database: CDB1 (DBID=808250731)
RMAN> backup database;

•  Backing up the root
rman target sys/oracle@cdb1
connected to target database: CDB1 (DBID=808250731)
RMAN> backup database root;
SUPPORT FOR MULTITENANT CONTAINER
DATABASES AND PLUGGABLE DATABASES
•  Restoring a PDB
oracle $ rman target sys/oracle@cdb1
connected to target database: CDB1 (DBID=808250731)
RMAN> RESTORE PLUGGABLE DATABASE PDB1;
RMAN> RECOVER PLUGGABLE DATABASE PDB1;
RMAN> ALTER PLUGGABLE DATABASE PDB1 OPEN;
SUPPORT FOR MULTITENANT CONTAINER
DATABASES AND PLUGGABLE DATABASES
•  Be careful when dropping a PDB
RMAN> drop pluggable database PDB1;
Statement processed
RMAN> RESTORE PLUGGABLE DATABASE PDB1;
Starting restore at 13/02/2014 11:18:26
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=41 device type=DISK
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 02/13/2014 11:18:27
RMAN-06813: could not translate pluggable database PDB1
Recovering Tables and Table Partitions
from RMAN Backups
ARCHIVELOG
MODE

DB in read-write
mode

RMAN backup
as existed at the
point in time

Target Database

1 Gigabyte extra
in memory for
the auxiliary
database

12.1, you need to
use a
SERVICE_NAME
Viewing Backup Reports
DEMO 2
Where is The DBA Job Going?
•  Database as a Service (DBaaS)
–  Revenues will grow from 150 million in 2012 to 1.8
billion by 2016 - Forbes
–  Paradigm where end users can request database
services, consume it for the lifetime of the project, and
then have then automatically de-provisioned and
returned to the resource pool.
–  Allows you scale out and scale back database
resources as needed.
FIT-ACER
•  F – Focus (SLOW DOWN! Are you ready?)
•  I – Identify server/DB name, time, authorization
•  T – Type the command (do not hit enter yet)
• 
• 
• 
• 

A – Assess the command (SPEND TIME HERE!)
C – Check the server / database name again
E – Execute the command
R – Review and document the results
Thank you – Q&A
To contact us
sales@pythian.com
1-877-PYTHIAN

To follow us
http://www.pythian.com/blog
http://www.facebook.com/pages/The-Pythian-Group/163902527671
@pythian
http://www.linkedin.com/company/pythian

More Related Content

PDF
Oracle 12c PDB insights
PPTX
Why oracle data guard new features in oracle 18c, 19c
PDF
Oracle RAC 19c: Best Practices and Secret Internals
PDF
Oracle Database Performance Tuning Advanced Features and Best Practices for DBAs
PDF
Understanding oracle rac internals part 2 - slides
PPT
Performance Tuning With Oracle ASH and AWR. Part 1 How And What
PPTX
Oracle architecture ppt
PDF
Exadata master series_asm_2020
Oracle 12c PDB insights
Why oracle data guard new features in oracle 18c, 19c
Oracle RAC 19c: Best Practices and Secret Internals
Oracle Database Performance Tuning Advanced Features and Best Practices for DBAs
Understanding oracle rac internals part 2 - slides
Performance Tuning With Oracle ASH and AWR. Part 1 How And What
Oracle architecture ppt
Exadata master series_asm_2020

What's hot (20)

PPTX
New Features for Multitenant in Oracle Database 21c
PPT
Dataguard presentation
PDF
Oracle db performance tuning
PDF
Migration to Oracle Multitenant
PDF
Awr + 12c performance tuning
PDF
Oracle Database 12c Multitenant for Consolidation
PDF
Nabil Nawaz Oracle Oracle 12c Data Guard Deep Dive Presentation
PDF
Understanding oracle rac internals part 1 - slides
PDF
Oracle_Multitenant_19c_-_All_About_Pluggable_D.pdf
PDF
Release and patching strategy
PPTX
AWR and ASH Deep Dive
PDF
Oracle Client Failover - Under The Hood
PDF
Understanding Oracle RAC 12c Internals OOW13 [CON8806]
PDF
Oracle RAC Virtualized - In VMs, in Containers, On-premises, and in the Cloud
PDF
Oracle Performance Tuning Fundamentals
PPTX
Database Consolidation using the Oracle Multitenant Architecture
PDF
Oracle Active Data Guard: Best Practices and New Features Deep Dive
PDF
Oracle 12c Multitenant architecture
PDF
Oracle Real Application Clusters 19c- Best Practices and Internals- EMEA Tour...
PDF
Advanced RAC troubleshooting: Network
New Features for Multitenant in Oracle Database 21c
Dataguard presentation
Oracle db performance tuning
Migration to Oracle Multitenant
Awr + 12c performance tuning
Oracle Database 12c Multitenant for Consolidation
Nabil Nawaz Oracle Oracle 12c Data Guard Deep Dive Presentation
Understanding oracle rac internals part 1 - slides
Oracle_Multitenant_19c_-_All_About_Pluggable_D.pdf
Release and patching strategy
AWR and ASH Deep Dive
Oracle Client Failover - Under The Hood
Understanding Oracle RAC 12c Internals OOW13 [CON8806]
Oracle RAC Virtualized - In VMs, in Containers, On-premises, and in the Cloud
Oracle Performance Tuning Fundamentals
Database Consolidation using the Oracle Multitenant Architecture
Oracle Active Data Guard: Best Practices and New Features Deep Dive
Oracle 12c Multitenant architecture
Oracle Real Application Clusters 19c- Best Practices and Internals- EMEA Tour...
Advanced RAC troubleshooting: Network
Ad

Viewers also liked (20)

PDF
Cosas que “probablemente” no sabes pero deberías de saber en Oracle 12c
PPTX
Oracle 12c Architecture
PPSX
Oracle database 12c new features
PPTX
Best New Features of Oracle Database 12c
PDF
RMAN in 12c: The Next Generation (PPT)
PPTX
Oracle database 12c new features
PPTX
Oracle 12c Multi Tenant
PPTX
Why Upgrade to Oracle Database 12c?
PDF
Exploring Oracle Database 12c Multitenant best practices for your Cloud
PPTX
Presentation day1oracle 12c
PPTX
Database Consolidation using Oracle Multitenant
PDF
The Top 12 Features new to Oracle 12c
PDF
My First 100 days with an Exadata (PPT)
PDF
Write Less (code) With More (Oracle Database 12c New Features)
PDF
DBA 101 : Calling all New Database Administrators (WP)
PDF
Architecting your own DBaaS in a Private Cloud with EM12c (WP)
PDF
Fast, Flexible Application Development with Oracle Database Cloud Service
PDF
Architecting Your Own DBaaS in a Private Cloud with EM12c
PPTX
Oracle Database 12c - New Features for Developers and DBAs
PPTX
Oracle Database 11g vs 12c
Cosas que “probablemente” no sabes pero deberías de saber en Oracle 12c
Oracle 12c Architecture
Oracle database 12c new features
Best New Features of Oracle Database 12c
RMAN in 12c: The Next Generation (PPT)
Oracle database 12c new features
Oracle 12c Multi Tenant
Why Upgrade to Oracle Database 12c?
Exploring Oracle Database 12c Multitenant best practices for your Cloud
Presentation day1oracle 12c
Database Consolidation using Oracle Multitenant
The Top 12 Features new to Oracle 12c
My First 100 days with an Exadata (PPT)
Write Less (code) With More (Oracle Database 12c New Features)
DBA 101 : Calling all New Database Administrators (WP)
Architecting your own DBaaS in a Private Cloud with EM12c (WP)
Fast, Flexible Application Development with Oracle Database Cloud Service
Architecting Your Own DBaaS in a Private Cloud with EM12c
Oracle Database 12c - New Features for Developers and DBAs
Oracle Database 11g vs 12c
Ad

Similar to Oracle 12c and its pluggable databases (20)

PDF
What is new on 12c for Backup and Recovery? Presentation
PDF
Under The Hood of Pluggable Databases by Alex Gorbachev, Pythian, Oracle OpeW...
PDF
Cdb part i
PDF
RMAN - New Features in Oracle 12c - IOUG Collaborate 2017
PDF
Oracle database 12c intro
PPTX
Simplify Consolidation with Oracle Database 12c
PDF
RMOUG 18 - Winning Performance Challenges in Oracle Multitenant
PDF
OOW 17 - database consolidation using the oracle multitenant architecture
PPTX
Presentation day2 oracle12c
PPTX
Simplify Consolidation with Oracle Pluggable Databases
PDF
Winning performance challenges in oracle multitenant
PPT
173955573244324324324424322adsadsaasd.ppt
PDF
One PDB to go, please!
PDF
Winning Performance Challenges in Oracle Multitenant
PDF
Plugging in oracle database 12c pluggable databases
PPTX
Oracle 12c - Multitenant Feature
PDF
RMAN in 12c: The Next Generation (WP)
PDF
Oracle Multitenant Database 2.0 - Improvements in Oracle Database 12c Release 2
PDF
Oracle Multitenant Database 2.0 - Improvements in Oracle Database 12c Release 2
PPTX
Using oracle12c pluggable databases to archive
What is new on 12c for Backup and Recovery? Presentation
Under The Hood of Pluggable Databases by Alex Gorbachev, Pythian, Oracle OpeW...
Cdb part i
RMAN - New Features in Oracle 12c - IOUG Collaborate 2017
Oracle database 12c intro
Simplify Consolidation with Oracle Database 12c
RMOUG 18 - Winning Performance Challenges in Oracle Multitenant
OOW 17 - database consolidation using the oracle multitenant architecture
Presentation day2 oracle12c
Simplify Consolidation with Oracle Pluggable Databases
Winning performance challenges in oracle multitenant
173955573244324324324424322adsadsaasd.ppt
One PDB to go, please!
Winning Performance Challenges in Oracle Multitenant
Plugging in oracle database 12c pluggable databases
Oracle 12c - Multitenant Feature
RMAN in 12c: The Next Generation (WP)
Oracle Multitenant Database 2.0 - Improvements in Oracle Database 12c Release 2
Oracle Multitenant Database 2.0 - Improvements in Oracle Database 12c Release 2
Using oracle12c pluggable databases to archive

More from Gustavo Rene Antunez (9)

PDF
Why You Need Manageability Now More than Ever and How to Get It
PDF
#19sverificado : How Data Analytics helped put order in chaos in Mexico's ...
PDF
How DBAs can garner the power of the Oracle Public Cloud?
PDF
My First 100 days with a Cassandra Cluster
PDF
My First 100 days with a MySQL DBMS (WP)
PDF
My First 100 days with a MySQL DBMS
PDF
My First 100 days with an Exadata (WP)
PDF
DBA 101 : Calling all New Database Administrators (PPT)
PDF
How to survive a disaster with RMAN
Why You Need Manageability Now More than Ever and How to Get It
#19sverificado : How Data Analytics helped put order in chaos in Mexico's ...
How DBAs can garner the power of the Oracle Public Cloud?
My First 100 days with a Cassandra Cluster
My First 100 days with a MySQL DBMS (WP)
My First 100 days with a MySQL DBMS
My First 100 days with an Exadata (WP)
DBA 101 : Calling all New Database Administrators (PPT)
How to survive a disaster with RMAN

Recently uploaded (20)

PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PPTX
Big Data Technologies - Introduction.pptx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
KodekX | Application Modernization Development
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PPTX
Cloud computing and distributed systems.
The Rise and Fall of 3GPP – Time for a Sabbatical?
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Big Data Technologies - Introduction.pptx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
“AI and Expert System Decision Support & Business Intelligence Systems”
Advanced methodologies resolving dimensionality complications for autism neur...
Mobile App Security Testing_ A Comprehensive Guide.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Unlocking AI with Model Context Protocol (MCP)
Reach Out and Touch Someone: Haptics and Empathic Computing
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
20250228 LYD VKU AI Blended-Learning.pptx
Review of recent advances in non-invasive hemoglobin estimation
KodekX | Application Modernization Development
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Dropbox Q2 2025 Financial Results & Investor Presentation
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Cloud computing and distributed systems.

Oracle 12c and its pluggable databases

  • 1. Oracle 12c and its pluggable databases Presented by : Gustavo René Antúnez Oracle DBA The Pythian Group February, 2014
  • 2. About Pythian •  Recognized Leader: –  Global industry-leader in remote database administration services and consulting for Oracle, Oracle Applications, MySQL and Microsoft SQL Server –  Work with over 250 multinational companies such as Forbes.com, Fox Sports, Nordion and Western Union to help manage their complex IT deployments •  Expertise: –  One of the world’s largest concentrations of dedicated, full-time DBA expertise. Employ 9 Oracle ACEs/ACE Directors. –  Hold 7 Specializations under Oracle Platinum Partner program, including Oracle Exadata, Oracle GoldenGate & Oracle RAC •  Global Reach & Scalability: –  Around the clock global remote support for DBA and consulting, systems administration, special projects or emergency response
  • 3. About Me –  Oracle DBA •  Started with Version 9.2 in 2004 –  With The Pythian Group for the last year –  Movie Fanatic –  Music Lover –  Bringing the best from México (Mexihtli) to the rest of the world and in the process photographing it :) –  reneantunez.com –  @antunezrene
  • 4. Where do I come from?
  • 5. How did you get to be a DBA
  • 6. What is The Multitenant Architecture? •  Container database (CDB) is an Oracle database that includes zero, one, or many customer-created Containers or Pluggable Databases. •  A pluggable Database (PDB) is a user-created container holding the data and code for your specific applications
  • 7. What is a Pluggable Database? CDB PDB Administrator for hrpdb Root (CDB$ROOT) CDB Administrator hrpdb PDB Administrator for salespdb salespdb Seed (PDB$SEED) Sales Application HR Application Logical Physical Database Data Files 10101 Control Files 10101 Online Redo Log Archived Redo Log Flashback Log
  • 8. Benefits of a Pluggable Database •  Achieve a greater level of scalability and consolidation density •  Managing many databases as one •  Single set of Background Processes •  Oracle System dictionary resides in the Container Database. •  Rapid Provisioning and Cloning
  • 9. What is a Pluggable Database? CDB CREATE PLUGGABLE DATABASE Root (CDB$ROOT) Seed (PDB$SEED) HR PDB Sales PDB New PDB Sales PDB2 CREATE PLUGGABLE DATABASE. . . FROM
  • 10. Multitenant Architecture CDB_view : All of the objects in the CDB across all PDBs. DBA_view: All of the objects in a CDB or PDB All_view Objects accessible by the current user User_view : Objects owned by the current user Container ID Rows Belong to 0 Whole CDB 1 CDB$ROOT 2 PDB$SEED All other IDs User created PDBs
  • 11. Multitenant Architecture Users •  Common User. – Can connect and perform operations within the root and every existing and future PDBs. •  Local User. – Specific user that can only operate within the PDB. A restriction is that a user cannot begin with c## or C##
  • 12. My 12c Top Features •  Online rename and relocation of an active data file. –  ALTER DATABASE MOVE DATAFILE •  DDL logging –  ALTER SYSTEM|SESSION SET ENABLE_DDL_LOGGING=TRUE; –  $ORACLE_BASE/diag/rdbms/DBNAME/log|ddl •  Datapump –  Export View As a Table –  Turn off redo log generation for Datapump Imports •  TRANSFORM=DISABLE_ARCHIVE_LOGGING:Y
  • 13. My 12c Top Features •  Active Data Guard Far Sync –  Synchronous replication to a far sync instance (repeater) situated at distance /reasonable latency, then asynchronous replication to the final standby SYNC ASYNC
  • 14. My 12c Top Features •  Oracle Flex ASM –  Enables an Oracle ASM instance to run on a separate physical server from the database servers •  Parallel Upgrade Utility –  $ORACLE_HOME/perl/bin/perl catctl.pl -n 4 -l $ORACLE_HOME/ diagnostics catupgrd.sql
  • 16. What is RMAN? •  Oracle utility to perform backup and recovery, available since version 8 Executable found in $ORACLE_HOME/bin RMAN Utility recover.bsq (library file) Channel Server Session Target DB DISK MML
  • 17. How does an RMAN backup work? Read Phase Datafiles Input I/O Buffers 1 2 3 4 Write Phase Copy Phase 1 MB 1 MB 1 MB 1 MB 1 MB 1 MB 1 MB 1 MB 1 MB 1 MB 1 MB 1 MB 1 MB 1 MB 1 MB 1 MB Output Buffers Channel Validation Compression Encryption 1 MB 1 MB 1 MB 1 MB Backup Piece
  • 18. SUPPORT FOR MULTITENANT CONTAINER DATABASES AND PLUGGABLE DATABASES •  Backing up the CDB and all of its PDBs rman target sys/oracle@cdb1 connected to target database: CDB1 (DBID=808250731) RMAN> backup database plus archivelog; •  Backing up just one PDB rman target sys/oracle@pdb1 connected to target database: CDB1 (DBID=808250731) RMAN> backup database; •  Backing up the root rman target sys/oracle@cdb1 connected to target database: CDB1 (DBID=808250731) RMAN> backup database root;
  • 19. SUPPORT FOR MULTITENANT CONTAINER DATABASES AND PLUGGABLE DATABASES •  Restoring a PDB oracle $ rman target sys/oracle@cdb1 connected to target database: CDB1 (DBID=808250731) RMAN> RESTORE PLUGGABLE DATABASE PDB1; RMAN> RECOVER PLUGGABLE DATABASE PDB1; RMAN> ALTER PLUGGABLE DATABASE PDB1 OPEN;
  • 20. SUPPORT FOR MULTITENANT CONTAINER DATABASES AND PLUGGABLE DATABASES •  Be careful when dropping a PDB RMAN> drop pluggable database PDB1; Statement processed RMAN> RESTORE PLUGGABLE DATABASE PDB1; Starting restore at 13/02/2014 11:18:26 allocated channel: ORA_DISK_1 channel ORA_DISK_1: SID=41 device type=DISK RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: =========================================================== RMAN-03002: failure of restore command at 02/13/2014 11:18:27 RMAN-06813: could not translate pluggable database PDB1
  • 21. Recovering Tables and Table Partitions from RMAN Backups ARCHIVELOG MODE DB in read-write mode RMAN backup as existed at the point in time Target Database 1 Gigabyte extra in memory for the auxiliary database 12.1, you need to use a SERVICE_NAME
  • 24. Where is The DBA Job Going? •  Database as a Service (DBaaS) –  Revenues will grow from 150 million in 2012 to 1.8 billion by 2016 - Forbes –  Paradigm where end users can request database services, consume it for the lifetime of the project, and then have then automatically de-provisioned and returned to the resource pool. –  Allows you scale out and scale back database resources as needed.
  • 25. FIT-ACER •  F – Focus (SLOW DOWN! Are you ready?) •  I – Identify server/DB name, time, authorization •  T – Type the command (do not hit enter yet) •  •  •  •  A – Assess the command (SPEND TIME HERE!) C – Check the server / database name again E – Execute the command R – Review and document the results
  • 26. Thank you – Q&A To contact us sales@pythian.com 1-877-PYTHIAN To follow us http://www.pythian.com/blog http://www.facebook.com/pages/The-Pythian-Group/163902527671 @pythian http://www.linkedin.com/company/pythian