SlideShare a Scribd company logo
Databases for the Masses:
Self-Service Oracle Multitenant with
APEX
Leighton L. Nelson
Who am I?
• Oracle DBA
• Oracle ACE
• Oracle Certified Expert RAC and Grid
Infrastructure Administrator 11gR2
• Co-Author Expert Oracle Enterprise
Manager Cloud Control 12c (Apress
2013)
• Speaker at RMOUG, IOUG Collaborate,
ODTUG KScope, Oracle OpenWorld
• Blogs, Social Media
• RAC Attack Ninja
2
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Agenda
• Oracle Multitenant Overview
• Manual Provisioning
• Oracle Multitenant Self Service Apex Setup
• Self-Service Provisioning Demo
• Summary
3
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Oracle Multitenant Overview
4
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Oracle Multitenant Overview
5
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
• High consolidation density
• Rapid provisioning and cloning
• Rapid patching and upgrades
• Manage many databases as one
• Dynamic resource management between
pluggable database
Manual Provisioning
6
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Manual Provisioning
• Create from PDB seed
CREATE PLUGGABLE DATABASE pdbname ADMIN USER
pdbadmin IDENTIFIED BY password
• Cloning an existing PDB
CREATE PLUGGABLE DATABASE pdbclone FROM
pdbsource
• Plugging in an unplugged PDB
CREATE PLUGGABLE DATABASE USING ‘pdb.xml’
• Migrate non-CDB to a PDB
– DBMS_PDB
– Data Pump
7
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Manual Provisioning
• Drop PDB
DROP PLUGGABLE DATABASE pdbname
• Unplug PDB
ALTER PLUGGABLE DATABASE pdbname
UNPLUG INTO ‘pdb.xml’
• Open/Close
ALTER PLUGGABLE DATABASE pdbname
OPEN/CLOSE
8
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Manual Provisioning
9
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Oracle Multitenant Self-Service
Provisioning – BETA 2
• APEX App available on OTN
• Provisions PDBs using PL/SQL API on top of
APEX.
• Customizable
– Quotas
– Security
– DB Size
10
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Oracle Multitenant Self Service APEX
Setup
• Install Oracle Database 12c
• Create new container database
• Upgrade APEX to 4.2.3+
• Configure RESTful Web Services in CDB
• Unlock APEX_PUBLIC_USER
• Grant permissions on containers to APEX users
• Download and Configure APEX Listener 2.0.4+
(Oracle REST Data Services)
• Start APEX Listener in Standalone Mode
11
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Oracle Multitenant Self Service APEX
Setup
• Create a new 12c container database
12
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Oracle Multitenant Self Service APEX
Setup
• Upgrade APEX to 4.2.3+
– Download and apply Oracle Application Express
patch 17347169 from My Oracle Support. This
patch will upgrade Application Express to release
4.2.3.00.08.
– Recommended to apply latest patch 4.2.5.00.08
(patch no. 17966818)
-For APEX 4.1 and below Install APEX 4.2.5 Full
installer (OTN)
13
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Oracle Multitenant Self Service APEX
Setup
• Configure RESTful Web Services in CDB
– cd patch (the directory from Step 3 above)
– Connect as SYS as SYSDBA to CDB$ROOT
– @apex_rest_config_con.sql
– When prompted, enter passwords for the
APEX_LISTENER and APEX_REST_PUBLIC_USER
database users that will be created.
14
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Oracle Multitenant Self Service APEX
Setup
• Unlock APEX_PUBLIC_USER
– Connect as SYS as SYSDBA to CDB$ROOT
– alter user APEX_PUBLIC_USER identified by
"<replace_with_password>" account unlock;
15
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Oracle Multitenant Self Service APEX
Setup
• Grant permissions on containers to APEX users
– Connect as SYS as SYSDBA to CDB$ROOT
– grant set container to APEX_PUBLIC_USER
container=all;
– grant set container to APEX_REST_PUBLIC_USER
container=all;
– grant set container to APEX_LISTENER
container=all;
16
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Oracle Multitenant Self Service APEX
Setup
• Download and Configure APEX Listener 2.0.4+
– unzip apex_listener.<version>.zip (ords.zip)
– Change your working directory to where you unzipped the
software
– java -jar apex.war
or
– java –jar ords.war
17
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Oracle Multitenant Self Service APEX
Setup
• Start APEX Listener in Standalone Mode
– java -jar apex.war
– Supply the full file system path to the Application
Express images directory from the patch set from
Step 3
– Choose an available network port (for example,
8080)
– Confirm that you can access the URL listed at the
end of the apex.war console output using a web
browser
18
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Oracle Multitenant Self Service APEX
Setup
• Install PDBSS application
SQL> @pdbss_ins.sql
. Oracle Multitenant Self-Service Provisioning
..............................................
19
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Oracle Multitenant Self Service APEX
Setup
• Login to APEX app as ADMIN
20
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Self-Service Provisioning Demo
DEMO TIME
21
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Self-Service Provisioning Demo
22
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Self-Service Provisioning Demo
• Administration
23
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Self-Service Provisioning Demo
• Configure SMTP settings
24
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Self-Service Provisioning Demo
• Update Admin Email Address
25
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Self-Service Provisioning Demo
• Request Access
26
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Self-Service Provisioning Demo Mode
27
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Self-Service Provisioning Demo
28
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Self-Service Provisioning Demo
29
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Self-Service Provisioning Demo
30
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Self-Service Provisioning Demo
31
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Self-Service Provisioning Demo
32
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Database Management
• PDBSS ONLY does provisioning
– No monitoring
– No DBA management
• SQL Developer 4.0
• Manually configure EM12c Express for PDBs
– Requires EM_EXPRESS_ALL or EM_EXPRESS_BASIC
33
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Database Management
34@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Summary
• Consolidated database environment
• Fast database provisioning
• Self-Service
• Ideal for Test/Development Environments
• No need for complex tools
• Does not manage or monitor PDBs
– configure EM12c Express
35
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Summary
36
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Thank you
Questions?
37
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
6/24/14
Contact
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
386/24/14
http://blogs.griddba.com
linkedin.com/pub/leighton-nelson/4/6b8/a7a
@leight0nn
leightonn@gmail.com
References
• Oracle Multitenant Option - 12c : Frequently
Asked Questions (Doc ID 1511619.1)
• Oracle® Database Administrator's Guide 12c
Release 1 (12.1)
@leight0nn
http://pdbss.oracledb12c.com:8080/ords/fp?=pdbss
396/24/14

