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

Size: px
Start display at page:

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

Transcription

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

2 Oracle Container Architecture 2

3 Single-Tenant is the Default Oracle Database Upgrade Guide 12.2 SE MAX_PDBS = 4098 Oracle Database Licensing Information User Manual

4 CDB Delegation & Separation from EE to SE2 user management space management application support flashback PDB application DBA application DBA application DBA app1 app2.. container DBA (SYS) RAC Dataguard RMAN DB-software server / OS installation / setup HA / DR backup / restore workload management DB-tuning monitoring 4

5 CDB CDB CDB Delegation & Separation from EE to SE2 application DBA application DBA application DBA app1 app2.. container DBA OS-admin RAC RMAN RAC RMAN RAC RMAN DB-software server / OS 5

6 CDB CDB CDB Delegation & Separation from EE to SE2 application DBA application DBA application DBA app1 app2.. container DBA OS-admin RAC RMAN RAC RMAN RAC RMAN DB software OS container (LXC, Docker) VM DB software OS container (LXC, Docker) DB software VM physical server 6

7 Excursus: Isolation with OS-Containers 7

8 OS Container light weight virtualization containers running on the same kernel containers are separated, fully equipped machines VM admin delegates activities self-service (Dev / Test) resource control rapid provisining clone historization copy-on-write (COW) snapshots in combination with BTRFS CPU pinning memory limits / shares 8

9 LXC und Oracle Starting with Oracle Database 12c Release 1 ( ), Linux Containers are supported on Oracle Linux 7 and Oracle Linux 6 and certified on Linux x86-64 systems. Oracle 12c Release Notes MOS Note not valid any more with OEL 7.3 / Oracle

10 Building Clone Histories 10

11 Creating Hot Clones in SE2 PDB1 CDB1 PDB2 CDB2 PDB3 CDB3 PDB4 CDB4 CDB5 local undo source CDB must be in archivelog mode target PDB may be opend R/O or R/W SQL> create database link clone_link connect to pdbadmin identified by using 'PDB1'; Database link created. SQL> create pluggable database PDB2 from Pluggable database created. SQL> alter pluggable database PDB2 open; Pluggable database altered. CDB2 11

12 Creating Snapshot Clones nearly no additional (initial) storage needed (COW) Linux Container (LXC) crash consistent online clone as COW snapshot using BTRFS OS PDB snapshots Oracle VM create a crash consistent clone DB OS 12

13 LXC & COW snapshots clone your CDBs within seconds lxc-clone -s <source> <target> creates a COW-snapshot clone source container must be stopped btrfs subvolume snapshot <source> <target> creates an online snapshot clone Oracle database within the clone comes up with a crash recovery # lxc-ls ora12c01 ora12c02 # mkdir /container/ora12c03 # btrfs sub sn /container/ora12c01/rootfs /container/ora12c03/rootfs # btrfs sub list /container ID 265 gen top level 5 path ora12c01/rootfs ID 266 gen top level 265 path ora12c01/rootfs/var/lib/machines ID 304 gen top level 5 path ora12c01/snaps/snap0/rootfs ID 306 gen top level 5 path ora12c02/rootfs ID 308 gen top level 5 path ora12c03/rootfs # cp /container/ora12c01/config /container/ora12c03 # vi /container/ora12c03/config # lxc-start n ora12c03 lxc.network.ipv4 = /24 lxc.rootfs = /container/ora12c03/rootfs lxc.utsname = ora12c03 13

14 Creating PDB Snapshots master image PDB1 PDB4 SQL> alter pluggable database pdb1 close immediate; Pluggable database altered. CDB1 SQL> alter pluggable database pdb1 open read only; CDB1 Pluggable database altered. SQL> create database link clone_link connect to pdbadmin identified by using 'pdb1'; CDB2 PDB2 PDB3 PDB4 Database link created. CDB2 CDB3 CDB4 CDB5 SQL> create pluggable database pdb2 from snapshot copy; Pluggable database created. Elapsed: 00:00:00.92 SQL> alter pluggable database pdb2 open; Pluggable database altered. # ls -lhs o1_mf_sh_c4drdcjo_.dbf 32K -rw-r oracle oinstall 18G Nov 13 23:17 o1_mf_sh_c4drdcjo_.dbf allocated 14

