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

Size: px
Start display at page:

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

Transcription

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

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 in der Schweiz, Deutschland, Österreich und Dänemark. Trivadis erbringt ihre Leistungen aus den strategischen Geschäftsfeldern: B E T R I E B Trivadis Services übernimmt den korrespondierenden Betrieb Ihrer IT Systeme

3 Mit über 600 IT- und Fachexperten bei Ihnen vor Ort. KOPENHAGEN HAMBURG 14 Trivadis Niederlassungen mit über 600 Mitarbeitenden. Über 200 Service Level Agreements. Mehr als 4'000 Trainingsteilnehmer. DÜSSELDORF Forschungs- und Entwicklungsbudget: CHF 5.0 Mio. / EUR 4.0 Mio. FRANKFURT Finanziell unabhängig und nachhaltig profitabel. BASEL FREIBURG BRUGG ZÜRICH STUTTGART MÜNCHEN WIEN Erfahrung aus mehr als 1'900 Projekten pro Jahr bei über 800 Kunden. GENF BERN LAUSANNE

4 Dani Schnider Working for Trivadis in Glattbrugg/Zurich Senior Principal Consultant Data Warehouse Lead Architect Trainer of several Courses Co-Author of the books Data Warehousing mit Oracle Data Warehouse Blueprints Certified Data Vault Data danischnider.wordpress.com

5 Data Vault Tables HUB Surrogate Key (PK) Business Key(s) (UK) Load Date Record Source SATELLITE Foreign Key to Hub (PK) Load Date (PK) Load End Date (optional) Context Attribute 1 Context Attribute 2... Context Attribute n Record Source LINK Surrogate Key (PK) Foreign Key Hub 1 Foreign Key Hub 2... Load Date Record Source

6 Source: How to Create a Data Vault Model,

7 Example Data Vault Model (Subset)

8 Partitioning by Load Date

9 Partitioning by Load Date: A Good Strategy? SID LOAD_DATE LOAD_END_DATE

10 Partitioning by Load Date: Use Cases Master Data (Changing Data) Product Customer Employee Beer (general product description) Transactional Data (Events) Sales Transaction Order Web Tracking Brew (particular brew batch)

11 Partitioning by Load Date: Overview S_Beer H_Beer L_Beer_Brew H_Brew S_Recipe S_Brew_Journal

12 Partitioning by Load Date: Hub Example CREATE TABLE H_BREW ( H_Brew_Key RAW (16) NOT NULL, Brew_No NUMBER( 4) NOT NULL, Load_Date DATE NOT NULL, Record_Source VARCHAR2 (4 CHAR) NOT NULL ) PARTITION BY RANGE (Load_Date) INTERVAL(numtoyminterval(1,'MONTH')) (PARTITION p_old_data VALUES LESS THAN (TO_DATE(' ','dd-mm-yyyy')));

13 Partitioning by Load Date: Satellite Example CREATE TABLE S_BREW_JOURNAL ( H_Brew_Key RAW (16) NOT NULL, Load_Date DATE NOT NULL, Brew_Date DATE NOT, Brewer VARCHAR2 (40),... Record_Source VARCHAR2 (4 CHAR) NOT NULL ) PARTITION BY RANGE (Load_Date) INTERVAL(numtoyminterval(1,'MONTH')) (PARTITION p_old_data VALUES LESS THAN (TO_DATE(' ','dd-mm-yyyy')));

14 Partitioning by Load Date ü û ü ü ü Partition Pruning Partition-wise Join Rolling History Data Distribution Partition Exchange Restrictions: Only for transactional data Global indexes should be avoided

15 Partitioning by Load Date: Global Index Issue How to Avoid Global Indexes (PK/UK on Hubs)? ALTER TABLE H_BREW ADD CONSTRAINT H_BREW_PK PRIMARY KEY (H_Brew_Key) RELY DISABLE NOVALIDATE; ALTER TABLE H_BREW ADD CONSTRAINT H_BREW_UN UNIQUE (Brew_No) RELY DISABLE NOVALIDATE; ALTER TABLE S_BREW_JOURNAL ADD CONSTRAINT S_BREW_JOURNAL_PK PRIMARY KEY (H_Brew_Key, Load_Date) RELY DISABLE NOVALIDATE; ALTER TABLE S_BREW_JOURNAL ADD CONSTRAINT H_BREW_S_BREW_JOURNAL_FK FOREIGN KEY (H_Brew_Key) REFERENCES H_BREW (H_Brew_Key) RELY DISABLE NOVALIDATE;