More Related Content

What's hot (20)

PDF
Oracle Drivers configuration for High Availability, is it a developer's job?
Ludovico Caldara
 
PDF
Oracle Real Application Clusters 19c- Best Practices and Internals- EMEA Tour...
Sandesh Rao
 
PDF
Rapid Home Provisioning
Ludovico Caldara
 
PDF
Oracle Database on ACFS: a perfect marriage?
Ludovico Caldara
 
PDF
SQL Monitoring in Oracle Database 12c
Tanel Poder
 
PDF
Expert performance tuning tips for Oracle RAC
SolarWinds
 
PDF
Clone Oracle Databases In Minutes Without Risk Using Enterprise Manager 13c
Alfredo Krieg
 
PDF
Crating a Robust Performance Strategy
Guatemala User Group
 
PDF
Collaborate 2019 - How to Understand an AWR Report
Alfredo Krieg
 
PDF
Oracle Fleet Patching and Provisioning Deep Dive Webcast Slides
Ludovico Caldara
 
PDF
Simplifying EBS 12.2 ADOP - Collaborate 2019
Alfredo Krieg
 
PDF
12 Things about Oracle WebLogic Server 12c
Guatemala User Group
 
PPT
Oracle Active Data Guard 12c New Features
Emre Baransel
 
PDF
Oracle Enterprise Manager Cloud Control 12c: how to solve 'ERROR: NMO Not Set...
Marco Vigelini
 
PDF
Oracle Rac Performance Tunning Tips&Tricks
Zekeriya Besiroglu
 
PPTX
Optimizing your Database Import!
Nabil Nawaz
 
PDF
Oracle Drivers configuration for High Availability
Ludovico Caldara
 
PPTX
Oracle database 12c new features
Jakkrapat S.
 
PDF
OTN TOUR 2016 - Oracle Database 12c - The Best Oracle Database 12c New Featur...
Alex Zaballa
 
PDF
Oracle12c data guard farsync and whats new - Nassyam Basha
pasalapudi123
 
Oracle Drivers configuration for High Availability, is it a developer's job?
Ludovico Caldara
 