15 PDB Snapshot Clones Prerequisites clonedb = true since set clonedb_dir (new in 12.2) destination for bitmap file default: $ORACLE_HOME/dbs is used shared destination for RAC any local filesystem may be used ext4, xfs, btrfs, etc. not on ext3 not on ASM clonedb = false only via dnfs and on ACFS License considerations EE and Multitenancy Option needed for creating snapshot PDBs within the same CDB storage snapshots on ACFS need EE Caveats source PDB must remain read only source PDB must not be dropped no error message! snapshot PDBs cannot be unplugged Oracle Database 12c Release ( ) New Features 15

16 Finally: a Dataguard for SE2 16

17 Refreshable PDB Prerequisites source CDB must be in archivelog mode local undo must be used set remote_recovery_file_dest otherwise "foreign" archivelogs go into $ORACLE_HOME/dbs create DB-link from target CDB to source PDB same privileges as for remote cloning client failover / listener config: use same methods as for DG create pluggable database pdb2 from pdb1@clone_link refresh mode manual; create pluggable database pdb2 from pdb1@clone_link refresh mode every 1 minutes; alter pluggable database pdb2 refresh mode none; Operations works between all editions EE-EE, EE-SE2, SE2-SE2 refresh modes automatic or manual refresh is stopped when target PDB is open R/O open R/W breaks the synchronization forever BEGIN SYS.DBMS_SCHEDULER.CREATE_JOB ( job_name => 'PDB2_ _REFRESH',start_date =>,repeat_interval => 'FREQ = MINUTELY; INTERVAL = 1',end_date => NULL,job_class => 'DEFAULT_JOB_CLASS',job_type => 'PLSQL_BLOCK',job_action => 'begin execute immediate ''alter session set container = PDB2''; execute immediate ''alter pluggable database refresh''; end;',comments => 'PDB2 refresh' ); 17

18 Refreshable PDB: Switchover PDB1 CDB1 refresh PDB2 CDB2 18

19 Refreshable PDB: Switchover PDB1 CDB1 refresh PDB2 CDB2 alter pluggable database pdb1 close immediate; alter pluggable database pdb1 open read only; alter session set container=pdb2; alter pluggable database pdb2 refresh; alter pluggable database pdb2 refresh mode none; 19

20 Refreshable PDB: Switchover PDB1 PDB2 CDB1 CDB2 alter pluggable database pdb1 close immediate; alter pluggable database pdb1 open read only; alter session set container=pdb2; alter pluggable database pdb2 refresh; alter pluggable database pdb2 refresh mode none; alter pluggable database pdb2 open; alter pluggable database pdb1 close immediate; drop pluggable database pdb1 including datafiles; 20

21 Refreshable PDB: Switchover PDB1 CDB1 refresh PDB2 CDB2 alter pluggable database pdb1 close immediate; alter pluggable database pdb1 open read only; alter session set container=pdb2; alter pluggable database pdb2 refresh; alter pluggable database pdb2 refresh mode none; alter pluggable database pdb2 open; alter pluggable database pdb1 close immediate; drop pluggable database pdb1 including datafiles; create database link clone_link using pdb2 ; create pluggable database pdb1 from pdb2@clone_link refresh mode every 1 minutes; 21

22 Refreshable PDB: Failover PDB1 CDB1 refresh PDB2 CDB2 22