16 Partitioning by Load End Date

17 Partitioning by Load End Date: Find Current Versions SID LOAD_DATE LOAD_END_DATE

18 Partitioning by Load End Date: Overview H_Beer L_Beer_Brew H_Brew S_Beer S_Recipe S_Brew_Journal History Partition Current Partition History Partition Current Partition History Partition Current Partition

19 Partitioning by Load End Date: Satellite Example CREATE TABLE S_RECIPE ( H_Beer_Key RAW (16) NOT NULL, Load_Date DATE NOT NULL, Load_End_Date DATE DEFAULT ON NULL TO_DATE(' ', 'dd-mm-yyyy'), Start_Temp NUMBER (3), Mashing_Time_1 NUMBER (3), Mashing_Temp_1 NUMBER (3), Record_Source VARCHAR2 (4 CHAR) NOT NULL ) ENABLE ROW MOVEMENT PARTITION BY LIST (Load_End_Date) (PARTITION p_current VALUES (TO_DATE(' ', 'dd-mm-yyyy')),partition p_history VALUES (DEFAULT));

20 Partitioning by Load End Date ü û û ü ü Partition Pruning Partition-wise Join Rolling History Data Distribution Partition Exchange Restrictions: Only for Satellites, requires LOAD_END_DATE ENABLE ROW MOVEMENT required

21 Partitioning by Load End Date: Partition Exchange Special Implementation of Satellite Load Jobs Only useful if most versions are replaced Insert unchanged versions S_Recipe 1. Load Table contains All new versions All unchanged versions Load Table Partition Exchange Current Partition History Partition 2. Move old versions to history partition Insert rows with load end date Insert new versions Move old versions 3. Exchange current partition

22 Partitioning by Hub Key

23 Partitioning by Hub Key Hub proc (QC) Satellite Improve Join Performance: Full Partition-wise Joins part 1 slave1 part 1 Between Hubs and Satellites Between Links and Hubs part 2 slave2 part 2 Equal Distribution with HASH Partitioning Run Extraction Queries in Parallel part 3 slave3 part 3 Partition Key: Primary Key of Hub Foreign Key of Satellite / Link part 4 slave4 part 4 Link: Composite HASH-HASH Partitioning

24 Partitioning by Hub Key: Overview S_Beer H_Beer L_Beer_Brew H_Brew S_Recipe S_Brew_Journal

25 Partitioning by Hub Key: Hub Example CREATE TABLE H_BEER ( H_Beer_Key RAW (16) NOT NULL, Beer_Name VARCHAR2 (40) NOT NULL, Load_Date DATE NOT NULL, Record_Source VARCHAR2 (4 CHAR) NOT NULL ) PARTITION BY HASH (H_Beer_Key) PARTITIONS 8;

26 Partitioning by Hub Key: Satellite Example CREATE TABLE S_BEER_DESCRIPTION ( H_Beer_Key RAW (16) NOT NULL, Load_Date DATE NOT NULL, Style VARCHAR2 (40), ABV NUMBER (3,1), IBU NUMBER (3), Seasonal VARCHAR2 (10), Label_Color VARCHAR2 (10), Record_Source VARCHAR2 (4 CHAR) NOT NULL ) PARTITION BY HASH (H_Beer_Key) PARTITIONS 8;

27 Partitioning by Hub Key: Link Example CREATE TABLE L_BEER_BREW ( L_Beer_Brew_Key RAW (16) NOT NULL, H_Beer_Key RAW (16) NOT NULL, H_Brew_Key RAW (16) NOT NULL, Load_Date DATE NOT NULL, Record_Source VARCHAR2 (4 CHAR) NOT NULL ) PARTITION BY HASH (H_Beer_Key) SUBPARTITION BY HASH (H_Brew_Key) SUBPARTITIONS 8 PARTITIONS 8;

28 Partitioning by Hub Key û ü û ü û Partition Pruning Partition-wise Join Rolling History Data Distribution Partition Exchange Restrictions: Maximal two partition keys per Link

29 Conclusion

30 Partitioning by Hub Key: Benefits Load Date 1) Load End Date 2) Hub Key Partition Pruning ü ü û Partition-wise Join û û ü Rolling History ü û û Data Distribution ü ü ü Partition Exchange ü ü û 1) Only for transactional data 2) Only for Satellites

31 White Paper: White Paper Dani Schnider WHITE PAPER Page 1 of 18 Date Download:

