12.2 Multitenant New Security Features Clarify DevOps and DBA role separation

Size: px
Start display at page:

Download "12.2 Multitenant New Security Features Clarify DevOps and DBA role separation"

Transcription

1 Infrastructure at your Service Clarify DevOps and DBA role separation

2 Infrastructure at your Service. About me Franck Pachot Principal consultant Oracle Technology Leader Mobile Page 2

3 Who we are dbi services Experts At Your Service > 50 specialists in IT infrastructure > Certified, experienced, passionate Based In Switzerland > 100% self-financed Swiss company > Over CHF6 mio. turnover Leading In Infrastructure Services > More than 120 customers in CH, D, & F > Over 40 SLAs dbi FlexService contracted Page 3

4 12.2 Agenda 1. DevOps 2. Common and local users 3. Lockdown profiles and PDB isolation 4. Resource manager and PDB parameters 5. Conclusion Page 4

5 DevOps What is DevOps, What is Agile, What is Cloud? At operations our goal is stability > Run same old things for years > Don't touch anything when it works > We keep the keys of the system so that nobody breaks it At development our goal is evolution > What is ok today will be obsolete tomorrow > When it works we need to do better > We need to do it fast: agile > We can't depend on Ops: fast provisioning, fast refresh, Cloud Page 5

6 DevOps Roundrips between Dev and Ops is too long Each operation requires > several manual steps > from multiple teams Today we need > More automation > Faster provisioning > Less roundtrips between Dev and Ops > Ops provision an isolated database > Then give all rights it to Dev > And automation to clone, refresh,

7 DevOps Roundtrips between Dev and Ops is too long Need to create databases faster? > CREATE PLUGGABLE DATABASE Multitenant Need to refresh databases faster? > Snapshots, Thin Clones, refreshable PDBs Thin Clones Dev and Ops must communicate > Set the rules before arguing each request > Define clearly the Dev privileges: > Full power on his PDB only > No side effect on other PDBS For whatever reason this is called "CLOUD" DevOps Agile Lockdown profiles Resource manager Page 7

8 DevOps Exadata Express Cloud Service The first Oracle Cloud Service > Was: Schema as a Service > Focused at developers (goal was APEX) At OOW16 Oracle has released a new service for developers: > PDB as a Service rather than Schema as a Service > A PDB is a database (public objects, multiple schemas) > Provisioned in minutes - focused at developers: they are granted DBA > The CDB is managed by Oracle So can we give DBA rights to a developer on his PDB without compromising the system? > Yes, with multitenant architecture, in Oracle Database 12c Release 2 Page 8

9 DevOps Exadata Express lockdown & restrictions Admin privileges on the PDB But no access to the system Page 9

10 DevOps Exadata Express lockdown & restrictions Admin privileges on the PDB But using only allocated resources Page 10

11 Agenda 1. DevOps 2. Common and local users 3. Lockdown profiles and PDB isolation 4. Resource manager and PDB parameters 5. Other features 6. Conclusion Page 11

12 Users and privileges Common and local users Local users are created in the PDB > Are known in local container only > Created in one container with container=current Local user Common users are created in the CDB > Are known in all containers > Created in CDB$ROOT with container=all > Can change current container with alter session PDB_APP1 PDB$SEED Common user CDB$ROOT CDB1 Page 12

13 Users and privileges Common and local users Local users are for Dev APPLICATION SYSTEM > Application schemas > Application users PDB_APP1 PDB$SEED CDB$ROOT > Application admins Common users are for Ops > system administrator CDB1 > Oracle maintained > Monitoring, Multitenant architecture vs. non-cdb: separation of roles Page 13

14 Users and privileges Common and local roles and privileges Local roles and privileges > Granted to local or common user on local container Common roles and privileges > From CDB$ROOT with container=common > Granted to common users on all containers SQL> alter session set current_container=pdb; SQL> grant DBA to MY_DEVELOPER container=current; So you can grant DBA locally to the PDB local admin > But are you sure that his rights are limited to the PDB? Page 14

15 Users and privileges Demo Common user: CDB administrator SQL> show parameter prefix NAME TYPE VALUE common_user_prefix string C## SQL> create user C##CDBDBA identified by ops container=all; User created. Local user: PDB administrator SQL> alter session set container=pdb1; Session altered. SQL> create user PDBDBA identified by dev container=current; User created. SQL> grant DBA to PDBDBA identified by dev container=current; Grant succeeded. Page 15

16 Agenda 1. DevOps 2. Common and local users 3. Lockdown profiles and PDB isolation 4. Resource manager and PDB parameters 5. Other features 6. Conclusion Page 16

17 Lockdown profiles You want to delegate some DBA roles to a PDB owner > You need a finer level than system privileges SQL> create lockdown profile X20; Lockdown Profile created. SQL> select * from DBA_LOCKDOWN_PROFILES; PROFILE_NAME RULE_TYPE RULE CLAUSE CLAUSE_OPT OPTION_VAL STATUS APPDBA_PROF DISABLE SQL> alter session set container=pdb1; Session altered. SQL> alter system set pdb_lockdown=x20; System altered. With lockdown profiles you can lockdown local users > disable database options, features, access to system files, network > control what can be done by some powerful commands: > ALTER SYSTEM, ALTER SESSION, ALTER [PLUGGABLE] DATABASE Page 17

18 Lockdown profiles Demo - disable option CDB disables some options SQL> alter lockdown profile DEMO_LOCKDOWN DISABLE option = ('Partitioning'); Lockdown Profile altered. SQL> select * from dba_lockdown_profiles; PROFILE_NAME RULE_TYPE RULE CLAUSE CLAUSE_OPTION STATUS DEMO_LOCKDOWN OPTION PARTITIONING DISABLE Local user: PDB administrator SQL> create table TEST(c char) partition by hash(c) partitions 2; create table TEST(c char) partition by hash(c) partitions 2 * ERROR at line 1: ORA-00439: feature not enabled: Partitioning SQL> select banner from v$version; BANNER Oracle Database 12c Enterprise Edition Release bit Production Page 18

