Exadata Resource Management. teile und herrsche!

Size: px
Start display at page:

Download "Exadata Resource Management. teile und herrsche!"

Transcription

1 Exadata Resource Management Konrad HÄFELI Senior Solution Manager Infrastructure Engineering teile und herrsche! BASEL BERN BRUGG LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN 1

2 Unser Unternehmen Trivadis ist führend bei der IT-Beratung, der Systemintegration, dem Solution-Engineering und der Erbringung von IT-Services mit Fokussierung auf und Technologien im D-A-CH-Raum. Unsere Leistungen erbringen wir aus den strategischen Geschäftsfeldern: B E T R I E B Trivadis Services übernimmt den korrespondierenden Betrieb Ihrer IT Systeme. 2

3 Mit über 600 IT- und Fachexperten bei Ihnen vor Ort Hamburg 12 Trivadis Niederlassungen mit über 600 Mitarbeitenden 200 Service Level Agreements Düsseldorf Frankfurt Stuttgart Freiburg München Basel Brugg Bern Zürich Lausanne Wien Mehr als 4'000 Trainingsteilnehmer Forschungs- und Entwicklungsbudget: CHF 5.0 Mio. / EUR 4.0 Mio. Finanziell unabhängig und nachhaltig profitabel Erfahrung aus mehr als 1'900 Projekten pro Jahr bei über 800 Kunden Stand 12/2013

4 AGENDA 1. Introduction 2. Database Resource Manager 3. Exadata IO Resource Manager 4. Tests 5. Tooling 6. Conclusion 4

5 Introduction 5

6 Introduction Exadata is known for its enormous performance This is optimal for consolidation Concurrency forces bottlenecks but the resource cake is not endless How can I guarantee everybody's piece? Resource Management 6

7 Database Resource Management The goal of resource management is to optimize resources allocation among different users / groups or programs Example: Online users get more power than batch users Example: batch gets many resources during the night and little during the day Sounds familiar!?! DBRM was introduced in Oracle 8i It s not just about CPU (more introduced over the coming versions) Also helps to manage runaway queries, parallel queries, idle sessions, undo and temp space Instance caging Limits, and takes automatic actions if a limit is exceeded 7

8 Exadata Resource Management Intra-Database via DBRM Inter-Database is introduced with IORM on Exadata 8

9 Database Resource Manager 9

10 Overview DBRM Oracle Resource Manager is organized with Resource Plans Directives Consumer Groups Ref: Oracle 11gR2 Database Administrator s guide 10

11 DBRM Resource Plans A resource plan regulates, how specific resources are shared among the consumer groups. It also regulates how unused resources are redistributed Resource Plans get activated on Oversubscription Only one resource plan is active at a specific time It can be enabled manually by parameter Or it can be enabled by a scheduler window 11

12 DBRM Directives A resource plan directive assigns values/rules to the resource plan. There are many parameters available, specifying values for such as cpu consumption up to 8 levels number of concurrently active sessions parallel degree limit amount of undo information in KB for a session Maximum idle time for a blocking session Amount of MB transferred (Read/Write) by a session before action specified in SWITCH_GROUP ist taken 12

13 DBRM Consumer Groups A consumer group is a collection of sessions that have similar requirements Consumer groups can also be created to represent certain kinds of workload There exist predefined consumer groups in the oracle server, for example SYS_GROUP and the default group for sessions OTHER_GROUPS A consumer group mapping rule defines, how sessions are mapped to consumer groups, for ex: service_name oracle_user client_program client_machine 13

14 DBRM Manipulation (1) The Resource Manager can be switched on- or off online SQL> alter system set resource_manager_plan = DEFAULT_PLAN sid= * ; SQL> select plan from dba_rsrc_plans order by 1; PLAN APPQOS_PLAN DAYTIME_PLAN DEFAULT_MAINTENANCE_PLAN DEFAULT_PLAN DSS_PLAN ETL_CRITICAL_PLAN INTERNAL_PLAN INTERNAL_QUIESCE MIXED_WORKLOAD_PLAN ORA$AUTOTASK_HIGH_SUB_PLAN ORA$AUTOTASK_SUB_PLAN 14

15 DBRM Manipulation (2) BEGIN DBMS_RESOURCE_MANAGER.CREATE_PENDING_AREA(); DBMS_RESOURCE_MANAGER.CREATE_PLAN('DAYTIME_PLAN', 'Resource plan for managing all applications between 9 am and 5 pm'); DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP('CRITICAL_APPS', 'Critically important Apps'); DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP('ONLINE_APPS', 'Online Apps'); DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP('DEVELOPMENT', 'Developpers'); DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE('DAYTIME_PLAN', 'CRITICAL_APPS', 'Allocation for CRITICAL_APPS', MGMT_P1 => 60); DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE('DAYTIME_PLAN', 'ONLINE_APPS', 'Allocation for ONLINE_APPS', MGMT_P1 => 25); DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE('DAYTIME_PLAN', 'DEVELOPMENT', 'Allocation for DEVELOPMENT', MGMT_P1 => 10); DBMS_RESOURCE_MANAGER.CREATE_PLAN_DIRECTIVE('DAYTIME_PLAN', 'OTHER_GROUPS', 'Allocation for default group', MGMT_P1 => 5); DBMS_RESOURCE_MANAGER.VALIDATE_PENDING_AREA(); DBMS_RESOURCE_MANAGER.SUBMIT_PENDING_AREA(); END; / 15 15

16 DBRM Components Ratio Based Priority Based Reports wants 40% -> Okay? - Yes, if not oversubscribed 16

17 DBRM Instance Caging Small but useful new feature of Oracle 11gR2 Limits (only) the amount of CPU s a Instance can use One Instance will not be able to allocate all the CPU resources of a server Instance Caging has no impact to the CPU s that has to be licensed Two different approaches: Over Provisioning Partitioning SQL> alter system set resource_manager_plan='some plan'; SQL> alter system set cpu_count=5; 17

18 Exadata IO Resource Manager 18