32 DOAG 2017 #opencompany Stand: 3. Stock, direkt an der Rolltreppe Wir teilen unser Knowhow! Einfach vorbei kommen, Live-Präsentationen und Dokumentenarchiv T-Shirts, Gewinnspiel und mehr Wir freuen uns wenn Sie vorbei schauen

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

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

Data Vault Partitioning Strategies WHITE PAPER

Data Vault Partitioning Strategies WHITE PAPER Dani Schnider Data Vault ing Strategies WHITE PAPER Page 1 of 18 www.trivadis.com Date 09.02.2018 CONTENTS 1 Introduction... 3 2 Data Vault Modeling... 4 2.1 What is Data Vault Modeling? 4 2.2 Hubs, Links

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

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

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

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

Exadata Resource Management. teile und herrsche!

Exadata Resource Management. teile und herrsche! 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

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

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

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

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

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

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

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

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

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

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

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

How Autonomous is the Oracle Autonomous Data Warehouse?

How Autonomous is the Oracle Autonomous Data Warehouse? How Autonomous is the Oracle Autonomous Data Warehouse? Christian Antognini / Dani Schnider @chrisantognini @dani_schnider antognini.ch/blog danischnider.wordpress.com BASLE BERN BRUGG DÜSSELDORF FRANKFURT

More information

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

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

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

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

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

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

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

Decision Guidance. Data Vault in Data Warehousing

Decision Guidance. Data Vault in Data Warehousing Decision Guidance Data Vault in Data Warehousing DATA VAULT IN DATA WAREHOUSING Today s business environment requires data models, which are resilient to change and enable the integration of multiple data

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

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

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

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

Adaptive

Adaptive Christian Antognini @ChrisAntognini antognini.ch/blog BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA ZURICH @ChrisAntognini Senior

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

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

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

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

Microservices with Kafka Ecosystem. Guido Schmutz

Microservices with Kafka Ecosystem. Guido Schmutz Microservices with Kafka Ecosystem Guido Schmutz @gschmutz doag2017 Guido Schmutz Working at Trivadis for more than 20 years Oracle ACE Director for Fusion Middleware and SOA Consultant, Trainer Software

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

CRI Event-Driven BI. Peter Welkenbach Principal Consultant Trivadis GmbH. Düsseldorf,

CRI Event-Driven BI. Peter Welkenbach Principal Consultant Trivadis GmbH. Düsseldorf, CRI Event-Driven BI Peter Welkenbach Principal Consultant Trivadis GmbH Düsseldorf, 11.03.2008 Basel Baden Bern Lausanne Zurich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg Munich Stuttgart Vienna The

More information

Apache Tamaya Configuring your Containers...

Apache Tamaya Configuring your Containers... Apache Tamaya Configuring your Containers... BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENF HAMBURG KOPENHAGEN LAUSANNE MÜNCHEN STUTTGART WIEN ZÜRICH About Me Anatole Tresch Principal Consultant,

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

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

CON Apache Kafka

CON Apache Kafka CON6156 - Apache Kafka Scalable Message Processing and more! Guido Schmutz 2.10.2017 @gschmutz guidoschmutz.wordpress.com BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENF HAMBURG KOPENHAGEN

More information

Edition-Based Redefinition

Edition-Based Redefinition Edition-Based Redefinition Janina Patolla Trivadis AG, Basel Basel Baden Bern Brugg Lausanne Zurich Düsseldorf Frankfurt/M. Freiburg i. Br. Hamburg Munich Stuttgart Vienna Introduction Upgrading critical

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

Oracle 11g Partitioning new features and ILM

Oracle 11g Partitioning new features and ILM Oracle 11g Partitioning new features and ILM H. David Gnau Sales Consultant NJ Mark Van de Wiel Principal Product Manager The following is intended to outline our general product

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

Designing Database Solutions for Microsoft SQL Server 2012 MOC 20465

Designing Database Solutions for Microsoft SQL Server 2012 MOC 20465 Designing Database Solutions for Microsoft SQL Server 2012 MOC 20465 Dieses Seminar behandelt das Design und die Überwachung von hochperformanten und hochverfügbaren Datenlösungen mit SQL Server 2012.

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

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

Scripting OBIEE Is UDML and XML all you need?

Scripting OBIEE Is UDML and XML all you need? Scripting OBIEE Is UDML and XML all you need? Andreas Nobbmann Consultant Business Intelligence Andreas.Nobbmann@trivadis.com Brighton, May 14th, 2009 Basel Baden Bern Lausanne Zürich Düsseldorf Frankfurt/M.