Oracle Real Application Clusters 19c- Best Practices and Internals- EMEA Tour...
Sandesh Rao
 
Rapid Home Provisioning
Ludovico Caldara
 
Oracle Database on ACFS: a perfect marriage?
Ludovico Caldara
 
SQL Monitoring in Oracle Database 12c
Tanel Poder
 
Expert performance tuning tips for Oracle RAC
SolarWinds
 
Clone Oracle Databases In Minutes Without Risk Using Enterprise Manager 13c
Alfredo Krieg
 
Crating a Robust Performance Strategy
Guatemala User Group
 
Collaborate 2019 - How to Understand an AWR Report
Alfredo Krieg
 
Oracle Fleet Patching and Provisioning Deep Dive Webcast Slides
Ludovico Caldara
 
Simplifying EBS 12.2 ADOP - Collaborate 2019
Alfredo Krieg
 
12 Things about Oracle WebLogic Server 12c
Guatemala User Group
 
Oracle Active Data Guard 12c New Features
Emre Baransel
 
Oracle Enterprise Manager Cloud Control 12c: how to solve 'ERROR: NMO Not Set...
Marco Vigelini
 
Oracle Rac Performance Tunning Tips&Tricks
Zekeriya Besiroglu
 
Optimizing your Database Import!
Nabil Nawaz
 
Oracle Drivers configuration for High Availability
Ludovico Caldara
 
Oracle database 12c new features
Jakkrapat S.
 
OTN TOUR 2016 - Oracle Database 12c - The Best Oracle Database 12c New Featur...
Alex Zaballa
 
Oracle12c data guard farsync and whats new - Nassyam Basha
pasalapudi123
 

Viewers also liked (20)

PDF
Pini Dibask - Oracle Database Locking Mechanism Demystified (Presentation)
Pini Dibask
 
PPTX
Machines and the Magic of Fast Learning - Strata Keynote
SingleStore
 
PPTX
Top 10 HTML5 features every developer should know!
Gill Cleeren
 
PDF
APEX Security 101
Dimitri Gielis
 
PPTX
5 x HTML5 worth using in APEX (5)
Christian Rokitta
 
PPT
Apex RnD APEX 5 - Printing
Lino Schildenfeld
 
PDF
Advanced Reporting And Charting With Oracle Application Express 4.0
Rinie Romme
 
PDF
APEX Wearables
Dimitri Gielis
 
PDF
How to make APEX print through Node.js
Dimitri Gielis
 
PPTX
APEX Dashboard Competition - Winners
Tobias Arnhold
 
PDF
Apex day 1.0 oracle apex 5.0 patrick wolf
APEX Solutions - Natural Intelligence
 
PDF
5 Cool Things you can do with HTML5 and APEX
Roel Hartman
 
PDF
Install oracle grid infrastructure on linux 6.6
Osama Mustafa
 
PDF
APEX 5 Demo and Best Practices
Dimitri Gielis
 
PDF
Offline Web with Oracle JET
andrejusb
 
PPTX
Building a Flexible UI with Oracle ApEx
Bradley Brown
 
PDF
Jsf2 html5-jazoon
Roger Kitain
 
PDF
EM13c: Write Powerful Scripts with EMCLI
Gokhan Atil
 
PPTX
Oracle APEX Performance
Scott Wesley
 
PDF
Top 5 Tips to Cut the Effort of your Oracle EBS R12 Project by a Third
Original Software
 
Pini Dibask - Oracle Database Locking Mechanism Demystified (Presentation)
Pini Dibask
 
Machines and the Magic of Fast Learning - Strata Keynote
SingleStore
 
Top 10 HTML5 features every developer should know!
Gill Cleeren
 
APEX Security 101
Dimitri Gielis
 
5 x HTML5 worth using in APEX (5)
Christian Rokitta
 
Apex RnD APEX 5 - Printing
Lino Schildenfeld
 
Advanced Reporting And Charting With Oracle Application Express 4.0
Rinie Romme
 
APEX Wearables
Dimitri Gielis
 
How to make APEX print through Node.js
Dimitri Gielis
 
APEX Dashboard Competition - Winners
Tobias Arnhold
 
Apex day 1.0 oracle apex 5.0 patrick wolf
APEX Solutions - Natural Intelligence
 
5 Cool Things you can do with HTML5 and APEX
Roel Hartman
 
Install oracle grid infrastructure on linux 6.6
Osama Mustafa
 