19 Lockdown profiles disable option You want to disable options (cf. V$OPTION): > Database queuing (also known as Advanced Queuing) > Oracle Data Guard > Partitioning > Real Application Clusters for a PDB SQL> alter lockdown profile APPDBA_PROF disable option = ('Partitioning'); Lockdown Profile altered. SQL> select * from DBA_LOCKDOWN_PROFILES; PROFILE_NAME RULE_TYPE RULE CLAUSE CLAUSE_OPT OPTION_VAL STATUS APPDBA_PROF OPTION PARTITIONING DISABLE > disable option all; > disable option all except=( ); Page 19

20 Lockdown profiles disable alter system Did you ever SQL> grant ALTER SYSTEM to MY_DEVELOPER; > so that they can kill their sessions? > That s a quite powerful privilege Alternative: SQL> create procedure kill_session ( ) as begin if /* check if session USERNAME */ execute immediate 'alter system kill session ' SQL> grant EXECUTE on kill_session to MY_DEVELOPER; > Great encapsulation, but how does it work with TOAD kill button? In 12cR2 Multitenant, there is a solution: lockdown profiles > available in Multitenant, also in Single-Tenant, but not in non-cdb > to control PDB local users beyond privileges Page 20

21 Lockdown profiles disable alter system You want to disable: > Some ALTER SYSTEM commands > But not revoke whole ALTER SYSTEM privilege for a PDB SQL> alter lockdown profile APPDBA_PROF disable statement = ('ALTER SYSTEM') clause all except = ('KILL SESSION'); SQL> select * from DBA_LOCKDOWN_PROFILES; PROFILE_NAME RULE_TYPE RULE CLAUSE CLAUSE_OPT OPTION_VAL STATUS APPDBA_PROF STATEMENT ALTER SYSTEM DISABLE APPDBA_PROF STATEMENT ALTER SYSTEM KILL SESSION ENABLE > Any user will get an ORA-01031: insufficient privileges for any ALTER SYSTEM command, except an ALTER SYSTEM KILL SESSION Page 21

22 Lockdown profiles disable alter system You want to disable: > Some ALTER SYSTEM commands > Allow ALTER SYSTEM SET, but for some parameters only SQL> alter lockdown profile APPDBA_PROF disable statement = ('ALTER SYSTEM') clause = ('SET'); Lockdown Profile altered. SQL> alter lockdown profile APPDBA_PROF enable statement = ('ALTER SYSTEM') clause = ('SET') option = ('undo_retention', 'temp_undo_enabled', 'resumable_timeout', 'cursor_sharing', 'session_cached_cursors', 'heat_map', 'resource_manager_plan', 'optimizer_dynamic_sampling'); Lockdown Profile altered. SQL> select * from DBA_LOCKDOWN_PROFILES where profile_name='appdba_prof'; PROFILE_NAME RULE_TYPE RULE CLAUSE CLAUSE_OPTION STATUS APPDBA_PROF STATEMENT ALTER SYSTEM SET DISABLE APPDBA_PROF STATEMENT ALTER SYSTEM SET CURSOR_SHARING ENABLE Page 22

23 Lockdown profiles Demo - alter system CDB administrator disables ALTER SYSTEM SQL> alter lockdown profile DEMO_LOCKDOWN 2 disable statement = ('ALTER SYSTEM'); PDB administrator cannot do any ALTER SYSTEM SQL> alter system kill session '395,37488' alter system kill session '395,37488' * ERROR at line 1: ORA-01031: insufficient privileges CDB administrator makes an exception for KILL SESSION SQL> alter lockdown profile DEMO_LOCKDOWN 2 enable statement = ('ALTER SYSTEM') clause = ('KILL SESSION'); PDB administrator can use ALTER SYSTEM only to kill sessions SQL> alter system kill session '395,37488' System altered. Page 23

24 Lockdown profiles disable alter system Example: SQL> alter system set optimizer_dynamic_sampling=4; System altered. SQL> alter system set optimizer_index_cost_adj=1; alter system set optimizer_index_cost_adj=1 * ERROR at line 1: ORA-01031: insufficient privileges When disabling, we can set the value, a list of value, or a min/max value: alter lockdown profile APPDBA_PROF disable statement=('alter SYSTEM') clause=('set') option=('cursor_sharing') value=('exact'); > Sets the value to in spfile > (re)start the PDB after setting the lockdown profile Page 24

25 Lockdown profiles disable alter system ALTER SYSTEM SET PDB_LOCKDOWN can be set only by a common user 18:39:35 SQL> show parameter lockdown NAME TYPE VALUE pdb_lockdown string DEMO_LOCKDOWN 18:39:43 SQL> alter session set pdb_lockdown=''; ERROR: ORA-02097: parameter cannot be modified because specified value is invalid ORA-01031: insufficient privileges ALTER SYSTEM RESET > is also disabled by clause=('set') Other statements: > ALTER SESSION (same clause/option than ALTER SYSTEM) > ALTER DATABASE > ALTER PLUGGABLE DATABASE Page 25

26 Lockdown profiles disable features You want to disable: > Network access > DBMS_DEBUG_JDWP, UTL_HTTP, UTL_INADDR, UTL_SMTP, UTL_TCP > XDB (the native XML storage in database) > COMMON_SCHEMA_ACCESS through proxy users > Such as connect for a PDB SQL> alter lockdown profile APPDBA_PROF disable feature = ('UTL_HTTP','UTL_SMTP','UTL_TCP'); > NETWORK_ACCESS disables all networking packages > OS_ACCESS disables all file manipulation > DROP_TABLESPACE_KEEP_DATAFILES needed to drop a tablespace without 'including datafiles' with non-omf datafile > 'AWR_ACCESS' needed to create snapshot Page 26

27 Lockdown profiles disable features Not all documented: strings $ORACLE_HOME/bin/oracle NETWORK_ACCESS COMMON_SCHEMA_ACCESS UTL_TCP UTL_HTTP UTL_SMTP UTL_INADDR XDB_PROTOCOLS CTX_PROTOCOLS CTX_LOGGING OS_ACCESS UTL_FILE EXTERNAL_PROCEDURES JAVA_OS_ACCESS JAVA_RUNTIME TRACE_VIEW_ACCESS AQ_PROTOCOLS EXTERNAL_AND_GLOBAL_AUTHENTICATION CONNECTIONS LOCAL_SYSOPER_RESTRICTED_MODE_CONNECT COMMON_USER_CONNECT FILE_TRANSFER AWR_ACCESS COMMON_USER_LOCAL_SCHEMA_ACCESS LOCAL_USER_COMMON_SCHEMA_ACCESS EXTERNAL_FILE_ACCESS DROP_TABLESPACE_KEEP_DATAFILES LOB_FILE_ACCESS ADR_ACCESS Page 27