23 Refreshable PDB: Failover alter session set container=pdb2; alter pluggable database pdb2 refresh mode none; alter pluggable database pdb2 refresh mode none * ERROR at line 1: ORA-17627: ORA-12514: TNS:listener does not currently know of service requested in connect descriptor ORA-17629: Cannot connect to the remote database server PDB2 CDB2 23

24 Refreshable PDB: Failover alter session set container=pdb2; alter pluggable database pdb2 refresh mode none; alter pluggable database pdb2 refresh mode none * ERROR at line 1: ORA-17627: ORA-12514: TNS:listener does not currently know of service requested in connect descriptor ORA-17629: Cannot connect to the remote database server PDB2 CDB2 alter pluggable database pdb2 open read only; exec dbms_pdb.describe('/tmp/pdb2.xml'); 24

25 Refreshable PDB: Failover alter session set container=pdb2; alter pluggable database pdb2 refresh mode none; alter pluggable database pdb2 refresh mode none * ERROR at line 1: ORA-17627: ORA-12514: TNS:listener does not currently know of service requested in connect descriptor ORA-17629: Cannot connect to the remote database server PDB2 CDB2 alter pluggable database pdb2 open read only; exec dbms_pdb.describe('/tmp/pdb2.xml'); alter pluggable database pdb2 close immediate; alter session set container=cdb$root; drop pluggable database pdb2 keep datafiles; 25

26 Refreshable PDB: Failover alter session set container=pdb2; alter pluggable database pdb2 refresh mode none; alter pluggable database pdb2 refresh mode none * ERROR at line 1: ORA-17627: ORA-12514: TNS:listener does not currently know of service requested in connect descriptor ORA-17629: Cannot connect to the remote database server PDB2 CDB2 alter pluggable database pdb2 open read only; exec dbms_pdb.describe('/tmp/pdb2.xml'); alter pluggable database pdb2 close immediate; alter session set container=cdb$root; drop pluggable database pdb2 keep datafiles; create pluggable database pdb2 using '/tmp/pdb2.xml'; alter pluggable database pdb2 open; 26

27 DR, Golden Image & Reporting Offload PDB2 CDB2 PDB2 closed DR solution automatic refresh used for switchover & failover PDB1 CDB1 PDB2 CDB2 PDB2 open R/O used for reporting golden image for further clones manual refresh 27

28 PDB Relocation 28

29 Relocation Scenario 1 listener refresh PDB1 relocate PDB2 create pluggable database pdb1 from pdb1@clone_link relocate; CDB1 CDB2 29

30 Relocation Scenario 1 listener use a shared listener or... use listener_networks or... change tns-connect CDB1 PDB1 CDB2 create pluggable database pdb1 from pdb1@clone_link relocate; alter pluggable database pdb1 open; 30

31 Relocation Scenario 2 listener refresh PDB1 relocate PDB2 create pluggable database pdb1 from pdb1@clone_link relocate availability max; CDB1 CDB2 31

32 Relocation Scenario 2 listener leaves a proxy PDB system & sysaux on both CDBs DD always in sync no change of client connects no firewall changes PDB name must be the same nearly no performance impact PDB1 CDB1 PDB1 CDB2 create pluggable database pdb1 from pdb1@clone_link relocate availability max; alter pluggable database pdb1 open; 32

33 PDB Relocation Use cases live migration scenarios VM-based live migration is often restricted due to licensing issues Hybrid Cloud scenarios move PDBs between cloud and on-premise online patching by relocating a PDB to a new CDB it is upgraded implicitly options (EE) and software patches must match! Good to know db-link goes from CDB to CDB works basically between all editions (EE / SE2) source PDB must be in archivelog mode local undo must be used relocation is only nearly live all active sessions are killed on the source uses the refreshable PDB feature in the background during relocation 33

34 The Application DBA: Separation of Duties I 34

35 The PDB-DBA should be restricted in changing PDB parameters bound to the defined directory structure on the filesystem restricted in his network communication... restricted to specific OS activities restricted in changing FGAC policies 35