APEX 5 Demo and Best Practices
Dimitri Gielis
 
Offline Web with Oracle JET
andrejusb
 
Building a Flexible UI with Oracle ApEx
Bradley Brown
 
Jsf2 html5-jazoon
Roger Kitain
 
EM13c: Write Powerful Scripts with EMCLI
Gokhan Atil
 
Oracle APEX Performance
Scott Wesley
 
Top 5 Tips to Cut the Effort of your Oracle EBS R12 Project by a Third
Original Software
 
Ad

Similar to PDB Provisioning with Oracle Multitenant Self Service Application (20)

PDF
Step-by-Step: APEX Installation on Tomcat (Windows Server 2016)
sheriframadan18
 
PPTX
Database As A Service: OEM + ODA (OOW 15 Presentation)
Bobby Curtis
 
PDF
configuring+oracle+rds+with+glasfish+server
hunghtc83
 
PPTX
Oracle REST Data Services Best Practices/ Overview
Kris Rice
 
PDF
What we unlearned_and_learned_by_moving_from_m9000_to_ssc_ukoug2014
Philippe Fierens
 
PDF
Tools, not only for Oracle RAC
Markus Flechtner
 
PDF
oracle-rest-data-service-instal-config
hunghtc83
 
PDF
Oracle Application Express 20.2 New Features
msewtz
 
PDF
0396 oracle-goldengate-12c-tutorial
KlausePaulino
 
DOCX
Oracle DBA Trainer
P S Rani
 
PDF
Java Library for High Speed Streaming Data
Oracle Developers
 
PDF
APEX richtig installieren und konfigurieren
Oliver Lemm
 
PDF
Migrating to Database 12c Multitenant - New Opportunities To Get It Right!
Performance Tuning Corporation
 
PDF
The three investigators: OraChk, TFA and DBSAT
Markus Flechtner
 