28 Lockdown profiles Demo - disable features CDB administrator disables some features SQL> alter lockdown profile DEMO_LOCKDOWN 2 disable feature = ('DROP_TABLESPACE_KEEP_DATAFILES'); Lockdown Profile altered. SQL> alter lockdown profile DEMO_LOCKDOWN 2 disable feature = ('AWR_ACCESS'); Lockdown Profile altered. PDB user has insufficient privileges even when having DBA role SQL> drop tablespace USERS * ERROR at line 1: ORA-01031: insufficient privileges SQL> drop tablespace USERS including contents and datafiles; Tablespace dropped. > "ORA-01031: insufficient privileges" is the only info. Lockdown rules are not exposed Page 28

29 PDB isolation on OS PATH_PREFIX and CREATE_FILE_DEST We want to limit the access to filesystems by a PDB In 12.1 > PATH_PREFIX for directories In 12.2 > CREATE_FILE_DEST for directories SQL> create pluggable database PDB1 admin user admin identified by password create_file_dest='/u02/app/oracle/oradata/cdb2/pdb1'; Pluggable database created. SQL> create tablespace APPDATA datafile '/tmp/appdata.dbf' size 5M; create tablespace APPDATA datafile '/tmp/appdata.dbf' size 5M * ERROR at line 1: ORA-65250: invalid path specified for file - /tmp/appdata.dbf Page 29

30 PDB isolation on OS PDB_OS_CREDENTIALS A user can run a program on the host through > dbms_scheduler > external procedure You don t want it to run with the oracle user You create the credential for another OS user exec dbms_credential.create_credential( credential_name=>'pdb1_os_user', username=>'limiteduser', password=>'secret' ); And limit a PDB to use this user: alter session set container=pdb1; alter system set pdb_os_credential=cdb_pdb_os_user scope=spfile; Page 30

31 Agenda 1. DevOps 2. Common and local users 3. Lockdown profiles and PDB isolation 4. Resource manager and PDB parameters 5. Other features 6. Conclusion Page 31

32 Resource Manager Controls PDB usage of CDB resources Which resources? > CPU, Parallel servers, Exadata I/O Define SHARES to guarantee a minimum > Ensures that all PDBs get their part > When all CDB resources are used > DBs that use more that their share will wait Define UTILIZATION_LIMIT to throttle usage > In percentage of CDB resources > PDB that use more than a percentage of CDB resource wait > Parallel_utilization_limit is a % of parallel_servers_target Page 32

33 Resource Manager New in 12.2: memory usage Which resources? > Memory (PGA, Buffer Cache and Shared Pool) Define MEMORY_MIN for minimum allocation > Percentage scaled to 100% -> similar to shares > PDB using more is preferred for releasing memory > PDB using less is preferred for memory allocation Define MEMORY_LIMIT for maximum allocation > In percentage of CDB memory > PDB that use more than a percentage need to release before allocating Page 33

34 Resource Manager New in 12.2: Performance categories For rapid provisioning (cloud) > A CDB can define multiple profiles A CDB plan defines the profile DBMS_RESOURCE_MANAGER.create_cdb_profile_directive( plan => 'PDBAAS_CDB_PLAN', profile=> 'X20', shares=> 2, utilization_limit=> 20, memory_limit=> 20); PDBs sets its performance profile alter lockdown profile &&prof_name disable statement=('alter SYSTEM') clause=('set') option=('db_performance_profile') value=('x20'); Page 34

35 Resource Manager PDB memory parameters Fixed minimum and maximum size at PDB level > Only if you use ASMM for CDB, not AMM PGA_AGGREGATE_TARGET > Soft limit for PGA tunable size (workarea, goes to TEMP when reached) PGA_AGGREGATE_LIMIT > Hard limit for PGA. Aborts calls or session when limit is reached SGA_MIN_SIZE > Minimum SGA size for the PDB SGA_TARGET > Maximum SGA size for the PDB DB_CACHE_SIZE, SHARED_POOL_SIZE > Minimums at PDB levels Page 35

36 Resource Manager PDB I/O and CPU parameters SQL> select * from v$parameter where name like 'max ' or name='cpu_count'; NAME DESCRIPTION ISPDB max_iops MAX IO per second TRUE max_mbps MAX MB per second TRUE cpu_count number of CPUs for this instance TRUE Throttles I/O done to PDB datafile (non-exadata only) > Wait event "I/O rate limit" > At CDB level they act as a default for all PDBs CPU_COUNT > Instance caging at PDB level: sets maximum threads > Replaces UTILIZATION_LIMIT for CPU Page 36

37 Agenda 1. DevOps 2. Common and local users 3. Lockdown profiles and PDB isolation 4. Resource manager and PDB parameters 5. Conclusion Page 37

38 12c Multitenant How to learn it? Authors > Anton Els > Vít Špinka > Franck Pachot Reviewers > Deiby Gómez > Arup Nanda > Mike Donovan When? > Pre-order now on Amazon > Delivered 2 weeks after 12.2 Page 38

39 12c Multitenant Core Message Agility is not only fast and automated provisioning > You must give more privileges to avoid roundtrips between Dev and Ops > But you must establish detailed rules to control and isolate what Dev can do Lockdown options and features, control resource usage > In addition to fast provisioning: > Consolidate safely and keep agility > Provide only options/features required Any questions? Please do ask. Page 39

40 Let s meet at booth 242

SE2 goes Enterprise. Hidden Treasures in Oracle Dr. Thomas Petrik DOAG Konferenz, November 2017, Nürnberg