36 PDB Security & Resource Isolation create pluggable database create_file_dest target destination for datafiles cannot be overruled by PDB DBA new behaviour since 12.2 path_prefix mandatory prefix for directory objects no absolute paths any more new behaviour since 12.2 storage (maxsize ) maximum disk space for the PDB Parameter Settings PDB_OS_CREDENTIAL CPU_COUNT MAX_IOPS (12.2) MAX_MBPS (12.2) DB_CACHE_SIZE minimum size SHARED_POOL_SIZE minimum size PGA_AGGREGATE_LIMIT PGA_AGGREGATE_TARGET SGA_MIN_SIZE (12.2) SGA_TARGET resource management also in single-tenant environments 36

37 Lockdown Profiles Options PARTTIONING DATABASE QUEUING STATEMENTS ALTER DATABASE ALTER PLUGGABLE DATABASE ALTER SYSTEM ALTER SESSION Feature Bundles OS_ACCESS NETWORK_ACCESS COMMON_SCHEMA_ACCESS CONNECTIONS utl_file drop_tablespace_keep_data_files file_transfer security_policies (VPD,RAS,FGA) utl_tcp utl_smtp utl_http 37

38 Lockdown Profiles create lockdown profile def_profile; alter system set pdb_lockdown = def_profile; alter lockdown profile def_profile enable option = ('PARTITIONING'); alter lockdown profile def_profile enable option all; alter lockdown profile def_profile enable option all except (' '); alter lockdown profile def_profile disable option = ('PARTITIONING'); alter lockdown profile def_profile disable option all; alter lockdown profile def_profile disable option all except (' '); alter lockdown profile def_profile enable feature = ('OS_ACCESS'); alter lockdown profile def_profile enable feature all; alter lockdown profile def_profile enable feature all except (' '); alter lockdown profile def_profile disable feature = ('OS_ACCESS'); alter lockdown profile def_profile disable feature all; alter lockdown profile def_profile disable feature all except (' '); no alter system except for 1 <= CPU_COUNT <= 4 alter lockdown profile def_profile enable statement = ('ALTER SYSTEM'); alter lockdown profile def_profile enable statement all; alter lockdown profile def_profile disable statement = ('ALTER SYSTEM'); alter lockdown profile def_profile disable statement = ('ALTER SYSTEM') clause = ('SET') OPTION = ('CPU_COUNT') minvalue = '1' maxvalue = '4'; 38

39 The Application DBA: Separation of Duties II 39

40 The PDB-DBA should manage users and tablespaces do some PDB tuning... NOT change the application structure do application monitoring NOT change the application config (common data) 40

41 CDB Application Container in EE tenant 1 tenant 2 tenant 3 APP_ROOT APP_DB1 APP_DB2 APP_DB3 Deployment deployed structures (and common data) cannot be changed by any PDB user (not even by SYS) 41

42 CDB Application Container in SE2 can do Head DBA APP_ROOT APP_DB App-DBA create additional users and TS change local data PDB performance tuning PDB monitoring PDB flashback database cannot do deployment change application structure change application common user change common data 42

43 APP1 APP1 Application Container / Install create pluggable database app_root as application container CDB$ROOT APP_ROOT 1.0 alter pluggable database application APP1 begin install '1.0'; DDL, DML, alter pluggable database application APP1 end install; APP_ROOT APP_DB 1.0 create pluggable database app_db APP_ROOT alter pluggable database application all sync; APP_DB local data local data 43

44 APP2 APP2 APP1 APP1 Application Container / Upgrade APP_ROOT APP_DB local data 1.0 local data

45 APP2 APP2 APP1 APP1 Application Container / Upgrade APP_ROOT 1.1 alter pluggable database application APP1 begin upgrade '1.0' to '1.1'; DDL, DML, APP_DB alter pluggable database application APP1 end upgrade; APP_ROOT 1.0 local data local data 45