More information

Oracle Database Service High Availability with Data Guard?

Oracle Database Service High Availability with Data Guard? Oracle Database Service High Availability with Data Guard? Robert Bialek Senior Principal Consultant @RobertPBialek doag2017 Who Am I Senior Principal Consultant and Trainer at Trivadis GmbH in Munich.

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

Big Data Infrastructure The Oracle Way. Daniel Steiger

Big Data Infrastructure The Oracle Way. Daniel Steiger Big Data Infrastructure The Oracle Way. Daniel Steiger BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA ZURICH About... Daniel Steiger

More information

CHERRY GSP TEAM

CHERRY GSP TEAM CHERRY GSP TEAM 2017 1 THE COMPANY CHERRY GSP TEAM 2017 2 COMPANY THE CHERRY HISTORY Walter L. Cherry, founder of CHERRY Corporation. In 1953 he laid the foundation for a classic American success story,

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

Safe Harbor Statement

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

More information

MythBusters Globalization Support

MythBusters Globalization Support MythBusters Globalization Support Avoid Data Corruption Christian Gohmann @CGohmannDE nloug_tech18 About me Christian Gohmann Senior Consultant at Trivadis GmbH, Düsseldorf (Germany) Instructor since 2014

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

Partitioning in Oracle 12 c. Bijaya K Adient

Partitioning in Oracle 12 c. Bijaya K Adient Partitioning in Oracle 12 c Bijaya K Pusty @ Adient Partitioning in Oracle 12 c AGENDA Concepts of Partittioning? Partitioning Basis Partitioning Strategy Additions Improvments in 12c Partitioning Indexes

More information

Object-Relational Mapping Tools let s talk to each other!

Object-Relational Mapping Tools let s talk to each other! Object-Relational Mapping Tools let s talk to each other! BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MUNICH STUTTGART VIENNA ZURICH Agenda O/R Mappers

More information

MySQL HA vs. HA. DOAG Konferenz 2016, Nürnberg. Oli Sennhauser. Senior MySQL Consultant, FromDual GmbH.

MySQL HA vs. HA. DOAG Konferenz 2016, Nürnberg. Oli Sennhauser. Senior MySQL Consultant, FromDual GmbH. MySQL HA vs. HA DOAG Konferenz 2016, Nürnberg Oli Sennhauser Senior MySQL Consultant, FromDual GmbH oli.sennhauser@fromdual.com 1 / 20 Über FromDual GmbH Support Beratung remote-dba Schulung 2 / 20 Contents

More information

SQL: Concepts. Todd Bacastow IST 210: Organization of Data 2/17/ IST 210

SQL: Concepts. Todd Bacastow IST 210: Organization of Data 2/17/ IST 210 SQL: Concepts Todd Bacastow IST 210: Organization of Data 2/17/2004 1 Design questions How many entities are there? What are the major entities? What are the attributes of each entity? Is there a unique

More information

Analytic views in Oracle 12.2

Analytic views in Oracle 12.2 The virtual cube Kim Berg Hansen Senior Consultant BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENF HAMBURG KOPENHAGEN LAUSANNE MÜNCHEN STUTTGART WIEN ZÜRICH About me Danish geek SQL & PL/SQL

More information

Exploring Oracle Database 11g/12c Partitioning New Features and Best Practices. Ami Aharonovich Oracle ACE & OCP

Exploring Oracle Database 11g/12c Partitioning New Features and Best Practices. Ami Aharonovich Oracle ACE & OCP Exploring Oracle Database 11g/12c Partitioning New Features and Best Practices Ami Aharonovich Oracle ACE & OCP Ami@DBAces.com About Me Oracle ACE Oracle Certified Professional DBA (OCP) Founder and CEO,

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

Use Cases for Partitioning. Bill Karwin Percona, Inc

Use Cases for Partitioning. Bill Karwin Percona, Inc Use Cases for Partitioning Bill Karwin Percona, Inc. 2011-02-16 1 Why Use Cases?! Anyone can read the reference manual: http://dev.mysql.com/doc/refman/5.1/en/partitioning.html! This talk is about when

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

Pimping up Industry Devices with Rasperry Pi, Vert.x und Java 8

Pimping up Industry Devices with Rasperry Pi, Vert.x und Java 8 Pimping up Industry Devices with Rasperry Pi, Vert.x und Java 8 Anatole Tresch Principal Consultant @atsticks BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE

More information

DATA WAREHOUSE CASE STUDY ANDREAS BUCKENHOFER, DAIMLER TSS