19 Exadata I/O Resource Management (1) Consumer Groups / Categories I/O Metadata: DB Name, Request Type, Consumer Group Resource Manager 19

20 Overview Exadata IORM (1) Adds the possibility to prioritize I/O s Can be used on cell only (dbplan, Inter Database IORM) or in combination with Resource Manager within the DB (catplan, Intra Database Plan) Hard limits (limit) or soft limits (allocation) possible Limits the I/O requests only if there is I/O pressure on the cell (soft limits) Without pressure, every database or consumer group is able to use 100% of the I/O throughput of a cell (soft limits) IORM Plans must be implemented and activated on every cell. Use dcli for that. 20

21 Overview Exadata IORM (2) IORM Plans can have multiple levels Sublevels get what is left over from the upper levels DB Plans and Category Plans always need a OTHER group Database Role specific settings possible IORM can be activated, deactivated or altered online oracle@exadb01:bin/ [rdbms1120]./dcli -g mycells cellcli -e 'alter iormplan active' exacel01.trivadis.com: IORMPLAN successfully altered exacel02.trivadis.com: IORMPLAN successfully altered exacel03.trivadis.com: IORMPLAN successfully altered 21

22 IORM I/O Scheduling Traditional Way Traditional I/O schedulers are black boxes No possibility to influence I/O requests are processed in FIFO order RDBMS I/O Request Traditional Storage Server Disk Queue H L H L L L L High Priority Workload Low Priority Workload 22

23 IORM I/O Scheduling Exadata Way I/O Requests are executed based on the priorisation Low priority Requests can be queued if needed Exadata RDBMS I/O Request H H I/O Resource Manager Disk Queue H H L H L H H L L L L L 23

24 Inter- / Intra Database Resource Management Intra DB RM controls the resources within one database Tools to use: - dbms_resource_manager - Consumer Groups and Plan Directives: CPU and I/O resources - (Consumer groups represent collections of users within a database) Inter DB RM controls the resources between multiple databases Tools to use: - (Instance Caging: CPU Resources) - IORM: I/O Resources (dbplan and/or catplan on cell) - dbms_resource_manager Categories: I/O resources - The category s must be present in the DB and on each cell - (categories represent collections of consumer groups across all databases) 24

25 Categories in Databases DBMS_RESOURCE_MANAGER.CREATE_CATEGORY( CATEGORY => 'prio1', COMMENT => 'Priority 1 consumer group'); DBMS_RESOURCE_MANAGER.CREATE_CATEGORY( CATEGORY => 'prio2', COMMENT => 'Priority 2 consumer group'); DBMS_RESOURCE_MANAGER.CREATE_CATEGORY( CATEGORY => 'prio3', COMMENT => 'Priority 3 consumer group'); DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP( consumer_group => 'CRITICAL_APPS', comment => 'Critically important Apps', category => 'PRIO1'); DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP( consumer_group => 'ONLINE_APPS', comment => 'Online Apps', category => 'PRIO2'); DBMS_RESOURCE_MANAGER.CREATE_CONSUMER_GROUP( consumer_group => 'DEVELOPMENT', comment => 'Developpers', category => 'PRIO3'); 25

26 IORMPLAN on Cells dcli -g mycells cellcli -e \ "ALTER IORMPLAN catplan=\( \ \(name=administrative, level=1, allocation=80\), \ \(name=prio1, level=2, allocation=60\), \ \(name=prio2, level=2, allocation=30\), \ \(name=prio3, level=2, allocation=10\), \ \(name=other, level=3, allocation=100\) \ \), \ dbplan=\( \ \(name=rmtest1, level=1, allocation=60\), \ \(name=rmtest11, level=1, allocation=10\), \ \(name=other, level=2, allocation=100\) \ \)" 26

27 IORM Priorities Cell 1 Categories High 70% Low 30% Inter Database Database 1 60% 42% Database 2 40% 28% Database 1 60% 18% Database 2 40% 12% Intra Database CG 1 50% 21% CG2 50% 21% CG 3 50% 14% CG 4 50% 14% CG 5 75% 13.5% CG 6 25% 4.5% CG 7 80% 9.6% CG 8 20% 2.4% 27

28 New feature (1) I/O Resource Management Support for More Than 32 Databases supports share-based plans which allocate resources based on shares instead of percentages which can support up to 1024 databases, and up to 1024 directives for interdatabase plans Network Resource Management Network Resource Management automatically and transparently prioritizes critical database network messages fabric ensuring fast response times for latency critical operations. Prioritization is implemented in the database and the different InfiniBand adapters, This feature is enabled by default, and requires no configuration or management 28