46 APP2 APP2 APP1 APP1 Application Container / Upgrade APP_ROOT 1.1 alter pluggable database application APP1 begin upgrade '1.0' to '1.1'; DDL, DML, APP_DB 1.1 alter pluggable database application APP1 sync; APP_DB 1.0 alter pluggable database application APP1 end upgrade; APP_ROOT 1.0 local data local data 46

47 Conclusio many new features in 12.2 made for the enterprise can be used with an SE2 as well use the PDB based Dataguard for DR scenarios use snapshot technologies for rapid provisioning in test and development environments introduce separation of duties between head DBA and application DBA by applying PDB infrastructure even in SE2 47

48 ? Dr. Thomas Petrik E thomas.petrik@sphinx.at M T Sphinx IT Consulting GmbH Aspernbrückengasse Wien

12.2 Multitenant New Security Features Clarify DevOps and DBA role separation

12.2 Multitenant New Security Features Clarify DevOps and DBA role separation Infrastructure at your Service. 12.2 Clarify DevOps and DBA role separation Infrastructure at your Service. About me Franck Pachot Principal consultant Oracle Technology Leader Mobile +41 79 963 27 22

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

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

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

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

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

Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1 Oracle University Contact Us: Local: 0180 2000 526 Intl: +49 8914301200 Oracle Database 12c R2: New Features for 12c R1 Administrators Ed 1 Duration: 5 Days What you will learn The Oracle Database 12c

More information

Oracle Database 12c R2: Administration Workshop Ed 3 NEW

Oracle Database 12c R2: Administration Workshop Ed 3 NEW Oracle Database 12c R2: Administration Workshop Ed 3 NEW Duration: 5 Days What you will learn The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with a firm foundation

More information

Oracle Database 12c R2: Administration Workshop Ed 3

Oracle Database 12c R2: Administration Workshop Ed 3 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 12c R2: Administration Workshop Ed 3 Duration: 5 Days What you will learn The Oracle Database 12c R2: Administration Workshop Ed 3 course

More information

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE ORACLE 11gR2 DBA by Mr. Akal Singh ( Oracle Certified Master ) INTRODUCTION to ORACLE COURSE CONTENT Exploring the Oracle Database Architecture List the major architectural components of Oracle Database

More information

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

Oracle Database 12c R2: Managing Multitenant Architecture Ed 2

Oracle Database 12c R2: Managing Multitenant Architecture Ed 2 Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Oracle Database 12c R2: Managing Multitenant Architecture Ed 2 Duration: 4 Days What you will learn During the Oracle Database

More information

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

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 - Oracle Database 12c R2: Administration Workshop Ed 3

Oracle - Oracle Database 12c R2: Administration Workshop Ed 3 Oracle - Oracle Database 12c R2: Administration Workshop Ed 3 Code: Lengt h: URL: 12cDB-A 5 days View Online The Oracle Database 12c R2: Administration Workshop Ed 3 course is designed to provide you with

More information

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

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

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

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

Question No: 1 Which two statements are true for Data Guard environments with multi-tenant databases?

Question No: 1 Which two statements are true for Data Guard environments with multi-tenant databases? Volume: 92 Questions Question No: 1 Which two statements are true for Data Guard environments with multi-tenant databases? A. DB_UNIQUE_NAME must be specified differently for each pluggable database within

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

Oracle Database Cloud for Oracle DBAs Ed 3

Oracle Database Cloud for Oracle DBAs Ed 3 Oracle University Contact Us: 800-260-690 Oracle Database Cloud for Oracle DBAs Ed 3 Duration: 3 Days What you will learn Note: No hands-on lab environment for the Training On Demand course format This

More information

Oracle Database 12c: OCM Exam Preparation Workshop Ed 1

Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Duration: 5 Days What you will learn The Oracle Database 12c: OCM Exam Preparation

More information