SE2 goes Enterprise. Hidden Treasures in Oracle Dr. Thomas Petrik DOAG Konferenz, November 2017, Nürnberg SE2 goes Enterprise Hidden Treasures in Oracle 12.2 Dr. Thomas Petrik DOAG Konferenz, November 2017, Nürnberg Oracle Container Architecture 2 Single-Tenant is the Default Oracle Database Upgrade Guide

More information

Taming the Pluggable Database Resource Management & Lockdown Profiles in Oracle 12.2 Markus Flechtner

Taming the Pluggable Database Resource Management & Lockdown Profiles in Oracle 12.2 Markus Flechtner Taming the Pluggable Database Resource Management & Lockdown Profiles in Oracle 12.2 Markus Flechtner BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH

More information

DOAG 2013 Oracle 12c Backup & Recovery

DOAG 2013 Oracle 12c Backup & Recovery Infrastructure at your Service. DOAG 2013 Oracle 12c Backup & Recovery Infrastructure at your Service. About me David Hueber Head of Service Management Senior Consultant Mobile +41 79 963 43 68 david.hueber@dbi-services.com

More information

Incrementally Updating Backups Tips and Tricks

Incrementally Updating Backups Tips and Tricks Infrastructure at your Service. Incrementally Updating Backups Tips and Tricks Oracle 12.1.0.2 - Linux x86 64bit About me Infrastructure at your Service. William Sescu Consultant +41 78 674 12 90 william.sescu@dbi-services.com

More information

RMOUG Training Days 2018

RMOUG Training Days 2018 RMOUG Training Days 2018 Pini Dibask Product Manager for Database Tools February 22 nd, 2018 Winning Performance Challenges in Oracle Multitenant About the Speaker Pini Dibask, Product Manager for Database

More information

Agenda. Oracle 12.2 New features Multi-Tenancy. Naming Standard. Naming Standard cont. Create Pluggable Database / Cloning.

Agenda. Oracle 12.2 New features Multi-Tenancy. Naming Standard. Naming Standard cont. Create Pluggable Database / Cloning. Agenda Overview Oracle 12.2 New features Multi-Tenancy Naming Standard Create Pluggable database / Cloning Create / start services for specific PDBs Backup / Restore Pluggable Database Flashback DataGuard

More information

Databases Clone using ACFS. Infrastructure at your Service.

Databases Clone using ACFS. Infrastructure at your Service. Infrastructure at your Service. About me Infrastructure at your Service. David Hueber COO Principal Consultant +41 79 963 43 68 david.hueber[at]dbi-services.com Page 2 Who we are dbi services Experts At

More information

Oracle Resource Manager. An underrated feature?

Oracle Resource Manager. An underrated feature? Oracle Resource Manager An underrated feature? Peter Fritz OCA, OCP, OCE, OCM Oracle database specialist since 1993 24 years experience with Oracle database high end consulting and troubleshooting Facts

More information

CC13c LifeCycle Management. Infrastructure at your Service.

CC13c LifeCycle Management. Infrastructure at your Service. CC13c LifeCycle Management Infrastructure at your Service. About me Infrastructure at your Service. Wisson Delivery Manager Principal Consultant +41 79 819 25 98 gerard.wisson [ at ] dbi-services.com Page

More information

Consolidate and Prepare for Cloud Efficiencies Oracle Database 12c Oracle Multitenant Option

Consolidate and Prepare for Cloud Efficiencies Oracle Database 12c Oracle Multitenant Option Consolidate and Prepare for Cloud Efficiencies Oracle Database 12c Oracle Multitenant Option Eric Rudie Master Principal Sales Consultant Oracle Public Sector 27 September 2016 Safe Harbor Statement The

More information

Exploring Oracle Database 12c Multitenant Best Practices for your Cloud

Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich Oracle ACE & OCP Ami@DBAces.com Oracle ACE About Me Oracle Certified Professional DBA (OCP) Founder and CEO, DBAces

More information

Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich

Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich Exploring Oracle Database 12c Multitenant Best Practices for your Cloud Ami Aharonovich Oracle ACE & OCP Ami@DBAces.com Oracle ACE About Me Oracle Certified Professional DBA (OCP) Founder and CEO, DBAces

More information

Multitenant Databases. Arup Nanda Longtime Oracle DBA

Multitenant Databases. Arup Nanda Longtime Oracle DBA Multitenant Databases Arup Nanda Longtime Oracle DBA One App: One DB User SIEBEL User SIEBEL User SIEBEL 2 Database User Issue Application 1 Application 2 Application 3 Application 1 Application 2 Application

More information

Managing Oracle Database in Oracle Database Exadata Express Cloud Service. Ing. Rita Nuñez

Managing Oracle Database in Oracle Database Exadata Express Cloud Service. Ing. Rita Nuñez Managing Oracle Database in Oracle Database Exadata Express Cloud Service Ing. Rita Nuñez Systems Engineer Oracle DBA CEO of Tecnix Solutions Oracle University Instructor Coordinator Database & RAC AROUG

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

Infrastructure Consolidation with OCI

Infrastructure Consolidation with OCI Infrastructure Consolidation with OCI Who we are Experts At Your Service Over 60 specialists in IT infrastructure Certified, experienced, passionate Based In Switzerland 100% self-financed Swiss company

More information

Infrastructure at your Service. In-Memory-Pläne für den 12.2-Optimizer: Teuer oder billig?

Infrastructure at your Service. In-Memory-Pläne für den 12.2-Optimizer: Teuer oder billig? Infrastructure at your Service. In-Memory-Pläne für den 12.2-Optimizer: Teuer oder billig? About me Infrastructure at your Service. Clemens Bleile Senior Consultant Oracle Certified Professional DB 11g,

More information

Infrastructure at your Service. DOAG Webinar. ODA 12c new features. ODA 12c new features

Infrastructure at your Service. DOAG Webinar. ODA 12c new features. ODA 12c new features Infrastructure at your Service. DOAG Webinar Infrastructure at your Service. About us David Hueber COO Principal Consultant Mobile +41 79 963 43 68 david-.hueber@dbi-services.com www.dbi-services.com Page

More information

Big Data analytics in insurance

Big Data analytics in insurance Big Data analytics in insurance Who we are Experts At Your Service > Over 50 specialists in IT infrastructure > Certified, experienced, passionate Based In Switzerland > 100% self-financed Swiss company