PDF
Oracle restful api & data live charting by Oracle Apex - داشبورد آنلاین (داده...
mahdi ahmadi
 
PDF
Big Data Open Source Security LLC: Realtime log analysis with Mesos, Docker, ...
DataStax Academy
 
PPTX
Flashback in OCI
Tércio Costa
 
PPTX
Mangled Or Managed
Niall Litchfield
 
PPTX
E business suite r12.2 changes for database administrators
Srinivasa Pavan Marti
 
PPTX
E business suite r12.2 changes for database administrators
Srinivasa Pavan Marti
 
Step-by-Step: APEX Installation on Tomcat (Windows Server 2016)
sheriframadan18
 
Database As A Service: OEM + ODA (OOW 15 Presentation)
Bobby Curtis
 
configuring+oracle+rds+with+glasfish+server
hunghtc83
 
Oracle REST Data Services Best Practices/ Overview
Kris Rice
 
What we unlearned_and_learned_by_moving_from_m9000_to_ssc_ukoug2014
Philippe Fierens
 
Tools, not only for Oracle RAC
Markus Flechtner
 
oracle-rest-data-service-instal-config
hunghtc83
 
Oracle Application Express 20.2 New Features
msewtz
 
0396 oracle-goldengate-12c-tutorial
KlausePaulino
 
Oracle DBA Trainer
P S Rani
 
Java Library for High Speed Streaming Data
Oracle Developers
 
APEX richtig installieren und konfigurieren
Oliver Lemm
 
Migrating to Database 12c Multitenant - New Opportunities To Get It Right!
Performance Tuning Corporation
 
The three investigators: OraChk, TFA and DBSAT
Markus Flechtner
 
Oracle restful api & data live charting by Oracle Apex - داشبورد آنلاین (داده...
mahdi ahmadi
 
Big Data Open Source Security LLC: Realtime log analysis with Mesos, Docker, ...
DataStax Academy
 
Flashback in OCI
Tércio Costa
 
Mangled Or Managed
Niall Litchfield
 
E business suite r12.2 changes for database administrators
Srinivasa Pavan Marti
 
E business suite r12.2 changes for database administrators
Srinivasa Pavan Marti
 
Ad

More from Leighton Nelson (12)

PDF
Database-as-a-Service with Oracle Enterprise Manager Cloud Control 12c and Or...
Leighton Nelson
 
PPTX
Managing Oracle Enterprise Manager Cloud Control 12c with Oracle Clusterware
Leighton Nelson
 
PPT
Oracle Enterprise Manager Cloud Control 12c - Top 10 Features for DBAs
Leighton Nelson
 
PPT
Managing Oracle Enterprise Manager Cloud Control 12c with Oracle Clusterware
Leighton Nelson
 
PDF
UPGRADING FROM ORACLE ENTERPRISE MANAGER 10G TO CLOUD CONTROL 12C WITH ZERO D...
Leighton Nelson
 
DOC
Configuring Oracle Enterprise Manager Cloud Control 12c for HA White Paper
Leighton Nelson
 
PPT
Configuring Oracle Enterprise Manager Cloud Control 12c for High Availability
Leighton Nelson
 
PDF
Migrating from Oracle Enterprise Manager 10g to 12c Cloud Control
Leighton Nelson
 
DOCX
Learning Oracle with Oracle VM VirtualBox Whitepaper
Leighton Nelson
 
PPT
Learning Oracle with Oracle VM VirtualBox
Leighton Nelson
 
PPT
Looking at RAC, GI/Clusterware Diagnostic Tools
Leighton Nelson
 
PPTX
Oracle RAC - Standard Edition, Enterprise Edition &amp; One Node
Leighton Nelson
 
Database-as-a-Service with Oracle Enterprise Manager Cloud Control 12c and Or...
Leighton Nelson
 
Managing Oracle Enterprise Manager Cloud Control 12c with Oracle Clusterware
Leighton Nelson
 
Oracle Enterprise Manager Cloud Control 12c - Top 10 Features for DBAs
Leighton Nelson
 
Managing Oracle Enterprise Manager Cloud Control 12c with Oracle Clusterware
Leighton Nelson
 
UPGRADING FROM ORACLE ENTERPRISE MANAGER 10G TO CLOUD CONTROL 12C WITH ZERO D...
Leighton Nelson
 
Configuring Oracle Enterprise Manager Cloud Control 12c for HA White Paper
Leighton Nelson
 
Configuring Oracle Enterprise Manager Cloud Control 12c for High Availability
Leighton Nelson
 
Migrating from Oracle Enterprise Manager 10g to 12c Cloud Control
Leighton Nelson
 
Learning Oracle with Oracle VM VirtualBox Whitepaper
Leighton Nelson
 
Learning Oracle with Oracle VM VirtualBox
Leighton Nelson
 
Looking at RAC, GI/Clusterware Diagnostic Tools
Leighton Nelson
 
Oracle RAC - Standard Edition, Enterprise Edition &amp; One Node
Leighton Nelson
 

Recently uploaded (20)

PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PDF
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PPTX
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
July Patch Tuesday
Ivanti
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PDF
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
PDF
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
IoT-Powered Industrial Transformation – Smart Manufacturing to Connected Heal...
Rejig Digital
 
PDF
From Code to Challenge: Crafting Skill-Based Games That Engage and Reward
aiyshauae
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
Smart Trailers 2025 Update with History and Overview
Paul Menig
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
From Sci-Fi to Reality: Exploring AI Evolution
Svetlana Meissner
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
July Patch Tuesday
Ivanti
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
Achieving Consistent and Reliable AI Code Generation - Medusa AI
medusaaico
 
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
IoT-Powered Industrial Transformation – Smart Manufacturing to Connected Heal...
Rejig Digital
 
From Code to Challenge: Crafting Skill-Based Games That Engage and Reward
aiyshauae
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 

PDB Provisioning with Oracle Multitenant Self Service Application

Editor's Notes

  • #10: Oracle database 12c multitenant supported in since SQL Developer 3.2.
  • #11: PL/SQL API created as packages in SYS schema. pdbss_provisioning, pdbss_provisioning_internal. APEX Workspace – ORACLE_PDB_SELF_SERVICE APEX Schema owner C##PDBMGR
  • #12: PDBSS installed in CDB$ROOT. Beta1 installed in PDB.
  • #13: Use Advanced Mode to Create an empty Container Database Character set should be set to Unicode (AL32UTF8)
  • #14: Oracle Database 12c included APEX 4.2.0 by default
  • #18: If you use the latest version of APEX listener replace apex_listener.jar with ords.jar
  • #25: SMTP setting doesn’t support TLS! May be possible to configure SMTP relay.
  • #35: https://blogs.oracle.com/dba/entry/how_to_configure_em_express