ORACLE DBA I. Exploring Oracle Database Architecture

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

More information

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Description The SQL Fundamentals exam is intended to verify that certification candidates have a basic understanding of the SQL language. It covers the

More information

"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

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

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

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

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

Oracle Database 12C: Advanced Administration - 1Z0-063

Oracle Database 12C: Advanced Administration - 1Z0-063 Oracle Database 12C: Advanced Administration - 1Z0-063 Backup and Recovery Explain Oracle backup and recovery solutions o Describe types of database failures o Describe the tools available for backup and

More information

B. Enable secure access to the DBaaS instance VM and database instance from remote hosts by using SSH.

B. Enable secure access to the DBaaS instance VM and database instance from remote hosts by using SSH. Volume: 70 Questions Question No: 1 You want all your colleagues to be able to access the compute node associated with an Oracle Database Cloud - Database as a Service (DBaaS) instance. You want them to

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

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

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

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

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 Database 12c: New Features for Administrators NEW

Oracle Database 12c: New Features for Administrators NEW Oracle Database 12c: New Features for Administrators NEW Duration: 5 Days Course Objectives Create, manage and monitor multitenant container database and pluggable databases Manage datafile online operations,

More information

Oracle - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1

Oracle - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Oracle - Oracle Database 12c: OCM Exam Preparation Workshop Ed 1 Code: Lengt h: URL: D94327GC10 5 days View Online The Oracle Database 12c: OCM Exam Preparation Workshop is designed for those candidates

More information

Oracle Database 11g Data Guard

Oracle Database 11g Data Guard Oracle Database 11g Data Guard Overview This course introduces the delegate to the main architectural concepts of Data Guard. Delegates will learn how to use Oracle Data Guard to protect Oracle Databases

More information

Oracle Database 12c: New Features for Administrators Duration: 5 Days

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

More information

Oracle Database 12c R2: RAC Administration Ed 2

Oracle Database 12c R2: RAC Administration Ed 2 Oracle University Contact Us: +36 1224 1760 Oracle Database 12c R2: RAC Administration Ed 2 Duration: 4 Days What you will learn This Oracle Database 12c R2: RAC Administration training will teach you

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

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

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

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

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

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

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

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

news Oracle 12c A Multitude of new Features for an Optimised Database Platform ... the smarter way of information

news Oracle 12c A Multitude of new Features for an Optimised Database Platform ... the smarter way of information 12c A Multitude of new Features for an Optimised Database Platform... the smarter way of information page 2/6 Larry Ellison announced the 2013 release of version 12c at this year s Open World. As Ellison

More information

Steps Create Physical Standby Database Oracle 9i

Steps Create Physical Standby Database Oracle 9i Steps Create Physical Standby Database Oracle 9i Upgrading from Oracle Database 9i Release 2 (9.2) to Oracle Database 12c Release The standby database is a physical standby database. The following steps

More information

Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours

Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours Oracle Database 10g : Administration Workshop II (Release 2) Course 36 Contact Hours What you will learn This course advances your success as an Oracle professional in the area of database administration.

More information

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

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

Tips and Tricks on Successful Upgrade to 11gR2

Tips and Tricks on Successful Upgrade to 11gR2 Tips and Tricks on Successful Upgrade to 11gR2 Project Approval Get buy in from CIO and other groups Justify the need End of premier support Extended Support Cost To be current Benefits of new release

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

"Charting the Course... Oracle 18c DBA I (3 Day) Course Summary

Charting the Course... Oracle 18c DBA I (3 Day) Course Summary Oracle 18c DBA I (3 Day) Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager (EMDE), SQL Developer

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Vendor : Oracle Version : DEMO

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

Oracle 1Z Upgrade to Oracle Database 12c. Download Full Version :

Oracle 1Z Upgrade to Oracle Database 12c. Download Full Version : Oracle 1Z0-060 Upgrade to Oracle Database 12c Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-060 QUESTION: 141 Which statement is true about Enterprise Manager (EM) express in