More information

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle Database 12c: Advanced Administration. Question Question 60

Vendor: Oracle. Exam Code: 1Z Exam Name: Oracle Database 12c: Advanced Administration. Question Question 60 Vendor: Oracle Exam Code: 1Z0-063 Exam Name: Oracle Database 12c: Advanced Administration Question 31 -- Question 60 Visit PassLeader and Download Full Version 1Z0-063 Exam Dumps QUESTION 31 You have a

More information

The Speaker. Alain Fuhrer, born in Bachelor in computer science. Working with Oracle databases for about 12 years now

The Speaker. Alain Fuhrer, born in Bachelor in computer science. Working with Oracle databases for about 12 years now The Speaker Alain Fuhrer, born in 1986 Bachelor in computer science Working with Oracle databases for about 12 years now Head IT Databases at Swiss Mobiliar Insurance REPORTS ANALYTICS AUF ON OLTP DATEN

More information

Moving Databases to Oracle Cloud: Performance Best Practices

Moving Databases to Oracle Cloud: Performance Best Practices Moving Databases to Oracle Cloud: Performance Best Practices Kurt Engeleiter Product Manager Oracle Safe Harbor Statement The following is intended to outline our general product direction. It is intended

More information

Oracle 1Z0-497 Exam Questions and Answers (PDF) Oracle 1Z0-497 Exam Questions 1Z0-497 BrainDumps

Oracle 1Z0-497 Exam Questions and Answers (PDF) Oracle 1Z0-497 Exam Questions 1Z0-497 BrainDumps Oracle 1Z0-497 Dumps with Valid 1Z0-497 Exam Questions PDF [2018] The Oracle 1Z0-497 Oracle Database 12c Essentials exam is an ultimate source for professionals to retain their credentials dynamic. And

More information

Securing Oracle 12 Multitenant Pluggable Databases

Securing Oracle 12 Multitenant Pluggable Databases Securing Oracle 12 Multitenant Pluggable Databases January 19, 2016 Michael Miller Chief Security Officer Integrigy Corporation Phil Reimann Director of Business Development Integrigy Corporation About

More information

Infrastructure at your Service. Oracle over Docker. Oracle over Docker

Infrastructure at your Service. Oracle over Docker. Oracle over Docker Infrastructure at your Service. Infrastructure at your Service. About me David Hueber COO Principal Consultant Mobile +41 79 963 43 68 david-.hueber@dbi-services.com www.dbi-services.com Page 2 18.11.2015

More information

Oracle Database Server 12c Pros and Cons

Oracle Database Server 12c Pros and Cons Oracle Database Server 12c Pros and Cons Hans Forbrich Forbrich Consulting Ltd Based in Alberta, Canada Fact Oracle DB 12c is the largest architectural change since Oracle8i Fact Oracle documentation

More information

Application Containers an Introduction

Application Containers an Introduction Application Containers an Introduction Oracle Database 12c Release 2 Multitenancy for Applications Markus Flechtner @markusdba doag2017 Our company. Trivadis is a market leader in IT consulting, system

More information

Oracle Database 12c Multitenant Administration Scenarios Presented to UPNYOUG June 10, 2016 Kevin Gilpin, Advizex

Oracle Database 12c Multitenant Administration Scenarios Presented to UPNYOUG June 10, 2016 Kevin Gilpin, Advizex Oracle Database 12c Multitenant Administration Scenarios Presented to UPNYOUG June 10, 2016 Kevin Gilpin, Advizex kgilpin@advizex.com Agenda Brief Description and Justification of Multitenant CDB/PDB Creation

More information

Application Containers an Introduction

Application Containers an Introduction Application Containers an Introduction Oracle Database 12c Release 2 - Multitenancy for Applications Markus Flechtner BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN

More information

Cloud Consolidation with Oracle (RAC) How much is too much?

Cloud Consolidation with Oracle (RAC) How much is too much? 1 Copyright 11, Oracle and/or its affiliates All rights reserved Cloud Consolidation with Oracle (RAC) How much is too much? Markus Michalewicz Senior Principal Product Manager Oracle RAC, Oracle America

More information

12.1 Multitenancy in real life

12.1 Multitenancy in real life 12.1 Multitenancy in real life 2017 HOUG szakmai nap Jozsef Horvath Budapest, 2017-11-08 Disclaimer This presentation: Does not intend to judge Oracle Multitenancy Does not intent to judge Oracle Corporation

More information

Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)?

Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)? Volume: 176 Questions Question No : 1 Which three statements are true regarding the use of the Database Migration Assistant for Unicode (DMU)? A. A DBA can check specific tables with the DMU B. The database

More information

Application Containers an Introduction

Application Containers an Introduction Application Containers an Introduction Oracle Database 12c Release 2 Multitenancy for Applications Markus Flechtner BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE

More information

"Charting the Course... Oracle Database 12c: Architecture & Internals. Course Summary

Charting the Course... Oracle Database 12c: Architecture & Internals. Course Summary Course Summary Description This is a core curriculum course applicable to most learning paths within the Oracle course series. We begin with a discussion of the broad systems infrastructure where one finds

More information

ORACLE 12C PLUGGABLE DATABASE FEATURE INSIGHTS

ORACLE 12C PLUGGABLE DATABASE FEATURE INSIGHTS ORACLE 12C PLUGGABLE DATABASE FEATURE INSIGHTS Kirill Loifman, 21/02/2013 Oracle Certified Professional DBA email: loifmkir@gmail.com www: dadbm.com Twitter: @loifmkir ORACLE 12C PLUGGABLE DATABASE (PDB)

More information

Oracle Multitenant What s new in Oracle Database 12c Release ?

Oracle Multitenant What s new in Oracle Database 12c Release ? Oracle Multitenant What s new in Oracle Database 12c Release 12.1.0.2? Saurabh K. Gupta Principal Technologist, Database Product Management Who am I? Principal Technologist, Database Product Management

More information

Tuning slow queries after an upgrade

Tuning slow queries after an upgrade Tuning slow queries after an upgrade Who we are Experts At Your Service > Over 50 specialists in IT infrastructure > Certified, experienced, passionate Based In Switzerland > 100% self-financed Swiss company