DATA WAREHOUSE CASE STUDY ANDREAS BUCKENHOFER, DAIMLER TSS A company of Daimler AG LECTURE @DHBW: DATA WAREHOUSE CASE STUDY ANDREAS BUCKENHOFER, DAIMLER TSS ABOUT ME Andreas Buckenhofer Senior DB Professional andreas.buckenhofer@daimler.com Since 2009 at Daimler

More information

Partitioning Tables and Indexing Them

Partitioning Tables and Indexing Them Partitioning Tables and Indexing Them Hemant K Chitale Product Specialist, Standard Chartered Bank Oracle ACE `whoami` DBA with 20 years experience on wide variety of platforms DBA team lead and consultant

More information

Kerberos and Databases a Success

Kerberos and Databases a Success Kerberos and Databases a Success or the History of a Varied Journey Stefan Oehrli BASEL BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENF HAMBURG KOPENHAGEN LAUSANNE MÜNCHEN STUTTGART WIEN ZÜRICH

More information

Search Engines Chapter 2 Architecture Felix Naumann

Search Engines Chapter 2 Architecture Felix Naumann Search Engines Chapter 2 Architecture 28.4.2009 Felix Naumann Overview 2 Basic Building Blocks Indexing Text Acquisition iti Text Transformation Index Creation Querying User Interaction Ranking Evaluation

More information

Sichere Software vom Java-Entwickler

Sichere Software vom Java-Entwickler Sichere Software vom Java-Entwickler Dominik Schadow Java Forum Stuttgart 05.07.2012 BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN We can no longer

More information

DATA WAREHOUSE PART XXI: DB SPECIFICS ANDREAS BUCKENHOFER, DAIMLER TSS

DATA WAREHOUSE PART XXI: DB SPECIFICS ANDREAS BUCKENHOFER, DAIMLER TSS A company of Daimler AG LECTURE @DHBW: DATA WAREHOUSE PART XXI: DB SPECIFICS ANDREAS BUCKENHOFER, DAIMLER TSS ABOUT ME Andreas Buckenhofer Senior DB Professional andreas.buckenhofer@daimler.com Since 2009

More information

Data Vault Modeling & Methodology. Technical Side and Introduction Dan Linstedt, 2010,

Data Vault Modeling & Methodology. Technical Side and Introduction Dan Linstedt, 2010, Data Vault Modeling & Methodology Technical Side and Introduction Dan Linstedt, 2010, http://danlinstedt.com Technical Definition The Data Vault is a detail oriented, historical tracking and uniquely linked

More information

Real-World Performance Training Star Query Prescription

Real-World Performance Training Star Query Prescription Real-World Performance Training Star Query Prescription Real-World Performance Team Dimensional Queries 1 2 3 4 The Dimensional Model and Star Queries Star Query Execution Star Query Prescription Edge

More information

DOAG Conference Edition. Marco Mischke, Experts for database solutions.

DOAG Conference Edition. Marco Mischke, Experts for database solutions. DOAG Conference 2017 AWR and ASH for Standard Edition Marco Mischke, 22.11.2017 About me Oracle DBA since 2000 and Version 7.3.4 Certified Professional 10g, 11g RAC / Cluster Certified Expert 10g, 11g,

More information

VLDB. Partitioning Compression

VLDB. Partitioning Compression VLDB Partitioning Compression Oracle Partitioning in Oracle Database 11g Oracle Partitioning Ten Years of Development Core functionality Performance Manageability Oracle8 Range partitioning

More information

Data Warehousing & Big Data at OpenWorld for your smartphone

Data Warehousing & Big Data at OpenWorld for your smartphone Data Warehousing & Big Data at OpenWorld for your smartphone Smartphone and tablet apps, helping you get the most from this year s OpenWorld Access to all the most important information Presenter profiles

More information

ORACLE DATA SHEET ORACLE PARTITIONING

ORACLE DATA SHEET ORACLE PARTITIONING Note: This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development,

More information

COURSE LISTING. Courses Listed. Training for Applications with Financial Accounting in SAP Hybris Billing. 9 September 2018 (17:26 BST) Grundlagen

COURSE LISTING. Courses Listed. Training for Applications with Financial Accounting in SAP Hybris Billing. 9 September 2018 (17:26 BST) Grundlagen Training for Applications with Financial Accounting in SAP Hybris Billing Courses Listed Grundlagen AC233 - SAP Hybris Billing: Sales & Order Management in SAP CRM Fortgeschrittene AC235 - SAP Convergent