More information

Oracle Database 12c: RAC Administration Ed 1 LVC

Oracle Database 12c: RAC Administration Ed 1 LVC Oracle University Contact Us: 001-855-844-3881 Oracle Database 12c: RAC Administration Ed 1 LVC Duration: 4 Days What you will learn This Oracle Database 12c: RAC Administration training will teach you

More information

Flashback Database, Backup and Recovery in. Oracle Database 12c Release 2

Flashback Database, Backup and Recovery in. Oracle Database 12c Release 2 Flashback Database, Backup and Recovery in Oracle Database 12c Release 2 Select profile_details from oracle_community where name = Joerg Sobottka ; ORACLE DB SINCE 1991 IT Strategy OCP DBA (9i-12c) joerg.sobottka@robotron.ch

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-9 7 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training

More information

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

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

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

More information

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI)

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI) Oracle DBA (10g, 11g) Training Course Content Introduction (Database Architecture) Describe course objectives Explore the Oracle 10g database architecture Installing the Oracle Database Software Explain

More information

Avaya IQ 5.1 Database Server Configuration Recommendations And Oracle Guidelines

Avaya IQ 5.1 Database Server Configuration Recommendations And Oracle Guidelines Avaya IQ 5.1 Database Server Configuration Recommendations Avaya IQ Database Server Page 2 of 11 Issue 4.0 1. INTRODUCTION... 3 1.1 Purpose...3 1.2 BACKGROUND...3 1.3 Terminology...3 2. CONFIGURING IQ

More information

ORACLE 11g Database Replay

ORACLE 11g Database Replay ORACLE 11g Database Replay October 2 nd, 2007 Inderpal S. Johal Principal Consultant Agenda Why DB Replay DB Replay Overview System Architecture Supported Workloads Capture the Workload Pre-Processing

More information

Actual4Test. Actual4test - actual test exam dumps-pass for IT exams

Actual4Test.   Actual4test - actual test exam dumps-pass for IT exams Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z1-063 Title : Oracle Database 12c: Advanced Administration Vendor : Oracle Version : DEMO Get Latest

More information

Oracle Database 11g: SQL Fundamentals I

Oracle Database 11g: SQL Fundamentals I Oracle Database SQL Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-051 Exam Title: Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-071 Exam Title: Oracle Database SQL Oracle and Structured

More information

Oracle 12C DBA Online Training. Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL:

Oracle 12C DBA Online Training. Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL: Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL: A. Introduction Course Objectives, Course Agenda and Appendixes Used in this Course Overview of Oracle Database

More information

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

Managing Oracle Database 12c with Oracle Enterprise Manager 12c

Managing Oracle Database 12c with Oracle Enterprise Manager 12c Managing Oracle Database 12c with Oracle Enterprise Manager 12c The preceding is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated

More information

Introduction to Oracle Databases in the Cloud

Introduction to Oracle Databases in the Cloud Introduction to Oracle Databases in the Cloud Biju Thomas Principal Solutions Architect OneNeck IT Solutions www.oneneck.com @biju_thomas OneNeck IT Solutions at a Glance Backed by Fortune 500 strength

More information

1z0-160 oracle. Number: 1z0-160 Passing Score: 800 Time Limit: 120 min.

1z0-160 oracle. Number: 1z0-160 Passing Score: 800 Time Limit: 120 min. 1z0-160 oracle Number: 1z0-160 Passing Score: 800 Time Limit: 120 min Exam A QUESTION 1 You want to perform database recovery with the most recent backup. Which command would you execute? A. dbaascli rec

More information

Installing the Oracle Database Softwar

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

More information

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 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: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l

Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l Course Topics: Introduction Overview Oracle Database Innovation Enterprise Cloud

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

Latest Innovations in Database as a Service Enabled by Oracle Enterprise Manager