More information

Blink and You ll Miss It: Migrating, Cloning and Recovering Oracle 12c Databases At Warp Speed

Blink and You ll Miss It: Migrating, Cloning and Recovering Oracle 12c Databases At Warp Speed Blink and You ll Miss It: Migrating, Cloning and Recovering Oracle 12c Databases At Warp Speed Jim Czuprynski Zero Defect Computing, Inc. 1 My Credentials 30+ years of database-centric IT experience Oracle

More information

Oracle Database 12c: New Features For Administrators

Oracle Database 12c: New Features For Administrators This is a multi-volume textbook kit that covers the major new features of the Oracle 12c database of interest to database and other enterprise administrators. General Description The single most important

More information

Oracle Database 12c R2: New Features for Administrators Part 1 Ed 1

Oracle Database 12c R2: New Features for Administrators Part 1 Ed 1 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 12c R2: New Features for Administrators Part 1 Ed 1 Duration: 5 Days What you will learn Throughout the lessons of the Oracle Database 12c

More information

RACifying Multitenant

RACifying Multitenant RACifying Multitenant Arup Nanda Principal Database Architect Starwood Hotels Deba Chatterjee Principal Product Manager Oracle Multitenant Agenda 1 3 4 Introduction Oracle Multitenant and RAC Basics Why

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

Administering Your Oracle Geodatabase. Amit Kesarwani Mandar Purohit

Administering Your Oracle Geodatabase. Amit Kesarwani Mandar Purohit Administering Your Oracle Geodatabase Amit Kesarwani Mandar Purohit Intended Audience Desktop Web Device You are.. - A geodatabase administrator - An accidental DBA - A deliberate DBA Portal Portal Server

More information

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

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

More information

Behind the scenes of Oracle MulCtenant

Behind the scenes of Oracle MulCtenant Behind the scenes of Oracle MulCtenant A new architecture for consolida2ng databases and simplifying opera2ons in the cloud Deba ChaFerjee Principal Product Manager, Oracle Database Safe Harbor Statement

More information

Difference Between Oracle Database Instance Vs

Difference Between Oracle Database Instance Vs Difference Between Oracle Database Instance Vs Schema But at a high level, executables and memory make a database instance. A key Oracle difference is that everything gets logged, even the undo information.

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

Oracle Associate User With Schema Export Full

Oracle Associate User With Schema Export Full Oracle Associate User With Schema Export Full Another way to manage user security is to assign users privileges and roles. You can grant a user unlimited access to all tablespaces of a database with one

More information

Monitoring WebLogic with WLDF

Monitoring WebLogic with WLDF Monitoring WebLogic with WLDF Infrastructure at your Service. Infrastructure at your Service. About me Gérard Wisson Delivery Manager Senior Consultant Mobile +41 79 819 25 98 Gerard.wisson@dbi-services.com

More information

Administering Your Oracle Geodatabase. Jim McAbee Mandar Purohit

Administering Your Oracle Geodatabase. Jim McAbee Mandar Purohit Administering Your Oracle Geodatabase Jim McAbee Mandar Purohit Intended Audience Desktop Web Device You are.. - A geodatabase administrator - An accidental DBA - A deliberate DBA - Not sure what DBA means

More information

1z z0-060 Upgrade to Oracle Database 12c

1z z0-060 Upgrade to Oracle Database 12c 1z0-060 Number: 1z0-060 Passing Score: 800 Time Limit: 120 min File Version: 7.1 1z0-060 Upgrade to Oracle Database 12c Exam A QUESTION 1 Your multitenant container (CDB) contains two pluggable databases

More information

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: New Features for Administrators Ed 2 NEW

Oracle Database 12c: New Features for Administrators Ed 2 NEW Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 12c: New Features for Administrators Ed 2 NEW Duration: 5 Days What you will learn In the Oracle Database 12c:

More information

Oracle Database 12c R1: New Features for Administrators Ed 2

Oracle Database 12c R1: New Features for Administrators Ed 2 Oracle Database 12c R1: New Features for Administrators Ed 2 Duration 5 Days What you will learn In the Oracle Database 12c: New Features for Administrators Ed 2 course, you ll learn about the new and

More information

Create a DBaaS Catalog in an Hour with a PaaS-Ready Infrastructure

Create a DBaaS Catalog in an Hour with a PaaS-Ready Infrastructure Create a DBaaS Catalog in an Hour with a PaaS-Ready Infrastructure Ken Kutzer, Ramin Maozeni Systems Engineering Systems Division September 30, 2014 CON5748 Moscone South 301 Safe Harbor Statement The

More information

Implement SAML 2.0 SSO in WLS using IDM Federation Services

Implement SAML 2.0 SSO in WLS using IDM Federation Services Implement SAML 2.0 SSO in WLS using IDM Federation Services Who we are Experts At Your Service > Over 60 specialists in IT infrastructure > Certified, experienced, passionate Based In Switzerland > 100%

More information

Large-Scale Patch Automation for the Cloud-Generation DBAs

Large-Scale Patch Automation for the Cloud-Generation DBAs Large-Scale Patch Automation for the Cloud-Generation DBAs Pankaj Chandiramani Principal Product Manager, Oracle Sean Connolly Software Development Director, Oracle Steven Meredith EM Service Manager,

More information

Enterprise Manager Snap Clone Snapshot your data without snapping your storage David Wolf Director of Product Management

Enterprise Manager Snap Clone Snapshot your data without snapping your storage David Wolf Director of Product Management Enterprise Manager Snap Clone Snapshot your data without snapping your storage David Wolf Director of Product Management Fabio Batista Sales Consultant June 25, 2015 Copyright 2015, Oracle and/or its affiliates.

More information

Alain Fuhrer Oracle Database Administrator Swiss Mobiliar Insurance

Alain Fuhrer Oracle Database Administrator Swiss Mobiliar Insurance to Oracle Database 12.2 Real World Cases Mike Dietrich Master Product Manager Database s & Migrations Oracle Corporation Alain Fuhrer Oracle Database Administrator Swiss Mobiliar Insurance Presented with

More information