More information

Recovery without Backup. All Data Lost?

Recovery without Backup. All Data Lost? An Overview and Field Report Igor Romansky Peter Jensch Trivadis GmbH, Stuttgart DOAG Regio-Treffen Stuttgart, July 21th 2016 BASLE BERN BRUGG DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN

More information

Developing Microsoft Azure Solutions MOC 20532

Developing Microsoft Azure Solutions MOC 20532 Developing Microsoft Azure Solutions MOC 20532 In dem Kurs 20532A: Developing Microsoft Azure Solutions lernen Sie, wie Sie die Funktionalität einer vorhandenen ASP.NET MVC Anwendung so erweitern, dass

More information

Keys are fields in a table which participate in below activities in RDBMS systems:

Keys are fields in a table which participate in below activities in RDBMS systems: Keys are fields in a table which participate in below activities in RDBMS systems: 1. To create relationships between two tables. 2. To maintain uniqueness in a table. 3. To keep consistent and valid data

More information

The On-Commit Database Trigger. Philipp Salvisberg

The On-Commit Database Trigger. Philipp Salvisberg Philipp Salvisberg @phsalvisberg DOAG2017 Our Company Trivadis is a market leader in IT consulting, system integration, solution engineering and the provision of IT services focusing on and technologies

More information

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

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

More information

Summary. Summary. 5. Optimization. 5.1 Partitioning. 5.1 Partitioning. 26-Nov-10. B-Trees are not fit for multidimensional data R-Trees

Summary. Summary. 5. Optimization. 5.1 Partitioning. 5.1 Partitioning. 26-Nov-10. B-Trees are not fit for multidimensional data R-Trees Summary Data Warehousing & Data Mining Wolf-Tilo Balke Silviu Homoceanu Institut für Informationssysteme Technische Universität Braunschweig http://www.ifis.cs.tu-bs.de B-Trees are not fit for multidimensional

More information

Land Delivery method & Location Release der Lösung Sprache Zeitraum Preis

Land Delivery method & Location Release der Lösung Sprache Zeitraum Preis Training for Applications with Financial Accounting in SAP Hybris Billing Courses Listed Grundlagen AC233 - SAP Hybris Billing: Sales & Order Management in SAP CRM Fortgeschrittene AC235 - SAP Convergent

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

R E C H E N Z E N T R U M 5. 3

R E C H E N Z E N T R U M 5. 3 RECHENZENTRUM 5.3 HERZLICH WILLKOMMEN ZUR DOAG KONFERENZ 2017 Rechenzentrum 5.3 Christoph Münch Thorsten Wussow Slix Ralf Ernst Bundesagentur für Arbeit AGENDA Intro Motivation Ideas behind the concept

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

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!  We offer free update service for one year PASS4TEST \ http://www.pass4test.com We offer free update service for one year Exam : 70-762 Title : Developing SQL Databases Vendor : Microsoft Version : DEMO Get Latest & Valid 70-762 Exam's Question

More information

Key Data Warehousing Features in Oracle10g: A Comparative Performance Analysis. An Oracle White Paper April 2005

Key Data Warehousing Features in Oracle10g: A Comparative Performance Analysis. An Oracle White Paper April 2005 Key Data Warehousing Features in Oracle10g: A Comparative Performance Analysis An Oracle White Paper April 2005 Key Data Warehousing Features in Oracle10g: A Comparative Performance Analysis Executive

More information

Data Warehousing and Decision Support, part 2

Data Warehousing and Decision Support, part 2 Data Warehousing and Decision Support, part 2 CS634 Class 23, Apr 27, 2016 Slides based on Database Management Systems 3 rd ed, Ramakrishnan and Gehrke, Chapter 25 pid 11 12 13 pid timeid locid sales Multidimensional

More information

A Road Map for Advancing Your Career

A Road Map for Advancing Your Career CERTIFIED BUSINESS INTELLIGENCE PROFESSIONAL TDWI CERTIFICATION A Road Map for Advancing Your Career Get recognized as an industry leader. Get ahead of the competition. Advance your career with CBIP. Professionals

More information

PostgreSQL Introduction for Oracle DBAs

PostgreSQL Introduction for Oracle DBAs PostgreSQL Introduction for Oracle DBAs Mathias Zarick, Vienna, 22.02.2019 @Trivadis BASEL BERN BRUGG BUCHAREST DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. GENEVA HAMBURG COPENHAGEN LAUSANNE MANNHEIM MUNICH

More information