Latest Innovations in Database as a Service Enabled by Oracle Enterprise Manager Latest Innovations in Database as a Service Enabled by Oracle Enterprise Manager Hari Srinivasan Consulting Product Manager, Oracle Bala Kuchibhotla Sr. Director Engineering, Oracle Gurushankar Director

More information

ORACLE DBA TRAINING IN BANGALORE

ORACLE DBA TRAINING IN BANGALORE ORACLE DBA TRAINING IN BANGALORE TIB ACADEMY #5/3 BEML LAYOUT, VARATHUR MAIN ROAD KUNDALAHALLI GATE, BANGALORE 560066 PH: +91-9513332301/2302 WWW.TRAININGINBANGALORE.COM Oracle DBA Training Syllabus Introduction

More information

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

D77758GC20 - Oracle Database 12c R1: New Features for Administrators Ed 2 D77758GC20 - Oracle Database 12c R1: New Features for Administrators Ed 2 Czas trwania: Czas trwania: 5 dni / 40 godz. Cena rynkowa: 7 450,00 zł Cena promocyjna: Zadzwoń - 801 30 30 30 Szkolenie autoryzowane:

More information

Oracle Database 10g: New Features for Administrators Release 2

Oracle Database 10g: New Features for Administrators Release 2 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 10g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course introduces students to the new features

More information

"Charting the Course... Oracle 18c DBA I (5 Day) Course Summary

Charting the Course... Oracle 18c DBA I (5 Day) Course Summary Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager Database Express (EMDE), SQL Developer and SQL*Plus.

More information

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

MySQL for Database Administrators Ed 4

MySQL for Database Administrators Ed 4 Oracle University Contact Us: (09) 5494 1551 MySQL for Database Administrators Ed 4 Duration: 5 Days What you will learn The MySQL for Database Administrators course teaches DBAs and other database professionals

More information

Oracle 1Z Oracle Database 10g: Administration II. Download Full Version :

Oracle 1Z Oracle Database 10g: Administration II. Download Full Version : Oracle 1Z0-043 Oracle Database 10g: Administration II Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-043 QUESTION: 172 You lost the index tablespace in your database. You decided

More information

Oracle - 1z Upgrade to Oracle Database 12c

Oracle - 1z Upgrade to Oracle Database 12c 1 Oracle - 1z0-060 Upgrade to Oracle Database 12c QUESTION: 1 Your multitenant container (CDB) contains two pluggable databases (PDB), HR_PDB and ACCOUNTS_PDB, both of which use the CDB tablespace. The

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

Enterprise Manager: Scalable Oracle Management

Enterprise Manager: Scalable Oracle Management Session id:xxxxx Enterprise Manager: Scalable Oracle John Kennedy System Products, Server Technologies, Oracle Corporation Enterprise Manager 10G Database Oracle World 2003 Agenda Enterprise Manager 10G

More information

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

CHAPTER. Planning and Managing Tablespaces

CHAPTER. Planning and Managing Tablespaces CHAPTER 3 Planning and Managing Tablespaces 62 Oracle Database 12c DBA Handbook How a DBA configures the layout of the tablespaces in a database directly affects the performance and manageability of the

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

D78846GC30 - Oracle Database 12c R2: Administration Workshop Ed 3

D78846GC30 - Oracle Database 12c R2: Administration Workshop Ed 3 D78846GC30 - Oracle Database 12c R2: Administration Workshop Ed 3 Czas trwania: Czas trwania: 5 dni / 40 godz. Cena rynkowa: 7 450,00 zł Cena promocyjna: Zadzwoń - 801 30 30 30 Szkolenie autoryzowane:

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 Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5

Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 Oracle Database Upgrade, Migration & Transformation Tips & Techniques Chapter 5 CHECKLIST 5-1 Migration Preparation Operations 1 Capture database file metadata 2 Verify COMPATIBLE setting 3 Create INCREMENTAL

More information