IS4510 Compiled by: Zafar Iqbal Khan Lecturer, Dept of IS, CCES, Salaman bin Abdul Aziz University

IS4510 Compiled by: Zafar Iqbal Khan Lecturer, Dept of IS, CCES, Salaman bin Abdul Aziz University Database Administration Lab Manual IS4510 Compiled by: Zafar Iqbal Khan Lecturer, Dept of IS, CCES, Salaman bin Abdul Aziz University Lab Session - 1 Objective:- To be aware of various Oracle Database

More information

TestsDumps. Latest Test Dumps for IT Exam Certification

TestsDumps.  Latest Test Dumps for IT Exam Certification TestsDumps http://www.testsdumps.com Latest Test Dumps for IT Exam Certification Exam : 1z1-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Vendor : Oracle Version : DEMO 1 NO.1 Examine

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 Way To Grant Schema Privileges All Tables

Oracle Way To Grant Schema Privileges All Tables Oracle Way To Grant Schema Privileges All Tables Here in this article we will discuss on how to grant access to all tables in a schema in oracle database as well as we will focus on schema owners. From

More information

Oracle Database 12c for SAP

Oracle Database 12c for SAP Oracle Database 12c for SAP Oracle Multitenant Christoph Kersten Oracle/SAP Global Technology Center Walldorf, Germany November 2016 Safe Harbor Statement The following is intended to outline our general

More information

Oracle Database 12c Release 2

Oracle Database 12c Release 2 Oracle Database 12c Release 2 New Features (OVERVIEW) Rhoda Sarmiento-Pereira Oracle Support Safe Harbor Statement The following is intended to outline our general product direction. It is intended for

More information

Oracle Database 18c and Autonomous Database

Oracle Database 18c and Autonomous Database Oracle Database 18c and Autonomous Database Maria Colgan Oracle Database Product Management March 2018 @SQLMaria Safe Harbor Statement The following is intended to outline our general product direction.

More information

DumpsKing. Latest exam dumps & reliable dumps VCE & valid certification king

DumpsKing.   Latest exam dumps & reliable dumps VCE & valid certification king DumpsKing http://www.dumpsking.com Latest exam dumps & reliable dumps VCE & valid certification king Exam : 1z1-062 Title : Oracle Database 12c: Installation and Administration Vendor : Oracle Version

More information

Oracle12c Release 1 & 2 New Features for Administrators (5 Days)

Oracle12c Release 1 & 2 New Features for Administrators (5 Days) www.peaklearningllc.com Oracle12c Release 1 & 2 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 12c Features You Should Know. Arup Nanda Longtime Oracle DBA

Oracle 12c Features You Should Know. Arup Nanda Longtime Oracle DBA Oracle 12c Features You Should Know Arup Nanda Longtime Oracle DBA Agenda 12 Features Key useful features; not all. Not necessarily well advertised Some demo 2 1. Pluggable Database Application 1 Application

More information

Exam Questions 1Z0-062

Exam Questions 1Z0-062 Exam Questions 1Z0-062 Oracle Database 12c: Installation and Administration https://www.2passeasy.com/dumps/1z0-062/ 1. You are required to migrate your 11.2.0.3 database as a pluggable database (PDB)

More information

Oracle Mul*tenant. The Bea'ng Heart of Database as a Service. Debaditya Cha9erjee Senior Principal Product Manager Oracle Database, Product Management

Oracle Mul*tenant. The Bea'ng Heart of Database as a Service. Debaditya Cha9erjee Senior Principal Product Manager Oracle Database, Product Management Oracle Mul*tenant The Bea'ng Heart of Database as a Service Debaditya Cha9erjee Senior Principal Product Manager Oracle Database, Product Management Safe Harbor Statement The following is intended to outline

More information

OpenWorld 2018 SQL Tuning Tips for Cloud Administrators

OpenWorld 2018 SQL Tuning Tips for Cloud Administrators OpenWorld 2018 SQL Tuning Tips for Cloud Administrators GP (Prabhaker Gongloor) Senior Director of Product Management Bjorn Bolltoft Dr. Khaled Yagoub Systems and DB Manageability Development Oracle Corporation

More information

A. connecting to the target database and a recovery catalog to execute the duplicate command

A. connecting to the target database and a recovery catalog to execute the duplicate command Volume: 175 Questions Question No : 1 Which two are prerequisites for creating a backup-based duplicate database? A. connecting to the target database and a recovery catalog to execute the duplicate command

More information

Oracle Database 12c. Boeblingen Bootcamp February 2014 SIG Washington DC April 2014

Oracle Database 12c. Boeblingen Bootcamp February 2014 SIG Washington DC April 2014 Reduced Upgrade Memory & Migrate Footprint Oracle Database 12c Sandra Sandra Skehin Skehin Boeblingen Bootcamp February 2014 SIG Washington DC April 2014 Safe Harbor Statement The following is intended

More information

Oracle Database 12c Anger Management for DBAs. Hans Forbrich Forbrich Consulting Ltd.

Oracle Database 12c Anger Management for DBAs. Hans Forbrich Forbrich Consulting Ltd. Oracle Database 12c Anger Management for DBAs Hans Forbrich Forbrich Consulting Ltd. Who am I Hans Forbrich Principal consultant, Forbrich Consulting Ltd. Programming since 1969 Oracle developer and DBA

More information

Oracle Database 12c Administration I

Oracle Database 12c Administration I Course Overview In this course, students will focus on configuration on supported systems. Also how the database fits in with other systems. Who Should Attend View Course Dates & Register Today This is

More information

Oralogic Education Systems

Oralogic Education Systems Oralogic Education Systems Next Generation IT Education Systems Introduction: In the Oracle Database 12c: Performance Management and Tuning course, learn about the performance analysis and tuning tasks

More information

Authentication and Authorization in Oracle 12.2 based Systems. Dr. Günter Unbescheid Database Consult GmbH, Jachenau

Authentication and Authorization in Oracle 12.2 based Systems. Dr. Günter Unbescheid Database Consult GmbH, Jachenau Authentication and Authorization in Oracle 12.2 based Systems Dr. Günter Unbescheid Database Consult GmbH, Jachenau Database Consult GmbH Founded in 1996 Specialized in ORACLE-based Systems Focus Areas