29 New feature (2) IORM Support for Container Databases and Pluggable Databases By using CDB plans and PDB plans, I/O Resource Management (IORM) provides the ability to manage I/O resource utilization among different PDBs as well as manage the workloads within each PDB... DBMS_RESOURCE_MANAGER.CREATE_CDB_PLAN( plan => ''NEWCDB_PLAN ', comment => 'CDB resource plan for newcdb'); DBMS_RESOURCE_MANAGER.CREATE_CDB_PLAN_DIRECTIVE( plan => 'NEWCDB_PLAN', pluggable_database => 'SALESPDB', shares => 3, utilization_limit => 100);... 29

30 Kundenbeispiel: Datenbankkonsolidierung auf Exadata Exadata Database Machine X4-2 Half Rack 3 aktivierte DB Servern (anstatt 4) 3 Storage Server Zellen = 36 Disks (anstatt 7*12=84) Exadata Database Machine X4-2 Quarter Rack 2 DB Servern 3 Storage Server Zellen = 36 Disks Server 1 PROD Server 2 PROD Server 3 Server 1 PROD Server 2 PROD Prod DB s Server 1 DB1-Prod. DBn-Prod Failover DB s von Server 1 DB1-Prod DBn-Prod Test Entwicklung Integration Prod DB s Server 1 DB1-Prod. DBn-Prod Failover DB s von Server 1 DB1-Prod DBn-Prod Failover DB s von Server 2 DB(a)-Prod DB(z)-Prod Prod DB s Server 2 DB(a)-Prod. DB(z)-Prod Failover DB s von Server 2 DB(a)-Prod DB(z)-Prod Prod DB s Server 2 DB(a)-Prod. DB(z)-Prod Standby-Dataguard 1 Standby-Dataguard 2 30

31 Tests 31

32 DBRM and IORM Tests Test Environment Test runs 80 parallel sessions running a create table as select on a 3GB table exadb1 I1_RMTEST1 I1_RMTEST11 exadb2 I2_RMTEST1 I2_RMTEST11 Oracle ASM1 Oracle GI Oracle ASM2 Oracle GI Exadata DATA FRA DATA FRA 32

33 MB/s DBRM and IORM Tests Results Inter-Database IORM (1) 2 Databases, 1 Instance each, no IORM Rivalry is visible nicely 2 DBs, 1 Instance each without IORM RMTEST1 Instance 1 RMTEST11 Instance min 33 33

34 DBRM and IORM Tests Results Inter-Database IORM (2) 2 Databases, 1 Instance each, IORM Hard limit (limit=50 and limit=20, level 1 of max possible throughput) Hard limit: RMTEST11 does not get the full throughput even if RMTEST1 is idle 2 DBs, RMTEST1 Limit 50, RMTEST11 Limit 20, both Level MB/s RMTEST1, Instance 1 RMTEST11, Instance min 34 34

35 DBRM and IORM Tests Results Inter-Database IORM (3) 2 Databases, 1 Instance each, IORM Soft limit Soft limit: RMTEST1 has 3x more resources (alloc=30 and alloc=10) As soon as RMTEST1 is finish, RMTEST11 gets all the resources 2 DBs, no Limits RMTEST1 alloc 30 RMTEST11 alloc 10, both Level 1 MB/s min RMTEST1, Instance 1 RMTEST11, Instance

36 DBRM and IORM Tests Results Intra-Database IORM (1) 1 Database, 2 Instances consumer group CRITICAL_APPS (category prio 1 ): 60% on DB consumer group DEVELOPMENT (category prio 3 ): 10% on DB Category prio 1 : alloc 30 Category prio 3 : alloc 5 1 DB, 2 Instances, Schema 1 60% (CRITICAL_APPS), Schema 2 10% (DEVELOPMENT) (like Test 9) with IORMPLAN, Schema 1 alloc 30 (Prio 1), Schema 2 alloc 5 (Prio 3) RMTEST1, Instance 1 RMTEST1, Instance

37 DBRM and IORM Tests Results Intra-Database IORM (2) 2 Databases, 4 Instances consumer group CRITICAL_APPS (category prio 1 ): 60% on DB consumer group DEVELOPMENT (category prio 3 ): 10% on DB Category prio 1 Level 2: alloc 60 on cell Category prio 3 Level 2: alloc 10 on cell RMTEST1: alloc 60% on cell RMTEST11: alloc 10% on cell CATEGORY is evaluated first RMTEST1, Instance 1 gets more resources because of the priorisation MB/s DBs, 4 Instances, Schema 1 60% (CRITICAL_APPS), Schema 2 10% (DEVELOPMENT) with IORM Level 2, Schema 1 alloc 60, Schema 2 alloc 10, Instance 1 alloc 60, Instance 2 alloc min RMTEST1, Instance 1 RMTEST1, Instance 2 RMTEST11, Instance 1 RMTEST11, Instance

38 Tooling 38

39 Resource Management Challenges Kind of complicated Has to be changed according the systems needs New Database New Applications New User Flexible and easy to use Has to be reproducible Monitorable Resilient Write a tool with a configuration file 39 39

40 Resource Management Tool Start Script Read conf Generate SID code SID list done Apply code to SID-list Apply code to CELL-list Errorcheck, mail, exit 40 40

41 Resource Management Tool Configuration Sections Intra Database Category's Intra Database ConsumerGroups Intra Database IORM catplan Intra Database Resource Plan Intra Database Resource Plan Directives Intra Database Consumer Group Mapping Intra Database Consumer Group Grants Inter Database IORM dbplan # Primary databases dbplan name=rmtest1, level=1, allocation=60, role=primary dbplan name=rmtest11, level=1, allocation=10, role=primary dbplan name=ecazt, level=1, allocation=10, role=primary # Standby databases dbplan name=rmtest1, level=2, allocation=60, role=standby 41 41

42 Resource Management Tool Generate script (1) # *************************************************************** * # * M A I N * # *************************************************************** * # * * clear # # Exadata IORM # getcatplans getdbplans gencellcommand getrmplans getrmcategorys getrmconsgroups getrmplandirectives getrmcgmappings getrmcggrants 42 42

43 Resource Management Tool Generate script (2).. else genrmscript applyrmscript fi done fi checklog # *************************************************************** * # * E N D * # *************************************************************** * sendmail 43 43

44 Conclusion 44

45 Oracle Exadata Resource Management Conclusion (1) Resource Management in Consolidation Environments is a MUST DBRM and IORM work very well KISS! Keep it simple! First implement a good CATEGORY Plan CRITICAL_APPS, BATCH_LOADING, DEVELOPMENT, REPORTS etc. Second implement a Database IORM Plan Only limit the Consumer Groups within a database if needed, it s easier to use category s within a database only A generator Script helps to manage the needed PL/SQL Code 45 45

46 Oracle Exadata Resource Management Conclusion (2) How can you keep the smile on your Database? With Resource Management! 46

47 Weitere Informationen

48 Fragen und Antworten... Konrad Häfeli Senior Solution Manager Infrastructure Engineering BASEL BERN BRUGG LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN

Exadata Database Machine Resource Management teile und herrsche!

Exadata Database Machine Resource Management teile und herrsche! Exadata Database Machine Resource Management teile und herrsche! DOAG Conference 2011 Konrad Häfeli Senior Technology Manager Trivadis AG BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR.

More information

Exadata with In-Memory Option the best of all?!?

Exadata with In-Memory Option the best of all?!? Exadata with In-Memory Option the best of all?!? Konrad HÄFELI Senior Solution Manager Infrastructure Engineering BASEL BERN BRUGG LAUSANNE ZUERICH DUESSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MUNICH

More information

Partitionierungsstrategien für Data Vault. Dani Schnider, Trivadis AG DOAG Konferenz, 23. November 2017

Partitionierungsstrategien für Data Vault. Dani Schnider, Trivadis AG DOAG Konferenz, 23. November 2017 Partitionierungsstrategien für Data Vault Dani Schnider, Trivadis AG DOAG Konferenz, 23. November 2017 @dani_schnider DOAG2017 Unser Unternehmen. Trivadis ist führend bei der IT-Beratung, der Systemintegration,

More information

Welcome. Oracle SOA Suite meets Java The best of both worlds. Guido Schmutz DOAG Konferenz 2013 Nürnberg,

Welcome. Oracle SOA Suite meets Java The best of both worlds. Guido Schmutz DOAG Konferenz 2013 Nürnberg, Welcome Oracle SOA Suite meets Java The best of both worlds Guido Schmutz DOAG Konferenz 2013 Nürnberg, BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN

More information

Analytic Views: Einsatzgebiete im Data Warehouse. Dani Schnider, Trivadis AG DOAG Konferenz, 21. November 2017

Analytic Views: Einsatzgebiete im Data Warehouse. Dani Schnider, Trivadis AG DOAG Konferenz, 21. November 2017 Analytic Views: Einsatzgebiete im Data Warehouse Dani Schnider, Trivadis AG DOAG Konferenz, 21. November 2017 @dani_schnider DOAG2017 Unser Unternehmen. Trivadis ist führend bei der IT-Beratung, der Systemintegration,

More information

Sonnenstrahlen am Wolkenhimmel Oracle in der Infrastruktur Cloud

Sonnenstrahlen am Wolkenhimmel Oracle in der Infrastruktur Cloud Sonnenstrahlen am Wolkenhimmel Oracle in der Infrastruktur Cloud Konrad HÄFELI Senior Solution Manager Infrastructure Engineering BASEL BERN BRUGG LAUSANNE ZUERICH DUESSELDORF FRANKFURT A.M. FREIBURG I.BR.

More information

WebLogic JMS System Best Practices

WebLogic JMS System Best Practices WebLogic JMS System Best Practices Daniel Joray BASEL BERN BRUGG LAUSANNE ZUERICH DUESSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MUNICH STUTTGART VIENNA 1 View > Header and footer Date Unser Unternehmen

More information

1 25/07/2017 Big-Data- and Data-Science-Day 2017

1 25/07/2017 Big-Data- and Data-Science-Day 2017 1 25/07/2017 How to enable smooth Business on Big Data considering Governance - Hochschule der Medien Stuttgart - Ralf Leipner - Principal Consultant - BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG

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

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

Exadata Resource Management: Achieve Mind- blowing Performance, Consistently

Exadata Resource Management: Achieve Mind- blowing Performance, Consistently Managed Services Cloud Services Consul3ng Services Licensing Exadata Resource Management: Achieve Mind- blowing Performance, Consistently UTOUG Fall Symposium 2015 Kasey Parker Enterprise Architect Kasey.Parker@centroid.com

More information

Domain Services Clusters Centralized Management & Storage for an Oracle Cluster Environment Markus Flechtner

Domain Services Clusters Centralized Management & Storage for an Oracle Cluster Environment Markus Flechtner s Centralized Management & Storage for an Oracle Cluster Environment Markus Flechtner BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA

More information

WELCOME. Unterstützung von Tuning- Maßnahmen mit Hilfe von Capacity Management. DOAG SIG Database

WELCOME. Unterstützung von Tuning- Maßnahmen mit Hilfe von Capacity Management. DOAG SIG Database WELCOME Unterstützung von Tuning- Maßnahmen mit Hilfe von Capacity Management DOAG SIG Database 28.02.2013 Robert Kruzynski Principal Consultant Partner Trivadis GmbH München BASEL BERN LAUSANNE ZÜRICH

More information

Continuous Integration im Umfeld der Oracle SOA Suite 11g

Continuous Integration im Umfeld der Oracle SOA Suite 11g Continuous Integration im Umfeld der Oracle SOA Suite 11g DOAG Konferenz 2011 Markus Heinisch Markus Zehnder Trivadis GmbH Nov. 2011, Nürnberg BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG

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

Oracle Database 18c New Performance Features

Oracle Database 18c New Performance Features Oracle Database 18c New Performance Features Christian Antognini @ChrisAntognini antognini.ch/blog BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART

More information

REALTIME WEB APPLICATIONS WITH ORACLE APEX

REALTIME WEB APPLICATIONS WITH ORACLE APEX REALTIME WEB APPLICATIONS WITH ORACLE APEX DOAG Conference 2012 Johannes Mangold Senior Consultant, Trivadis AG BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART

More information

<Insert Picture Here> Controlling resources in an Exadata environment

<Insert Picture Here> Controlling resources in an Exadata environment Controlling resources in an Exadata environment Agenda Smart IO IO Resource Manager Compression Hands-on time Exadata Security Flash Cache Storage Indexes Parallel Execution Agenda

More information

Cloud Acceleration. Performance comparison of Cloud vendors. Tobias Deml DOAG2017

Cloud Acceleration. Performance comparison of Cloud vendors. Tobias Deml DOAG2017 Performance comparison of Cloud vendors Tobias Deml Consultant @TobiasDemlDBA DOAG2017 About Consultant, Trivadis GmbH, Munich Since more than 9 years working in Oracle environment Focus areas Cloud Computing

More information

Identifying Performance Problems in a Multitenant Environment

Identifying Performance Problems in a Multitenant Environment Identifying Performance Problems in a Multitenant Environment Christian Antognini @ChrisAntognini antognini.ch/blog BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE

More information

GoldenGate. How to start such a project? Mathias Zarick Nuremberg, Nov. 17 th 2015

GoldenGate. How to start such a project? Mathias Zarick Nuremberg, Nov. 17 th 2015 How to start such a project? Mathias Zarick Nuremberg, Nov. 17 th 2015 BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA ZURICH Introduction

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

<Insert Picture Here> Controlling resources in an Exadata environment

<Insert Picture Here> Controlling resources in an Exadata environment Controlling resources in an Exadata environment Agenda Exadata Security Flash Cache and Log Storage Indexes Parallel Execution Agenda Exadata Security Flash Cache and Log Storage

More information

B. Using Data Guard Physical Standby to migrate from an 11.1 database to Exadata is beneficial because it allows you to adopt HCC during migration.

B. Using Data Guard Physical Standby to migrate from an 11.1 database to Exadata is beneficial because it allows you to adopt HCC during migration. Volume: 71 Questions Question No : 1 Which two statements are true about migrating your database to Exadata? A. Because Exadata uses InfiniBand, in order to migrate your database to Exadata, you must have

More information

Oracle Database Failover Cluster with Grid Infrastructure 11g Release 2

Oracle Database Failover Cluster with Grid Infrastructure 11g Release 2 Oracle Database Failover Cluster with Grid Infrastructure 11g Release 2 DOAG Conference 2011 Robert Bialek Principal Consultant Trivadis GmbH BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG

More information

1Z Oracle. Oracle Exadata Database Machine 2014 Certified Implementation Specialist

1Z Oracle. Oracle Exadata Database Machine 2014 Certified Implementation Specialist Oracle 1Z0-485 Oracle Exadata Database Machine 2014 Certified Implementation Specialist Download Full version : http://killexams.com/pass4sure/exam-detail/1z0-485 physicalserial: XXXXXX QUESTION: 65 Identify

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

A Real-World Technical Case Study of a Global Manufacturer

A Real-World Technical Case Study of a Global Manufacturer An Oracle White Paper March 2015 A Real-World Technical Case Study of a Global Manufacturer Oracle E-Business Suite, Oracle Exadata, and the Oracle Maximum Availability Architecture Summary One of the

More information

Backup Methods from Practice

Backup Methods from Practice Backup Methods from Practice Optimized and Intelligent Roland Stirnimann @rstirnimann_ch BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA

More information

Data Vault Partitioning Strategies. Dani Schnider, Trivadis AG DOAG Conference, 23 November 2017

Data Vault Partitioning Strategies. Dani Schnider, Trivadis AG DOAG Conference, 23 November 2017 Data Vault Partitioning Strategies Dani Schnider, Trivadis AG DOAG Conference, 23 November 2017 @dani_schnider DOAG2017 Our company. Trivadis is a market leader in IT consulting, system integration, solution

More information

Making Storage Smarter Jim Williams Martin K. Petersen

Making Storage Smarter Jim Williams Martin K. Petersen Making Storage Smarter Jim Williams Martin K. Petersen Agenda r Background r Examples r Current Work r Future 2 Definition r Storage is made smarter by exchanging information between the application and

More information

Service discovery in Kubernetes with Fabric8

Service discovery in Kubernetes with Fabric8 Service discovery in Kubernetes with Fabric8 Andy Moncsek Senior Consultant Andy.Moncsek@trivadis.com Twitter: @AndyAHCP BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENF HAMBURG KOPENHAGEN

More information

Integration of Oracle VM 3 in Enterprise Manager 12c

Integration of Oracle VM 3 in Enterprise Manager 12c Integration of Oracle VM 3 in Enterprise Manager 12c DOAG SIG Infrastruktur Martin Bracher Senior Consultant Trivadis AG 8. März 2012 BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR.

More information

Patching Exadata Database Machine - the DBA gets it all!

Patching Exadata Database Machine - the DBA gets it all! Patching Exadata Database Machine - the DBA gets it all! DOAG Conference 2011 Konrad Häfeli Senior Technology Manager Trivadis AG BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG

More information

Oracle In-Memory & Data Warehouse: The Perfect Combination?

Oracle In-Memory & Data Warehouse: The Perfect Combination? : The Perfect Combination? UKOUG Tech17, 6 December 2017 Dani Schnider, Trivadis AG @dani_schnider danischnider.wordpress.com BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN

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

Oracle Database New Performance Features

Oracle Database New Performance Features Oracle Database 12.1.0.2 New Performance Features DOAG 2014, Nürnberg (DE) Christian Antognini BASEL BERN BRUGG LAUSANNE ZUERICH DUESSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MUNICH STUTTGART VIENNA

More information

Die Wundertüte DBMS_STATS: Überraschungen in der Praxis

Die Wundertüte DBMS_STATS: Überraschungen in der Praxis Die Wundertüte DBMS_STATS: Überraschungen in der Praxis, 14. Mai 2018 Dani Schnider, Trivadis AG @dani_schnider danischnider.wordpress.com BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA

More information

Bloom Filters DOAG Webinar, 12 August 2016 Christian Antognini Senior Principal Consultant

Bloom Filters DOAG Webinar, 12 August 2016 Christian Antognini Senior Principal Consultant DOAG Webinar, 12 August 2016 Christian Antognini Senior Principal Consultant BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA ZURICH

More information

WELCOME. Oracle Almost Maximum Availability. Martin Schmitter 28th Sep 2011

WELCOME. Oracle Almost Maximum Availability. Martin Schmitter 28th Sep 2011 WELCOME Almost Maximum Availability Martin Schmitter 28th Sep 2011 BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN 1 About me.. Consultant at Trivadis,

More information

Analytic Views: Use Cases in Data Warehouse. Dani Schnider, Trivadis AG DOAG Conference, 21 November 2017

Analytic Views: Use Cases in Data Warehouse. Dani Schnider, Trivadis AG DOAG Conference, 21 November 2017 Analytic Views: Use Cases in Data Warehouse Dani Schnider, Trivadis AG DOAG Conference, 21 November 2017 @dani_schnider DOAG2017 Our company. Trivadis is a market leader in IT consulting, system integration,

More information

Oracle Audit in a Nutshell - Database Audit but how?

Oracle Audit in a Nutshell - Database Audit but how? Oracle Audit in a Nutshell - Database Audit but how? DOAG + SOUG Security-Lounge Stefan Oehrli Senior Consultant Discipline Manager Trivadis AG Basel 24. April 2012 BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF

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

Empfehlungen vom BigData Admin

Empfehlungen vom BigData Admin Empfehlungen vom BigData Admin an den Oracle DBA Florian Feicht, Alexander Hofstetter @FlorianFeicht @lxdba doag2017 Our company. Trivadis is a market leader in IT consulting, system integration, solution

More information

Oracle Exadata Implementation Strategy HHow to Implement Exadata In-house

Oracle Exadata Implementation Strategy HHow to Implement Exadata In-house Oracle Exadata Implementation Strategy HHow to Implement Exadata In-house Introduction Oracle Exadata The Oracle Exadata is a database machine, which has now been present since 2008. A number of financial

More information

Query Optimizer MySQL vs. PostgreSQL

Query Optimizer MySQL vs. PostgreSQL Percona Live, Frankfurt (DE), 7 November 2018 Christian Antognini @ChrisAntognini antognini.ch/blog BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART

More information

Oracle Exadata Performance

Oracle Exadata Performance Yes. You still need to tune. By Kathy Gibbs, Product Manager Presentation to NYOUG Winter General Meeting 12/2011 Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 www.confio.com Introduction

More information

Automatic Parallel Execution Presented by Joel Goodman Oracle University EMEA

Automatic Parallel Execution Presented by Joel Goodman Oracle University EMEA Automatic Parallel Execution Presented by Joel Goodman Oracle University EMEA Copyright 2011, Oracle. All rights reserved. Topics Automatic Parallelism Parallel Statement Queuing In Memory Parallel Query

More information

SQL Server 2014 Highlights der wichtigsten Neuerungen In-Memory OLTP (Hekaton)

SQL Server 2014 Highlights der wichtigsten Neuerungen In-Memory OLTP (Hekaton) SQL Server 2014 Highlights der wichtigsten Neuerungen Karl-Heinz Sütterlin Meinrad Weiss March 2014 BASEL BERN BRUGG LAUSANNE ZUERICH DUESSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MUNICH STUTTGART

More information

Online Operations in Oracle 12.2

Online Operations in Oracle 12.2 Online Operations in Oracle 12.2 New Features and Enhancements Christian Gohmann BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA ZURICH

More information

Pitfalls & Surprises with DBMS_STATS: How to Solve Them

Pitfalls & Surprises with DBMS_STATS: How to Solve Them Pitfalls & Surprises with DBMS_STATS: How to Solve Them Dani Schnider, Trivadis AG @dani_schnider danischnider.wordpress.com BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN

More information

IaaS/PaaS with Oracle Private Cloud Appliance in practice. Konrad HÄFELI Senior Solution Manager Infrastructure Engineering

IaaS/PaaS with Oracle Private Cloud Appliance in practice. Konrad HÄFELI Senior Solution Manager Infrastructure Engineering IaaS/PaaS with Oracle Private Cloud Appliance in practice Konrad HÄFELI Senior Solution Manager Infrastructure Engineering @KonradHaefeli doag2017 Our company. Trivadis is a market leader in IT consulting,

More information

Query Optimizer MySQL vs. PostgreSQL

Query Optimizer MySQL vs. PostgreSQL Percona Live, Santa Clara (USA), 24 April 2018 Christian Antognini @ChrisAntognini antognini.ch/blog BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH

More information

Designing for Performance: Database Related Worst Practices ITOUG Tech Day, 11 November 2016, Milano (I) Christian Antognini

Designing for Performance: Database Related Worst Practices ITOUG Tech Day, 11 November 2016, Milano (I) Christian Antognini Designing for Performance: Database Related Worst Practices ITOUG Tech Day, 11 November 2016, Milano (I) Christian Antognini BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN

More information

Oracle Database 10g Resource Manager. An Oracle White Paper October 2005

Oracle Database 10g Resource Manager. An Oracle White Paper October 2005 Oracle Database 10g Resource Manager An Oracle White Paper October 2005 Oracle Database 10g Resource Manager INTRODUCTION... 3 SYSTEM AND RESOURCE MANAGEMENT... 3 ESTABLISHING RESOURCE PLANS AND POLICIES...

More information

Get Groovy with ODI Trivadis

Get Groovy with ODI Trivadis BASEL 1 BERN BRUGG LAUSANNE ZUERICH DUESSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MUNICH STUTTGART VIENNA AGENDA 1 What is Groovy? 2 Groovy in ODI 3 What I want to reach 4 Live Demo 5 Helpful documentation

More information

Best Practices for Testing SOA Suite 11g based systems

Best Practices for Testing SOA Suite 11g based systems Best Practices for Testing SOA Suite 11g based systems ODTUG 2010 Guido Schmutz, Technology Manager / Partner Trivadis AG 29.06.2010, Washington Basel Baden Bern Lausanne Zürich Düsseldorf Frankfurt/M.

More information

Workload Management for an Operational Data Warehouse Oracle Database Jean-Pierre Dijcks Sr. Principal Product Manager Data Warehousing

Workload Management for an Operational Data Warehouse Oracle Database Jean-Pierre Dijcks Sr. Principal Product Manager Data Warehousing Workload Management for an Operational Data Warehouse Oracle Database 11.2.0.2 Jean-Pierre Dijcks Sr. Principal Product Manager Data Warehousing Agenda What is a concurrent environment? Planning for workload

More information

Exadata Monitoring and Management Best Practices

Exadata Monitoring and Management Best Practices Exadata Monitoring and Management Best Practices Mughees A. Minhas Oracle Redwood Shores, CA, USA Keywords: Oracle, Exadata, monitoring, management, database, performance, monitor, Enterprise Manager,

More information

Data Replication With Oracle GoldenGate Looking Behind The Scenes Robert Bialek Principal Consultant Partner

Data Replication With Oracle GoldenGate Looking Behind The Scenes Robert Bialek Principal Consultant Partner Data Replication With Oracle GoldenGate Looking Behind The Scenes Robert Bialek Principal Consultant Partner BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE

More information

Database Rolling Upgrade with Transient Logical Standby Database DOAG Day High Availability Robert Bialek Principal Consultant

Database Rolling Upgrade with Transient Logical Standby Database DOAG Day High Availability Robert Bialek Principal Consultant Database Rolling Upgrade with Transient Logical Standby Database DOAG Day High Availability Robert Bialek Principal Consultant BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENF HAMBURG KOPENHAGEN

More information

Oracle 1Z0-515 Exam Questions & Answers

Oracle 1Z0-515 Exam Questions & Answers Oracle 1Z0-515 Exam Questions & Answers Number: 1Z0-515 Passing Score: 800 Time Limit: 120 min File Version: 38.7 http://www.gratisexam.com/ Oracle 1Z0-515 Exam Questions & Answers Exam Name: Data Warehousing

More information

Oracle In-Memory and all that

Oracle In-Memory and all that Oracle In-Memory and all that Paolo Kreth, DBA, Head of team Datamanagement, paolo.kreth@mobiliar.ch Andreas Wyssenbach, Senior DBA andreas.wyssenbach@mobiliar.ch July 2017 1 Agenda 1. Swiss Mobiliar in

More information

Session 1079: Using Real Application Testing to Successfully Migrate to Exadata - Best Practices and Customer Case Studies

Session 1079: Using Real Application Testing to Successfully Migrate to Exadata - Best Practices and Customer Case Studies Session 1079: Using Real Application Testing to Successfully Migrate to Exadata - Best Practices and Customer Case Studies Prabhaker Gongloor (GP) Product Management Director, Database Manageability, Oracle

More information

Database Consolidation with Oracle Exadata

Database Consolidation with Oracle Exadata Database Consolidation with Oracle Exadata Techniques and Best Practices Manish Shah Sr. Principal Product Manager, Exadata Oracle Corporation Ajit Singh Director, Data Technology Platforms New York Stock

More information

Database Sharding with Oracle RDBMS

Database Sharding with Oracle RDBMS Database Sharding with Oracle RDBMS First Impressions Robert Bialek Principal Consultant BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA

More information

Oracle Access Management

Oracle Access Management Oracle Access Management Needful things to survive Michael Mühlbeyer, Trivadis GmbH BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENF HAMBURG KOPENHAGEN LAUSANNE MÜNCHEN STUTTGART WIEN ZÜRICH

More information

[Contents. Sharing. sqlplus. Storage 6. System Support Processes 15 Operating System Files 16. Synonyms. SQL*Developer

[Contents. Sharing. sqlplus. Storage 6. System Support Processes 15 Operating System Files 16. Synonyms. SQL*Developer ORACLG Oracle Press Oracle Database 12c Install, Configure & Maintain Like a Professional Ian Abramson Michael Abbey Michelle Malcher Michael Corey Mc Graw Hill Education New York Chicago San Francisco

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 WHITEPAPER ORACLE ENTERPRISE MANAGER 13C CLOUD CONTROL

ORACLE WHITEPAPER ORACLE ENTERPRISE MANAGER 13C CLOUD CONTROL ORACLE WHITEPAPER ORACLE ENTERPRISE MANAGER 13C CLOUD CONTROL Oracle Enterprise Manager 13c Cloud Control ORACLE TUNING PACK FOR ORACLE DATABASE SUPPORTS CONTAINER DATABASES ORACLE TUNING PACK FOR ORACLE

More information

The Microsoft Big Data architecture approach

The Microsoft Big Data architecture approach The Microsoft Big ata architecture approach Marc Schöni (Microsoft) Meinrad Weiss (Trivadis) 7. February 2014 BASEL BERN BRUGG LAUSANNE ZUERICH UESSELORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MUNICH STUTTGART

More information

A Technical Overview of the HP Oracle Exadata Storage Server. An Oracle White Paper October 2008

A Technical Overview of the HP Oracle Exadata Storage Server. An Oracle White Paper October 2008 A Technical Overview of the HP Oracle Exadata Storage Server An Oracle White Paper October 2008 A Technical Overview of the HP Oracle Exadata Storage Grid The HP Oracle Exadata Storage Server... 3 Today

More information

Hello, and welcome to this online, self-paced course module covering Exadata Smart Flash Log. My name is Peter Fusek. I am a curriculum developer at

Hello, and welcome to this online, self-paced course module covering Exadata Smart Flash Log. My name is Peter Fusek. I am a curriculum developer at Hello, and welcome to this online, self-paced course module covering Exadata Smart Flash Log. My name is Peter Fusek. I am a curriculum developer at Oracle, and in various roles I have helped customers

More information

Oracle Cloud 1Z0-338

Oracle Cloud 1Z0-338 Oracle Cloud 1Z0-338 Oracle Exadata Database Machine and Cloud Service 2017 Implementation Essentials Thank You for Downloading 1Z0-338 Updated Exam Questions oracle/1z0-338-pdf-exam-dumps Version: 6.0

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 Exadata: Strategy and Roadmap

Oracle Exadata: Strategy and Roadmap Oracle Exadata: Strategy and Roadmap - New Technologies, Cloud, and On-Premises Juan Loaiza Senior Vice President, Database Systems Technologies, Oracle Safe Harbor Statement The following is intended

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

Exadata X3 in action: Measuring Smart Scan efficiency with AWR. Franck Pachot Senior Consultant

Exadata X3 in action: Measuring Smart Scan efficiency with AWR. Franck Pachot Senior Consultant Exadata X3 in action: Measuring Smart Scan efficiency with AWR Franck Pachot Senior Consultant 16 March 2013 1 Exadata X3 in action: Measuring Smart Scan efficiency with AWR Exadata comes with new statistics

More information

Oracle Database 12c: JMS Sharded Queues

Oracle Database 12c: JMS Sharded Queues Oracle Database 12c: JMS Sharded Queues For high performance, scalable Advanced Queuing ORACLE WHITE PAPER MARCH 2015 Table of Contents Introduction 2 Architecture 3 PERFORMANCE OF AQ-JMS QUEUES 4 PERFORMANCE

More information

Was ist dran an einer spezialisierten Data Warehousing platform?

Was ist dran an einer spezialisierten Data Warehousing platform? Was ist dran an einer spezialisierten Data Warehousing platform? Hermann Bär Oracle USA Redwood Shores, CA Schlüsselworte Data warehousing, Exadata, specialized hardware proprietary hardware Introduction

More information

Arup Nanda Longtime Oracle DBA (and now DMA)

Arup Nanda Longtime Oracle DBA (and now DMA) Arup Nanda Longtime Oracle DBA (and now DMA) Why this Session? If you are an Oracle DBA Familiar with RAC, 11gR2 and ASM about to be a Database Machine Administrator (DMA) How much do you have to learn?

More information

Exadata for Oracle DBAs. Arup Nanda Longtime Oracle DBA (and now DMA)

Exadata for Oracle DBAs. Arup Nanda Longtime Oracle DBA (and now DMA) Arup Nanda Longtime Oracle DBA (and now DMA) Why this Session? If you are an Oracle DBA Familiar with RAC, 11gR2 and ASM about to be a Database Machine Administrator (DMA) How much do you have to learn?

More information

<Insert Picture Here> Exadata MAA Best Practices Series Session #4: Exadata and OLTP Applications

<Insert Picture Here> Exadata MAA Best Practices Series Session #4: Exadata and OLTP Applications Exadata MAA Best Practices Series Session #4: Exadata and OLTP Applications Hector Pujol Hector Pujol Consulting Member of Technical Staff, Oracle X and MAA Teams Exadata MAA Best

More information

Oracle Exadata Course Content

Oracle Exadata Course Content 1 Oracle Exadata Course Content Introduction Course Objectives Audience and Prerequisites Course Contents Terminology Additional Resources Introducing the Laboratory Environment Exadata Database Machine

More information

Exadata Database Machine: 12c Administration Workshop Ed 2

Exadata Database Machine: 12c Administration Workshop Ed 2 Oracle University Contact Us: 00 9714 390 9050 Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days What you will learn This Exadata Database Machine: 12c Administration Workshop

More information

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

Big Data Big Mess? Ein Versuch einer Positionierung

Big Data Big Mess? Ein Versuch einer Positionierung Big Data Big Mess? Ein Versuch einer Positionierung Autor: Daniel Liebhart (Peter Welkenbach) Datum: 10. Oktober 2012 Ort: DBTA Workshop on Big Data, Cloud Data Management and NoSQL BASEL BERN LAUSANNE

More information

Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days

Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days Exadata Database Machine: 12c Administration Workshop Ed 2 Duration: 5 Days This Exadata Database Machine: 12c Administration Workshop introduces you to Oracle Exadata Database Machine. Explore the various

More information

Jyotheswar Kuricheti

Jyotheswar Kuricheti Jyotheswar Kuricheti 1 Agenda: 1. Performance Tuning Overview 2. Identify Bottlenecks 3. Optimizing at different levels : Target Source Mapping Session System 2 3 Performance Tuning Overview: 4 What is

More information

Exadata Database Machine Administration Workshop

Exadata Database Machine Administration Workshop Exadata Database Machine Administration Workshop Duration : 32 Hours This course introduces you to the Oracle Exadata Database Machine. You'll learn about the various Exadata Database Machine features

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

www.informatik-aktuell.de IT-Tage Datenbanken in Frankfurt, 17. Dezember 2015 Christian Antognini Udo Fohrmann BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE

More information

Understanding Oracle RAC ( ) Internals: The Cache Fusion Edition

Understanding Oracle RAC ( ) Internals: The Cache Fusion Edition Understanding (12.1.0.2) Internals: The Cache Fusion Edition Subtitle Markus Michalewicz Director of Product Management Oracle Real Application Clusters (RAC) November 19th, 2014 @OracleRACpm http://www.linkedin.com/in/markusmichalewicz

More information

Frits Hoogland - Oracle Usergroup Norway 2013 EXADATA AND OLTP. Thursday, April 18, 13

Frits Hoogland - Oracle Usergroup Norway 2013 EXADATA AND OLTP. Thursday, April 18, 13 Frits Hoogland - Oracle Usergroup Norway 2013 EXADATA AND OLTP Who am I? Frits Hoogland Working with Oracle products since 1996 Blog: http://fritshoogland.wordpress.com Twitter: @fritshoogland Email: fhoogland@vxcompany.com

More information

Exadata Database Machine Administration Workshop NEW

Exadata Database Machine Administration Workshop NEW Exadata Database Machine Administration Workshop NEW What you will learn: This course introduces students to Oracle Exadata Database Machine. Students learn about the various Exadata Database Machine features

More information

You'll even like your Data Guard more with Flashback

You'll even like your Data Guard more with Flashback You'll even like your Data Guard more with Flashback Hervé Schweitzer Mathias Zarick München, 26.01.2010 Baden Basel Bern Brugg Lausanne Zürich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg München Stuttgart

More information

Exadata Implementation Strategy

Exadata Implementation Strategy Exadata Implementation Strategy BY UMAIR MANSOOB 1 Who Am I Work as Senior Principle Engineer for an Oracle Partner Oracle Certified Administrator from Oracle 7 12c Exadata Certified Implementation Specialist

More information

Exdata Database Machine: 12c Administration Workshop Ed 2

Exdata Database Machine: 12c Administration Workshop Ed 2 Exdata Database Machine: 12c Administration Workshop Ed 2 Duration 5 Days What you will learn This Exadata Database Machine: 12c Administration Workshop training introduces you to Oracle Exadata Database

More information

Oracle made it easy: Cloud DB Vergleich

Oracle made it easy: Cloud DB Vergleich Oracle made it easy: Cloud DB Vergleich MATTHIAS FUCHS, ESENTRI BORYS NESELOVSKYI, OPITZ CONSULTING DOAG 2018 KONFERENZ, NÜRNBERG Cloud Angebote für Oracle Datenbank ORACLE CLOUD Oracle Datenbank Microsoft

More information