More information

Copyright 2013, Oracle and/or its affiliates. All rights reserved.

Copyright 2013, Oracle and/or its affiliates. All rights reserved. 1 Upgrade to Oracle Database 12c 何革新 Gexin.he@oracle.com The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

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

Quo Vadis SQLTXPLAIN

Quo Vadis SQLTXPLAIN Quo Vadis SQLTXPLAIN Who we are Experts At Your Service > Over 50 specialists in IT infrastructure > Certified, experienced, passionate Based In Switzerland > 100% self-financed Swiss company > Over CHF8

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12

Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 Managing Oracle Database 12c with Oracle Enterprise Manager 12c Martin

More information

Lab4 - Managing Database Storage Structures Using Enterprise Manager Database Express

Lab4 - Managing Database Storage Structures Using Enterprise Manager Database Express Lab4 - Managing Database Storage Structures Using Enterprise Manager Database Express Contents Managing Database Storage Structures Using Enterprise Manager Database Express... 1 Overview... 2 Configuring

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

Default Password For Hr Schema In Oracle 10g

Default Password For Hr Schema In Oracle 10g Default Password For Hr Schema In Oracle 10g The Oracle HR Schema contains Human Resources data for a fictional company. The tables A database user is identified by a unique user name and password combination.

More information

Oracle DBA Course Content

Oracle DBA Course Content 1 Oracle DBA Course Content Database Architecture: Introduction to Instance and Database How user connects to database How SQL statement process in the database Oracle data dictionary and its role Memory

More information

Feature of our Oracle Databases - Why should we migrate to Multitenant architecture

Feature of our Oracle Databases - Why should we migrate to Multitenant architecture Feature of our Oracle Databases - Why should we migrate to Multitenant architecture Radosław Cisz rcisz@dataconsulting.pl Multitenant New Terminology Basic terminology connected with multitenant architecture

More information

Consolidate with Oracle Exadata

Consolidate with Oracle Exadata Consolidate with Oracle Exadata Manage Resources and Availability - CON7770 Sue K. Lee, Director of Development René Kundersma, Consulting Member of Tech. Staff Oracle Server Technologies Oct 1, 2014 Safe

More information

Dan Hotka Author/Instructor Oracle Ace Director.

Dan Hotka Author/Instructor Oracle Ace Director. Dan Hotka Author/Instructor Oracle Ace Director , LLC (c) www.danhotka.com LLC. Any reproduction or copying of this manual without the express written consent of www.danhotka.com LLC is expressly prohibited.

More information

Oracle Database 12c: Performance Management and Tuning

Oracle Database 12c: Performance Management and Tuning Oracle University Contact Us: +43 (0)1 33 777 401 Oracle Database 12c: Performance Management and Tuning Duration: 5 Days What you will learn In the Oracle Database 12c: Performance Management and Tuning

More information

1z0-062.exam.215q 1z0-062 Oracle Database 12c: Installation and Administration

1z0-062.exam.215q 1z0-062 Oracle Database 12c: Installation and Administration 1z0-062.exam.215q Number: 1z0-062 Passing Score: 800 Time Limit: 120 min 1z0-062 Oracle Database 12c: Installation and Administration Exam A QUESTION 1 You notice a high number of waits for the db file

More information

Oracle Database 12c. The Best Oracle Database 12c Tuning Features for Developers and DBAs. Presented by: Alex Zaballa, Oracle DBA

Oracle Database 12c. The Best Oracle Database 12c Tuning Features for Developers and DBAs. Presented by: Alex Zaballa, Oracle DBA Oracle Database 12c The Best Oracle Database 12c Tuning Features for Developers and DBAs Presented by: Alex Zaballa, Oracle DBA Alex Zaballa http://alexzaballa.blogspot.com/ 147 and counting @alexzaballa

More information

EZY Intellect Pte. Ltd., #1 Changi North Street 1, Singapore

EZY Intellect Pte. Ltd., #1 Changi North Street 1, Singapore Oracle Database 12c: Performance Management and Tuning NEW Duration: 5 Days What you will learn In the Oracle Database 12c: Performance Management and Tuning course, learn about the performance analysis

More information

Tablespace Usage By Schema In Oracle 11g Query To Check Temp

Tablespace Usage By Schema In Oracle 11g Query To Check Temp Tablespace Usage By Schema In Oracle 11g Query To Check Temp The APPS schema has access to the complete Oracle E-Business Suite data model. E-Business Suite Release 12.2 requires an Oracle database block

More information

Oracle 11g AMM Inderpal S. Johal. Inderpal S. Johal, Data Softech Inc.

Oracle 11g AMM  Inderpal S. Johal. Inderpal S. Johal, Data Softech Inc. ORACLE 11G AUTOMATIC MEMORY MANAGEMENT Inderpal S. Johal, Data Softech Inc. INTRODUCTION Oracle has introduced Automatic Shared Memory Management in Oracle 10g and thus allows automatic tuning of five

More information

Oracle Database 12c: RAC Administration Ed 1

Oracle Database 12c: RAC Administration Ed 1 Oracle University Contact Us: +7 (495) 641-14-00 Oracle Database 12c: RAC Administration Ed 1 Duration: 4 Days What you will learn This Oracle Database 12c: RAC Administration training will teach you about

More information

IT115: Oracle Database 12c Administration I

IT115: Oracle Database 12c Administration I IT115: Oracle Database 12c Administration I IT115 Rev.001 CMCT COURSE OUTLINE Page 1 of 12 Training Description: In this training, participants will focus on configuration on supported systems. Also, how

More information

DBAs can use Oracle Application Express? Why?

DBAs can use Oracle Application Express? Why? DBAs can use Oracle Application Express? Why? 20. Jubilarna HROUG Konferencija October 15, 2015 Joel R. Kallman Director, Software Development Oracle Application Express, Server Technologies Division Copyright

More information

EMC Storage Resource Management Suite

EMC Storage Resource Management Suite EMC Storage Resource Management Suite Optimizing storage today and in the software defined datacenter of tomorrow EMC Advanced Software Division 1 New Applications/ Technologies New Consumption Models

More information