SlideShare a Scribd company logo
Partitioning Your Oracle Data Warehouse 
– Just a Simple Task? 
Dani Schnider 
Principal Consultant 
Business Intelligence 
dani.schnider@trivadis.com 
Oracle Open World 2009, 
San Francisco 
BASEL BERN BRUGG LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
1
Dani Schnider 
 Principal Consultant und 
DWH/BI Lead Architect 
bei Trivadis in Zürich 
 Kursleiter für Trivadis-Kurse 
über Data Warehousing, 
SQL Optimierung und Oracle 
Warehouse Builder 
 Co-Autor des Buches «Data 
Warehousing mit Oracle» 
2014 © Trivadis 
2 
Partitioning Your Oracle Data Warehouse 
2009
Mit über 600 IT- und Fachexperten bei Ihnen vor Ort 
2014 © Trivadis 
11 Trivadis Niederlassungen mit 
über 600 Mitarbeitenden 
200 Service Level Agreements 
Mehr als 4'000 Trainingsteilnehmer 
Forschungs- und Entwicklungs-budget: 
CHF 5.0 / EUR 4 Mio. 
Finanziell unabhängig und 
nachhaltig profitabel 
Erfahrung aus mehr als 1'900 
Projekten pro Jahr bei über 800 
Kunden 
Stand 12/2012 
Hamburg 
Düsseldorf 
Frankfurt 
Freiburg 
München 
Wien 
Basel 
Bern Zürich 
Lausanne 
3 
Stuttgart 
Partitioning Your Oracle Data Warehouse 
2009 
3
AGENDA 
1. Partitioning Concepts 
2. The Right Partition Key 
3. Large Dimensions 
4. Partition Maintenance 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
4
Partitioning – The Basic Idea 
 Decompose tables/indexes into smaller pieces 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
5
Partitioning Methods in Oracle 
 Additionally: Interval Partitioning, Reference Partitioning, Virtual 
Column-Based Partitioning 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
6
Benefits of Partitioning 
Partition Pruning 
 Reduce I/O: Only relevant partitions have to be accessed 
Partition-Wise Joins 
 Full PWJ: Join two equi-partitioned tables (parallel or serial) 
 Partial PWJ: Join partitioned with non-partitioned table (parallel) 
Rolling History 
 Create new partitions in periodical intervals 
 Drop old partitions in periodical intervals 
Manageability 
 Backups, statistics gathering, compressing on individual partitions 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
7
AGENDA 
1. Partitioning Concepts 
2. The Right Partition Key 
3. Large Dimensions 
4. Partition Maintenance 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
8
Partition Methods and Partition Keys 
 Important questions for Partitioning: 
 Which tables should be partitioned? 
 Which partition method should be used? 
 Which partition key(s) should be used? 
 Partition key is important for 
 Query optimization (partition pruning, partition-wise 
2014 © Trivadis 
joins) 
 ETL performance (partition exchange, rolling 
history) 
 Typically in data warehouses 
 RANGE partitioning of fact tables on DATE 
column 
 But which DATE column? 
Partitioning Your Oracle Data Warehouse 
2009 
9
Practical Example 1: Airline Company 
 Flight bookings are stored in partitioned table 
 RANGE partitioning per month, partition key: booking date 
 Problem: Most of the reports are based on the flight date 
 Flights can be booked 11 months ahead 
 11 partitions must be read of one particular flight date 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
10
Practical Example 1: Airline Company 
 Solution: partition key flight date instead of booking date 
 Data is loaded into current and future partitions 
 Reports based on flight date read only one partition 
 Reports based on booking date must read 11 (small) partitions 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
11
Practical Example 1: Airline Company 
 Better solution: Composite RANGE-RANGE partitioning 
 RANGE partitioning on flight date 
 RANGE subpartitioning on booking date 
 More flexibility for reports on flight date and/or on booking date 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
12
Practical Example 2: International Bank 
 Account balance data of international customers 
 Monthly files of different locations (countries) 
 Correction files replace last delivery for the same month/country 
 Original approach 
 Technical load id for each combination of month/country 
 LIST partitioning on load id 
 Files are loaded in stage table 
 Partition exchange with current partition 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
13
Practical Example 2: International Bank 
 Problem: partition key load id is useless for queries 
 Queries are based on balance date 
2014 © Trivadis 
 Solution 
 RANGE partitioning on balance date 
 LIST subpartitions on country code 
 Partition exchange with subpartitions 
Partitioning Your Oracle Data Warehouse 
2009 
14
AGENDA 
1. Partitioning Concepts 
2. The Right Partition Key 
3. Large Dimensions 
4. Partition Maintenance 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
15
Partitioning in Star Schema 
2014 © Trivadis 
 Fact Table 
 Usually „big“ (millions to billions of rows) 
 RANGE partitioning by DATE column 
 Dimension Tables 
 Usually „small“ (10 to 10000 rows) 
 In most cases not partitioned 
 But how about large dimensions? 
 e.g. customer dimension with millions of 
rows 
Partitioning Your Oracle Data Warehouse 
2009 
16
HASH Partitioning on Large Dimension 
 DIM_CUSTOMER 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
17 
 HASH Partitioning 
 Partition Key: CUSTOMER_ID 
 FCT_SALES 
 Composite RANGE-HASH Partitioning 
 Partition Key: SALES_DATE 
 Subpartition Key: CUSTOMER_ID
HASH Partitioning on Large Dimension 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
18
Practical Example 3: Telecommunication Company 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
19
LIST Partitioning on Large Dimension 
 DIM_CUSTOMER 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
20 
 LIST Partitioning 
 Partition Key: COUNTRY_CODE 
 FCT_SALES 
 Composite RANGE-LIST Partitioning 
 Partition Key: SALES_DATE 
 Subpartition Key: COUNTRY_CODE 
(denormalized column in fact table)
LIST Partitioning on Large Dimension 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
21
 New approach for partition pruning on join conditions 
 A bloom filter is created based on the dimension table restriction 
 Dynamic partition pruning based on that bloom filter 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
22
AGENDA 
1. Partitioning Concepts 
2. The Right Partition Key 
3. Large Dimensions 
4. Partition Maintenance 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
23
Practical Example 3: Monthly Partition Maintenance 
 Requirements 
 Monthly partitions on all fact tables, daily inserts into current partitions 
 3 years of history (36 partitions per table) 
 Table compression to increase full table scan performance 
 Backup of current partitions only 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
24
Practical Example 3: Monthly Partition Maintenance 
1. Set next tablespace to read-write 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
25
Practical Example 3: Monthly Partition Maintenance 
1. Set next tablespace to read-write 
2. Drop oldest partition 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
26
Practical Example 3: Monthly Partition Maintenance 
1. Set next tablespace to read-write 
2. Drop oldest partition 
3. Create new partition for next month 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
27
Practical Example 3: Monthly Partition Maintenance 
1. Set next tablespace to read-write 
2. Drop oldest partition 
3. Create new partition for next month 
4. Compress current partition 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
28
Practical Example 3: Monthly Partition Maintenance 
1. Set next tablespace to read-write 
2. Drop oldest partition 
3. Create new partition for next month 
4. Compress current partition 
5. Set tablespace to read-only 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
29
Interval Partitioning 
 In Oracle11g, the creation of new partitions can be automated 
2014 © Trivadis 
 Example: 
Partitioning Your Oracle Data Warehouse 
2009 
30
Gathering Optimizer Statistics 
 DBMS_STATS parameter GRANULARITY defines statistics level 
2014 © Trivadis 
 Example: 
Partitioning Your Oracle Data Warehouse 
2009 
31
Problem of Global Statistics 
 Global statistics are essential for good execution plans 
 num_distinct, low_value, high_value, density, histograms 
 Gathering global statistics is time-consuming 
 All partitions must be scanned 
 Typical approach 
 After loading data, only modified partition statistics are gathered 
 Global statistics are gathered on regular time base (e.g. weekends) 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
32
Incremental Global Statistics 
 Synopsis-based gathering of statistics 
 For each partition a synopsis is stored in SYSAUX tablespace 
 Statistics metadata for partition and columns of partition 
 Global statistics by aggregating the synopses from each partition 
 Activate incremental global statistics: 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
33
Partitioning Your Data Warehouse – Core Messages 
2014 © Trivadis 
 Oracle Partitioning is a powerful option 
– not only for data warehouses 
 The concept is simple, but the reality 
can be complex 
 Many new partitioning features added 
in Oracle Database 11g 
 New Composite Partitioning methods 
 Interval Partitioning 
 Join-Filter Pruning 
 Incremental Global Statistics 
Partitioning Your Oracle Data Warehouse 
2009 
34
Thank you. 
Dani Schnider 
Principal Consultant 
Business Intelligence 
dani.schnider@trivadis.com 
Oracle Open World 2009, 
San Francisco 
BASEL BERN BRUGG LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN 
2014 © Trivadis 
Partitioning Your Oracle Data Warehouse 
2009 
35
Ad

More Related Content

What's hot (19)

Using SSRS Reports with SSAS Cubes
Using SSRS Reports with SSAS CubesUsing SSRS Reports with SSAS Cubes
Using SSRS Reports with SSAS Cubes
Code Mastery
 
From Raw Data to Analytics with No ETL
From Raw Data to Analytics with No ETLFrom Raw Data to Analytics with No ETL
From Raw Data to Analytics with No ETL
Cloudera, Inc.
 
OLAP
OLAPOLAP
OLAP
Slideshare
 
Star schema my sql
Star schema   my sqlStar schema   my sql
Star schema my sql
deathsubte
 
Data Warehouse Best Practices
Data Warehouse Best PracticesData Warehouse Best Practices
Data Warehouse Best Practices
Eduardo Castro
 
Data warehouse
Data warehouseData warehouse
Data warehouse
RajThakuri
 
Data Warehouse Logical Design using Mysql
Data Warehouse Logical Design using MysqlData Warehouse Logical Design using Mysql
Data Warehouse Logical Design using Mysql
HAFIZ Islam
 
Oltp vs olap
Oltp vs olapOltp vs olap
Oltp vs olap
Mr. Fmhyudin
 
Oracle GoldenGate for Oracle DBAs
Oracle GoldenGate for Oracle DBAsOracle GoldenGate for Oracle DBAs
Oracle GoldenGate for Oracle DBAs
Guatemala User Group
 
Getting the most out of your Oracle 12.2 Optimizer (i.e. The Brain)
Getting the most out of your Oracle 12.2 Optimizer (i.e. The Brain)Getting the most out of your Oracle 12.2 Optimizer (i.e. The Brain)
Getting the most out of your Oracle 12.2 Optimizer (i.e. The Brain)
SolarWinds
 
Oracle
OracleOracle
Oracle
Sandeep Kamath
 
Teradata 13.10
Teradata 13.10Teradata 13.10
Teradata 13.10
Teradata
 
Making MySQL Great For Business Intelligence
Making MySQL Great For Business IntelligenceMaking MySQL Great For Business Intelligence
Making MySQL Great For Business Intelligence
Calpont
 
Oracle 12c
Oracle 12cOracle 12c
Oracle 12c
Tank Bhavin
 
Data Warehouse
Data Warehouse Data Warehouse
Data Warehouse
MadhuriNigam1
 
OLAP
OLAPOLAP
OLAP
Ashir Ali
 
Part 3 - Data Warehousing Lecture at BW Cooperative State University (DHBW)
Part 3 - Data Warehousing Lecture at BW Cooperative State University (DHBW)Part 3 - Data Warehousing Lecture at BW Cooperative State University (DHBW)
Part 3 - Data Warehousing Lecture at BW Cooperative State University (DHBW)
Andreas Buckenhofer
 
Day 02 sap_bi_overview_and_terminology
Day 02 sap_bi_overview_and_terminologyDay 02 sap_bi_overview_and_terminology
Day 02 sap_bi_overview_and_terminology
tovetrivel
 
Consolidate More: High Performance Primary Deduplication in the Age of Abunda...
Consolidate More: High Performance Primary Deduplication in the Age of Abunda...Consolidate More: High Performance Primary Deduplication in the Age of Abunda...
Consolidate More: High Performance Primary Deduplication in the Age of Abunda...
Hitachi Vantara
 
Using SSRS Reports with SSAS Cubes
Using SSRS Reports with SSAS CubesUsing SSRS Reports with SSAS Cubes
Using SSRS Reports with SSAS Cubes
Code Mastery
 
From Raw Data to Analytics with No ETL
From Raw Data to Analytics with No ETLFrom Raw Data to Analytics with No ETL
From Raw Data to Analytics with No ETL
Cloudera, Inc.
 
Star schema my sql
Star schema   my sqlStar schema   my sql
Star schema my sql
deathsubte
 
Data Warehouse Best Practices
Data Warehouse Best PracticesData Warehouse Best Practices
Data Warehouse Best Practices
Eduardo Castro
 
Data warehouse
Data warehouseData warehouse
Data warehouse
RajThakuri
 
Data Warehouse Logical Design using Mysql
Data Warehouse Logical Design using MysqlData Warehouse Logical Design using Mysql
Data Warehouse Logical Design using Mysql
HAFIZ Islam
 
Getting the most out of your Oracle 12.2 Optimizer (i.e. The Brain)
Getting the most out of your Oracle 12.2 Optimizer (i.e. The Brain)Getting the most out of your Oracle 12.2 Optimizer (i.e. The Brain)
Getting the most out of your Oracle 12.2 Optimizer (i.e. The Brain)
SolarWinds
 
Teradata 13.10
Teradata 13.10Teradata 13.10
Teradata 13.10
Teradata
 
Making MySQL Great For Business Intelligence
Making MySQL Great For Business IntelligenceMaking MySQL Great For Business Intelligence
Making MySQL Great For Business Intelligence
Calpont
 
Part 3 - Data Warehousing Lecture at BW Cooperative State University (DHBW)
Part 3 - Data Warehousing Lecture at BW Cooperative State University (DHBW)Part 3 - Data Warehousing Lecture at BW Cooperative State University (DHBW)
Part 3 - Data Warehousing Lecture at BW Cooperative State University (DHBW)
Andreas Buckenhofer
 
Day 02 sap_bi_overview_and_terminology
Day 02 sap_bi_overview_and_terminologyDay 02 sap_bi_overview_and_terminology
Day 02 sap_bi_overview_and_terminology
tovetrivel
 
Consolidate More: High Performance Primary Deduplication in the Age of Abunda...
Consolidate More: High Performance Primary Deduplication in the Age of Abunda...Consolidate More: High Performance Primary Deduplication in the Age of Abunda...
Consolidate More: High Performance Primary Deduplication in the Age of Abunda...
Hitachi Vantara
 

Similar to Partitioning your Oracle Data Warehouse - Just a simple task? (20)

FDMEE Can Do That?
FDMEE Can Do That?FDMEE Can Do That?
FDMEE Can Do That?
Alithya
 
Archiving and GDPR compliance presentation DVM GDPR - SAP.pdf
Archiving and GDPR compliance presentation DVM GDPR - SAP.pdfArchiving and GDPR compliance presentation DVM GDPR - SAP.pdf
Archiving and GDPR compliance presentation DVM GDPR - SAP.pdf
NavinnSomaal
 
Db2 update day 2015 managing db2 with ibm db2 tools svenn aage
Db2 update day 2015   managing db2 with ibm db2 tools svenn aageDb2 update day 2015   managing db2 with ibm db2 tools svenn aage
Db2 update day 2015 managing db2 with ibm db2 tools svenn aage
Peter Schouboe
 
Nw2008 tips tricks_edw_v10
Nw2008 tips tricks_edw_v10Nw2008 tips tricks_edw_v10
Nw2008 tips tricks_edw_v10
Harsha Gowda B R
 
Overcoming Data Gravity in Multi-Cloud Enterprise Architectures
Overcoming Data Gravity in Multi-Cloud Enterprise ArchitecturesOvercoming Data Gravity in Multi-Cloud Enterprise Architectures
Overcoming Data Gravity in Multi-Cloud Enterprise Architectures
VMware Tanzu
 
WSC Net App storage for windows challenges and solutions
WSC Net App storage for windows challenges and solutionsWSC Net App storage for windows challenges and solutions
WSC Net App storage for windows challenges and solutions
Accenture
 
SQL Server 2017 - Mejoras Impulsadas por la Comunidad
SQL Server 2017 - Mejoras Impulsadas por la ComunidadSQL Server 2017 - Mejoras Impulsadas por la Comunidad
SQL Server 2017 - Mejoras Impulsadas por la Comunidad
Javier Villegas
 
EBS Answers Webinar Series - Chart of Accounts Transformation Master Class: T...
EBS Answers Webinar Series - Chart of Accounts Transformation Master Class: T...EBS Answers Webinar Series - Chart of Accounts Transformation Master Class: T...
EBS Answers Webinar Series - Chart of Accounts Transformation Master Class: T...
eprentise
 
introduction to datawarehouse
introduction to datawarehouseintroduction to datawarehouse
introduction to datawarehouse
kiran14360
 
Part 1 - Data Warehousing Lecture at BW Cooperative State University (DHBW)
Part 1 - Data Warehousing Lecture at BW Cooperative State University (DHBW)Part 1 - Data Warehousing Lecture at BW Cooperative State University (DHBW)
Part 1 - Data Warehousing Lecture at BW Cooperative State University (DHBW)
Andreas Buckenhofer
 
galileo-white-paper-tier-0
galileo-white-paper-tier-0galileo-white-paper-tier-0
galileo-white-paper-tier-0
Tim Conley
 
vVols and Your Cloud Operating Model with Tristan Todd
vVols and Your Cloud Operating Model with Tristan ToddvVols and Your Cloud Operating Model with Tristan Todd
vVols and Your Cloud Operating Model with Tristan Todd
Chris Williams
 
Teradata Aggregate Join Indices And Dimensional Models
Teradata Aggregate Join Indices And Dimensional ModelsTeradata Aggregate Join Indices And Dimensional Models
Teradata Aggregate Join Indices And Dimensional Models
pepeborja
 
Performance Tuning Oracle's BI Applications
Performance Tuning Oracle's BI ApplicationsPerformance Tuning Oracle's BI Applications
Performance Tuning Oracle's BI Applications
KPI Partners
 
Today's Need To Manage The Storage Polymorphism
Today's Need To Manage The Storage PolymorphismToday's Need To Manage The Storage Polymorphism
Today's Need To Manage The Storage Polymorphism
Netmagic Solutions Pvt. Ltd.
 
Prague data management meetup 2017-02-28
Prague data management meetup 2017-02-28Prague data management meetup 2017-02-28
Prague data management meetup 2017-02-28
Martin Bém
 
Rando Veizi: Data warehouse and Pentaho suite
Rando Veizi: Data warehouse and Pentaho suiteRando Veizi: Data warehouse and Pentaho suite
Rando Veizi: Data warehouse and Pentaho suite
Carlo Vaccari
 
4 Infrastructure Data Analysis
4 Infrastructure Data Analysis4 Infrastructure Data Analysis
4 Infrastructure Data Analysis
Jeremiah Loscalzo
 
ACIC Rome & Veritas: High-Availability and Disaster Recovery Scenarios
ACIC Rome & Veritas: High-Availability and Disaster Recovery ScenariosACIC Rome & Veritas: High-Availability and Disaster Recovery Scenarios
ACIC Rome & Veritas: High-Availability and Disaster Recovery Scenarios
Accenture Italia
 
Big Data & Information Management Channel Manager
Big Data & Information Management Channel ManagerBig Data & Information Management Channel Manager
Big Data & Information Management Channel Manager
Arrow ECS UK
 
FDMEE Can Do That?
FDMEE Can Do That?FDMEE Can Do That?
FDMEE Can Do That?
Alithya
 
Archiving and GDPR compliance presentation DVM GDPR - SAP.pdf
Archiving and GDPR compliance presentation DVM GDPR - SAP.pdfArchiving and GDPR compliance presentation DVM GDPR - SAP.pdf
Archiving and GDPR compliance presentation DVM GDPR - SAP.pdf
NavinnSomaal
 
Db2 update day 2015 managing db2 with ibm db2 tools svenn aage
Db2 update day 2015   managing db2 with ibm db2 tools svenn aageDb2 update day 2015   managing db2 with ibm db2 tools svenn aage
Db2 update day 2015 managing db2 with ibm db2 tools svenn aage
Peter Schouboe
 
Nw2008 tips tricks_edw_v10
Nw2008 tips tricks_edw_v10Nw2008 tips tricks_edw_v10
Nw2008 tips tricks_edw_v10
Harsha Gowda B R
 
Overcoming Data Gravity in Multi-Cloud Enterprise Architectures
Overcoming Data Gravity in Multi-Cloud Enterprise ArchitecturesOvercoming Data Gravity in Multi-Cloud Enterprise Architectures
Overcoming Data Gravity in Multi-Cloud Enterprise Architectures
VMware Tanzu
 
WSC Net App storage for windows challenges and solutions
WSC Net App storage for windows challenges and solutionsWSC Net App storage for windows challenges and solutions
WSC Net App storage for windows challenges and solutions
Accenture
 
SQL Server 2017 - Mejoras Impulsadas por la Comunidad
SQL Server 2017 - Mejoras Impulsadas por la ComunidadSQL Server 2017 - Mejoras Impulsadas por la Comunidad
SQL Server 2017 - Mejoras Impulsadas por la Comunidad
Javier Villegas
 
EBS Answers Webinar Series - Chart of Accounts Transformation Master Class: T...
EBS Answers Webinar Series - Chart of Accounts Transformation Master Class: T...EBS Answers Webinar Series - Chart of Accounts Transformation Master Class: T...
EBS Answers Webinar Series - Chart of Accounts Transformation Master Class: T...
eprentise
 
introduction to datawarehouse
introduction to datawarehouseintroduction to datawarehouse
introduction to datawarehouse
kiran14360
 
Part 1 - Data Warehousing Lecture at BW Cooperative State University (DHBW)
Part 1 - Data Warehousing Lecture at BW Cooperative State University (DHBW)Part 1 - Data Warehousing Lecture at BW Cooperative State University (DHBW)
Part 1 - Data Warehousing Lecture at BW Cooperative State University (DHBW)
Andreas Buckenhofer
 
galileo-white-paper-tier-0
galileo-white-paper-tier-0galileo-white-paper-tier-0
galileo-white-paper-tier-0
Tim Conley
 
vVols and Your Cloud Operating Model with Tristan Todd
vVols and Your Cloud Operating Model with Tristan ToddvVols and Your Cloud Operating Model with Tristan Todd
vVols and Your Cloud Operating Model with Tristan Todd
Chris Williams
 
Teradata Aggregate Join Indices And Dimensional Models
Teradata Aggregate Join Indices And Dimensional ModelsTeradata Aggregate Join Indices And Dimensional Models
Teradata Aggregate Join Indices And Dimensional Models
pepeborja
 
Performance Tuning Oracle's BI Applications
Performance Tuning Oracle's BI ApplicationsPerformance Tuning Oracle's BI Applications
Performance Tuning Oracle's BI Applications
KPI Partners
 
Prague data management meetup 2017-02-28
Prague data management meetup 2017-02-28Prague data management meetup 2017-02-28
Prague data management meetup 2017-02-28
Martin Bém
 
Rando Veizi: Data warehouse and Pentaho suite
Rando Veizi: Data warehouse and Pentaho suiteRando Veizi: Data warehouse and Pentaho suite
Rando Veizi: Data warehouse and Pentaho suite
Carlo Vaccari
 
4 Infrastructure Data Analysis
4 Infrastructure Data Analysis4 Infrastructure Data Analysis
4 Infrastructure Data Analysis
Jeremiah Loscalzo
 
ACIC Rome & Veritas: High-Availability and Disaster Recovery Scenarios
ACIC Rome & Veritas: High-Availability and Disaster Recovery ScenariosACIC Rome & Veritas: High-Availability and Disaster Recovery Scenarios
ACIC Rome & Veritas: High-Availability and Disaster Recovery Scenarios
Accenture Italia
 
Big Data & Information Management Channel Manager
Big Data & Information Management Channel ManagerBig Data & Information Management Channel Manager
Big Data & Information Management Channel Manager
Arrow ECS UK
 
Ad

More from Trivadis (20)

Azure Days 2019: Azure Chatbot Development for Airline Irregularities (Remco ...
Azure Days 2019: Azure Chatbot Development for Airline Irregularities (Remco ...Azure Days 2019: Azure Chatbot Development for Airline Irregularities (Remco ...
Azure Days 2019: Azure Chatbot Development for Airline Irregularities (Remco ...
Trivadis
 
Azure Days 2019: Trivadis Azure Foundation – Das Fundament für den ... (Nisan...
Azure Days 2019: Trivadis Azure Foundation – Das Fundament für den ... (Nisan...Azure Days 2019: Trivadis Azure Foundation – Das Fundament für den ... (Nisan...
Azure Days 2019: Trivadis Azure Foundation – Das Fundament für den ... (Nisan...
Trivadis
 
Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)
Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)
Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)
Trivadis
 
Azure Days 2019: Master the Move to Azure (Konrad Brunner)
Azure Days 2019: Master the Move to Azure (Konrad Brunner)Azure Days 2019: Master the Move to Azure (Konrad Brunner)
Azure Days 2019: Master the Move to Azure (Konrad Brunner)
Trivadis
 
Azure Days 2019: Keynote Azure Switzerland – Status Quo und Ausblick (Primo A...
Azure Days 2019: Keynote Azure Switzerland – Status Quo und Ausblick (Primo A...Azure Days 2019: Keynote Azure Switzerland – Status Quo und Ausblick (Primo A...
Azure Days 2019: Keynote Azure Switzerland – Status Quo und Ausblick (Primo A...
Trivadis
 
Azure Days 2019: Grösser und Komplexer ist nicht immer besser (Meinrad Weiss)
Azure Days 2019: Grösser und Komplexer ist nicht immer besser (Meinrad Weiss)Azure Days 2019: Grösser und Komplexer ist nicht immer besser (Meinrad Weiss)
Azure Days 2019: Grösser und Komplexer ist nicht immer besser (Meinrad Weiss)
Trivadis
 
Azure Days 2019: Get Connected with Azure API Management (Gerry Keune & Stefa...
Azure Days 2019: Get Connected with Azure API Management (Gerry Keune & Stefa...Azure Days 2019: Get Connected with Azure API Management (Gerry Keune & Stefa...
Azure Days 2019: Get Connected with Azure API Management (Gerry Keune & Stefa...
Trivadis
 
Azure Days 2019: Infrastructure as Code auf Azure (Jonas Wanninger & Daniel H...
Azure Days 2019: Infrastructure as Code auf Azure (Jonas Wanninger & Daniel H...Azure Days 2019: Infrastructure as Code auf Azure (Jonas Wanninger & Daniel H...
Azure Days 2019: Infrastructure as Code auf Azure (Jonas Wanninger & Daniel H...
Trivadis
 
Azure Days 2019: Wie bringt man eine Data Analytics Plattform in die Cloud? (...
Azure Days 2019: Wie bringt man eine Data Analytics Plattform in die Cloud? (...Azure Days 2019: Wie bringt man eine Data Analytics Plattform in die Cloud? (...
Azure Days 2019: Wie bringt man eine Data Analytics Plattform in die Cloud? (...
Trivadis
 
Azure Days 2019: Azure@Helsana: Die Erweiterung von Dynamics CRM mit Azure Po...
Azure Days 2019: Azure@Helsana: Die Erweiterung von Dynamics CRM mit Azure Po...Azure Days 2019: Azure@Helsana: Die Erweiterung von Dynamics CRM mit Azure Po...
Azure Days 2019: Azure@Helsana: Die Erweiterung von Dynamics CRM mit Azure Po...
Trivadis
 
TechEvent 2019: Kundenstory - Kein Angebot, kein Auftrag – Wie Du ein individ...
TechEvent 2019: Kundenstory - Kein Angebot, kein Auftrag – Wie Du ein individ...TechEvent 2019: Kundenstory - Kein Angebot, kein Auftrag – Wie Du ein individ...
TechEvent 2019: Kundenstory - Kein Angebot, kein Auftrag – Wie Du ein individ...
Trivadis
 
TechEvent 2019: Oracle Database Appliance M/L - Erfahrungen und Erfolgsmethod...
TechEvent 2019: Oracle Database Appliance M/L - Erfahrungen und Erfolgsmethod...TechEvent 2019: Oracle Database Appliance M/L - Erfahrungen und Erfolgsmethod...
TechEvent 2019: Oracle Database Appliance M/L - Erfahrungen und Erfolgsmethod...
Trivadis
 
TechEvent 2019: Security 101 für Web Entwickler; Roland Krüger - Trivadis
TechEvent 2019: Security 101 für Web Entwickler; Roland Krüger - TrivadisTechEvent 2019: Security 101 für Web Entwickler; Roland Krüger - Trivadis
TechEvent 2019: Security 101 für Web Entwickler; Roland Krüger - Trivadis
Trivadis
 
TechEvent 2019: Trivadis & Swisscom Partner Angebote; Konrad Häfeli, Markus O...
TechEvent 2019: Trivadis & Swisscom Partner Angebote; Konrad Häfeli, Markus O...TechEvent 2019: Trivadis & Swisscom Partner Angebote; Konrad Häfeli, Markus O...
TechEvent 2019: Trivadis & Swisscom Partner Angebote; Konrad Häfeli, Markus O...
Trivadis
 
TechEvent 2019: DBaaS from Swisscom Cloud powered by Trivadis; Konrad Häfeli ...
TechEvent 2019: DBaaS from Swisscom Cloud powered by Trivadis; Konrad Häfeli ...TechEvent 2019: DBaaS from Swisscom Cloud powered by Trivadis; Konrad Häfeli ...
TechEvent 2019: DBaaS from Swisscom Cloud powered by Trivadis; Konrad Häfeli ...
Trivadis
 
TechEvent 2019: Status of the partnership Trivadis and EDB - Comparing Postgr...
TechEvent 2019: Status of the partnership Trivadis and EDB - Comparing Postgr...TechEvent 2019: Status of the partnership Trivadis and EDB - Comparing Postgr...
TechEvent 2019: Status of the partnership Trivadis and EDB - Comparing Postgr...
Trivadis
 
TechEvent 2019: More Agile, More AI, More Cloud! Less Work?!; Oliver Dörr - T...
TechEvent 2019: More Agile, More AI, More Cloud! Less Work?!; Oliver Dörr - T...TechEvent 2019: More Agile, More AI, More Cloud! Less Work?!; Oliver Dörr - T...
TechEvent 2019: More Agile, More AI, More Cloud! Less Work?!; Oliver Dörr - T...
Trivadis
 
TechEvent 2019: Kundenstory - Vom Hauptmann zu Köpenick zum Polizisten 2020 -...
TechEvent 2019: Kundenstory - Vom Hauptmann zu Köpenick zum Polizisten 2020 -...TechEvent 2019: Kundenstory - Vom Hauptmann zu Köpenick zum Polizisten 2020 -...
TechEvent 2019: Kundenstory - Vom Hauptmann zu Köpenick zum Polizisten 2020 -...
Trivadis
 
TechEvent 2019: Vom Rechenzentrum in die Oracle Cloud - Übertragungsmethoden;...
TechEvent 2019: Vom Rechenzentrum in die Oracle Cloud - Übertragungsmethoden;...TechEvent 2019: Vom Rechenzentrum in die Oracle Cloud - Übertragungsmethoden;...
TechEvent 2019: Vom Rechenzentrum in die Oracle Cloud - Übertragungsmethoden;...
Trivadis
 
TechEvent 2019: The sleeping Power of Data; Eberhard Lösch - Trivadis
TechEvent 2019: The sleeping Power of Data; Eberhard Lösch - TrivadisTechEvent 2019: The sleeping Power of Data; Eberhard Lösch - Trivadis
TechEvent 2019: The sleeping Power of Data; Eberhard Lösch - Trivadis
Trivadis
 
Azure Days 2019: Azure Chatbot Development for Airline Irregularities (Remco ...
Azure Days 2019: Azure Chatbot Development for Airline Irregularities (Remco ...Azure Days 2019: Azure Chatbot Development for Airline Irregularities (Remco ...
Azure Days 2019: Azure Chatbot Development for Airline Irregularities (Remco ...
Trivadis
 
Azure Days 2019: Trivadis Azure Foundation – Das Fundament für den ... (Nisan...
Azure Days 2019: Trivadis Azure Foundation – Das Fundament für den ... (Nisan...Azure Days 2019: Trivadis Azure Foundation – Das Fundament für den ... (Nisan...
Azure Days 2019: Trivadis Azure Foundation – Das Fundament für den ... (Nisan...
Trivadis
 
Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)
Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)
Azure Days 2019: Business Intelligence auf Azure (Marco Amhof & Yves Mauron)
Trivadis
 
Azure Days 2019: Master the Move to Azure (Konrad Brunner)
Azure Days 2019: Master the Move to Azure (Konrad Brunner)Azure Days 2019: Master the Move to Azure (Konrad Brunner)
Azure Days 2019: Master the Move to Azure (Konrad Brunner)
Trivadis
 
Azure Days 2019: Keynote Azure Switzerland – Status Quo und Ausblick (Primo A...
Azure Days 2019: Keynote Azure Switzerland – Status Quo und Ausblick (Primo A...Azure Days 2019: Keynote Azure Switzerland – Status Quo und Ausblick (Primo A...
Azure Days 2019: Keynote Azure Switzerland – Status Quo und Ausblick (Primo A...
Trivadis
 
Azure Days 2019: Grösser und Komplexer ist nicht immer besser (Meinrad Weiss)
Azure Days 2019: Grösser und Komplexer ist nicht immer besser (Meinrad Weiss)Azure Days 2019: Grösser und Komplexer ist nicht immer besser (Meinrad Weiss)
Azure Days 2019: Grösser und Komplexer ist nicht immer besser (Meinrad Weiss)
Trivadis
 
Azure Days 2019: Get Connected with Azure API Management (Gerry Keune & Stefa...
Azure Days 2019: Get Connected with Azure API Management (Gerry Keune & Stefa...Azure Days 2019: Get Connected with Azure API Management (Gerry Keune & Stefa...
Azure Days 2019: Get Connected with Azure API Management (Gerry Keune & Stefa...
Trivadis
 
Azure Days 2019: Infrastructure as Code auf Azure (Jonas Wanninger & Daniel H...
Azure Days 2019: Infrastructure as Code auf Azure (Jonas Wanninger & Daniel H...Azure Days 2019: Infrastructure as Code auf Azure (Jonas Wanninger & Daniel H...
Azure Days 2019: Infrastructure as Code auf Azure (Jonas Wanninger & Daniel H...
Trivadis
 
Azure Days 2019: Wie bringt man eine Data Analytics Plattform in die Cloud? (...
Azure Days 2019: Wie bringt man eine Data Analytics Plattform in die Cloud? (...Azure Days 2019: Wie bringt man eine Data Analytics Plattform in die Cloud? (...
Azure Days 2019: Wie bringt man eine Data Analytics Plattform in die Cloud? (...
Trivadis
 
Azure Days 2019: Azure@Helsana: Die Erweiterung von Dynamics CRM mit Azure Po...
Azure Days 2019: Azure@Helsana: Die Erweiterung von Dynamics CRM mit Azure Po...Azure Days 2019: Azure@Helsana: Die Erweiterung von Dynamics CRM mit Azure Po...
Azure Days 2019: Azure@Helsana: Die Erweiterung von Dynamics CRM mit Azure Po...
Trivadis
 
TechEvent 2019: Kundenstory - Kein Angebot, kein Auftrag – Wie Du ein individ...
TechEvent 2019: Kundenstory - Kein Angebot, kein Auftrag – Wie Du ein individ...TechEvent 2019: Kundenstory - Kein Angebot, kein Auftrag – Wie Du ein individ...
TechEvent 2019: Kundenstory - Kein Angebot, kein Auftrag – Wie Du ein individ...
Trivadis
 
TechEvent 2019: Oracle Database Appliance M/L - Erfahrungen und Erfolgsmethod...
TechEvent 2019: Oracle Database Appliance M/L - Erfahrungen und Erfolgsmethod...TechEvent 2019: Oracle Database Appliance M/L - Erfahrungen und Erfolgsmethod...
TechEvent 2019: Oracle Database Appliance M/L - Erfahrungen und Erfolgsmethod...
Trivadis
 
TechEvent 2019: Security 101 für Web Entwickler; Roland Krüger - Trivadis
TechEvent 2019: Security 101 für Web Entwickler; Roland Krüger - TrivadisTechEvent 2019: Security 101 für Web Entwickler; Roland Krüger - Trivadis
TechEvent 2019: Security 101 für Web Entwickler; Roland Krüger - Trivadis
Trivadis
 
TechEvent 2019: Trivadis & Swisscom Partner Angebote; Konrad Häfeli, Markus O...
TechEvent 2019: Trivadis & Swisscom Partner Angebote; Konrad Häfeli, Markus O...TechEvent 2019: Trivadis & Swisscom Partner Angebote; Konrad Häfeli, Markus O...
TechEvent 2019: Trivadis & Swisscom Partner Angebote; Konrad Häfeli, Markus O...
Trivadis
 
TechEvent 2019: DBaaS from Swisscom Cloud powered by Trivadis; Konrad Häfeli ...
TechEvent 2019: DBaaS from Swisscom Cloud powered by Trivadis; Konrad Häfeli ...TechEvent 2019: DBaaS from Swisscom Cloud powered by Trivadis; Konrad Häfeli ...
TechEvent 2019: DBaaS from Swisscom Cloud powered by Trivadis; Konrad Häfeli ...
Trivadis
 
TechEvent 2019: Status of the partnership Trivadis and EDB - Comparing Postgr...
TechEvent 2019: Status of the partnership Trivadis and EDB - Comparing Postgr...TechEvent 2019: Status of the partnership Trivadis and EDB - Comparing Postgr...
TechEvent 2019: Status of the partnership Trivadis and EDB - Comparing Postgr...
Trivadis
 
TechEvent 2019: More Agile, More AI, More Cloud! Less Work?!; Oliver Dörr - T...
TechEvent 2019: More Agile, More AI, More Cloud! Less Work?!; Oliver Dörr - T...TechEvent 2019: More Agile, More AI, More Cloud! Less Work?!; Oliver Dörr - T...
TechEvent 2019: More Agile, More AI, More Cloud! Less Work?!; Oliver Dörr - T...
Trivadis
 
TechEvent 2019: Kundenstory - Vom Hauptmann zu Köpenick zum Polizisten 2020 -...
TechEvent 2019: Kundenstory - Vom Hauptmann zu Köpenick zum Polizisten 2020 -...TechEvent 2019: Kundenstory - Vom Hauptmann zu Köpenick zum Polizisten 2020 -...
TechEvent 2019: Kundenstory - Vom Hauptmann zu Köpenick zum Polizisten 2020 -...
Trivadis
 
TechEvent 2019: Vom Rechenzentrum in die Oracle Cloud - Übertragungsmethoden;...
TechEvent 2019: Vom Rechenzentrum in die Oracle Cloud - Übertragungsmethoden;...TechEvent 2019: Vom Rechenzentrum in die Oracle Cloud - Übertragungsmethoden;...
TechEvent 2019: Vom Rechenzentrum in die Oracle Cloud - Übertragungsmethoden;...
Trivadis
 
TechEvent 2019: The sleeping Power of Data; Eberhard Lösch - Trivadis
TechEvent 2019: The sleeping Power of Data; Eberhard Lösch - TrivadisTechEvent 2019: The sleeping Power of Data; Eberhard Lösch - Trivadis
TechEvent 2019: The sleeping Power of Data; Eberhard Lösch - Trivadis
Trivadis
 
Ad

Recently uploaded (20)

SEO-for-Paws The Digital Trinity Seo, PPC & Social Media
SEO-for-Paws The Digital Trinity Seo, PPC & Social MediaSEO-for-Paws The Digital Trinity Seo, PPC & Social Media
SEO-for-Paws The Digital Trinity Seo, PPC & Social Media
Veronika Höller
 
A Psalm of Life Experimental including the definitions
A Psalm of Life Experimental including the definitionsA Psalm of Life Experimental including the definitions
A Psalm of Life Experimental including the definitions
GenesisMedel1
 
International Business of Mexico City
International Business of Mexico CityInternational Business of Mexico City
International Business of Mexico City
SintiakHaque
 
stackconf 2025 | 2025: I Don’t Know K8S and at This Point, I’m Too Afraid To ...
stackconf 2025 | 2025: I Don’t Know K8S and at This Point, I’m Too Afraid To ...stackconf 2025 | 2025: I Don’t Know K8S and at This Point, I’m Too Afraid To ...
stackconf 2025 | 2025: I Don’t Know K8S and at This Point, I’m Too Afraid To ...
NETWAYS
 
Rethinking the Multipolar World and the Roles of Middle Powers: Nigeria as a ...
Rethinking the Multipolar World and the Roles of Middle Powers: Nigeria as a ...Rethinking the Multipolar World and the Roles of Middle Powers: Nigeria as a ...
Rethinking the Multipolar World and the Roles of Middle Powers: Nigeria as a ...
Kayode Fayemi
 
fermentation presentation'. very easy ppt
fermentation presentation'. very easy pptfermentation presentation'. very easy ppt
fermentation presentation'. very easy ppt
naveenkumawatstar
 
NL-based Software Engineering (NLBSE) '25
NL-based Software Engineering (NLBSE) '25NL-based Software Engineering (NLBSE) '25
NL-based Software Engineering (NLBSE) '25
Sebastiano Panichella
 
English - Mining RACE - IconX - Presenation
English - Mining RACE - IconX - PresenationEnglish - Mining RACE - IconX - Presenation
English - Mining RACE - IconX - Presenation
Mining RACE
 
Navigating the Digital Asset Landscape-From Blockchain Foundations to Future ...
Navigating the Digital Asset Landscape-From Blockchain Foundations to Future ...Navigating the Digital Asset Landscape-From Blockchain Foundations to Future ...
Navigating the Digital Asset Landscape-From Blockchain Foundations to Future ...
BobPesakovic
 
The Role of Training and Development on Employee Performance: A Study on City...
The Role of Training and Development on Employee Performance: A Study on City...The Role of Training and Development on Employee Performance: A Study on City...
The Role of Training and Development on Employee Performance: A Study on City...
SintiakHaque
 
stackconf 2025 | Building a Hyperconverged Proxmox VE Cluster with Ceph by Jo...
stackconf 2025 | Building a Hyperconverged Proxmox VE Cluster with Ceph by Jo...stackconf 2025 | Building a Hyperconverged Proxmox VE Cluster with Ceph by Jo...
stackconf 2025 | Building a Hyperconverged Proxmox VE Cluster with Ceph by Jo...
NETWAYS
 
Schedule III content for PPT as per Companies Act
Schedule III content for PPT as per Companies ActSchedule III content for PPT as per Companies Act
Schedule III content for PPT as per Companies Act
PriyankaAgarwal941449
 
A Brief Introduction About John Smith
A Brief Introduction About John SmithA Brief Introduction About John Smith
A Brief Introduction About John Smith
John Smith
 
Report on International Business about Mexico City
Report on International Business about Mexico CityReport on International Business about Mexico City
Report on International Business about Mexico City
SintiakHaque
 
AI visions of future for Artificial Intelligence
AI visions of future for Artificial IntelligenceAI visions of future for Artificial Intelligence
AI visions of future for Artificial Intelligence
Michal Hron
 
Steve Nickel What Can I Give 05.18.2025.pptx
Steve Nickel What Can I Give 05.18.2025.pptxSteve Nickel What Can I Give 05.18.2025.pptx
Steve Nickel What Can I Give 05.18.2025.pptx
FamilyWorshipCenterD
 
Sosa Modern Tech Company Presentation_20250513_022104_0000.pdf
Sosa Modern Tech Company Presentation_20250513_022104_0000.pdfSosa Modern Tech Company Presentation_20250513_022104_0000.pdf
Sosa Modern Tech Company Presentation_20250513_022104_0000.pdf
tshepisowestuan
 
ICST/SBFT Tool Competition 2025 - UAV Testing Track
ICST/SBFT Tool Competition 2025 - UAV Testing TrackICST/SBFT Tool Competition 2025 - UAV Testing Track
ICST/SBFT Tool Competition 2025 - UAV Testing Track
Sebastiano Panichella
 
Challenges faced by women in banking sector
Challenges faced by women in banking sectorChallenges faced by women in banking sector
Challenges faced by women in banking sector
SintiakHaque
 
Math Quiz Presentation in Red and Green Fun Style.pptx
Math Quiz Presentation in Red and Green Fun Style.pptxMath Quiz Presentation in Red and Green Fun Style.pptx
Math Quiz Presentation in Red and Green Fun Style.pptx
candrakurniawan56
 
SEO-for-Paws The Digital Trinity Seo, PPC & Social Media
SEO-for-Paws The Digital Trinity Seo, PPC & Social MediaSEO-for-Paws The Digital Trinity Seo, PPC & Social Media
SEO-for-Paws The Digital Trinity Seo, PPC & Social Media
Veronika Höller
 
A Psalm of Life Experimental including the definitions
A Psalm of Life Experimental including the definitionsA Psalm of Life Experimental including the definitions
A Psalm of Life Experimental including the definitions
GenesisMedel1
 
International Business of Mexico City
International Business of Mexico CityInternational Business of Mexico City
International Business of Mexico City
SintiakHaque
 
stackconf 2025 | 2025: I Don’t Know K8S and at This Point, I’m Too Afraid To ...
stackconf 2025 | 2025: I Don’t Know K8S and at This Point, I’m Too Afraid To ...stackconf 2025 | 2025: I Don’t Know K8S and at This Point, I’m Too Afraid To ...
stackconf 2025 | 2025: I Don’t Know K8S and at This Point, I’m Too Afraid To ...
NETWAYS
 
Rethinking the Multipolar World and the Roles of Middle Powers: Nigeria as a ...
Rethinking the Multipolar World and the Roles of Middle Powers: Nigeria as a ...Rethinking the Multipolar World and the Roles of Middle Powers: Nigeria as a ...
Rethinking the Multipolar World and the Roles of Middle Powers: Nigeria as a ...
Kayode Fayemi
 
fermentation presentation'. very easy ppt
fermentation presentation'. very easy pptfermentation presentation'. very easy ppt
fermentation presentation'. very easy ppt
naveenkumawatstar
 
NL-based Software Engineering (NLBSE) '25
NL-based Software Engineering (NLBSE) '25NL-based Software Engineering (NLBSE) '25
NL-based Software Engineering (NLBSE) '25
Sebastiano Panichella
 
English - Mining RACE - IconX - Presenation
English - Mining RACE - IconX - PresenationEnglish - Mining RACE - IconX - Presenation
English - Mining RACE - IconX - Presenation
Mining RACE
 
Navigating the Digital Asset Landscape-From Blockchain Foundations to Future ...
Navigating the Digital Asset Landscape-From Blockchain Foundations to Future ...Navigating the Digital Asset Landscape-From Blockchain Foundations to Future ...
Navigating the Digital Asset Landscape-From Blockchain Foundations to Future ...
BobPesakovic
 
The Role of Training and Development on Employee Performance: A Study on City...
The Role of Training and Development on Employee Performance: A Study on City...The Role of Training and Development on Employee Performance: A Study on City...
The Role of Training and Development on Employee Performance: A Study on City...
SintiakHaque
 
stackconf 2025 | Building a Hyperconverged Proxmox VE Cluster with Ceph by Jo...
stackconf 2025 | Building a Hyperconverged Proxmox VE Cluster with Ceph by Jo...stackconf 2025 | Building a Hyperconverged Proxmox VE Cluster with Ceph by Jo...
stackconf 2025 | Building a Hyperconverged Proxmox VE Cluster with Ceph by Jo...
NETWAYS
 
Schedule III content for PPT as per Companies Act
Schedule III content for PPT as per Companies ActSchedule III content for PPT as per Companies Act
Schedule III content for PPT as per Companies Act
PriyankaAgarwal941449
 
A Brief Introduction About John Smith
A Brief Introduction About John SmithA Brief Introduction About John Smith
A Brief Introduction About John Smith
John Smith
 
Report on International Business about Mexico City
Report on International Business about Mexico CityReport on International Business about Mexico City
Report on International Business about Mexico City
SintiakHaque
 
AI visions of future for Artificial Intelligence
AI visions of future for Artificial IntelligenceAI visions of future for Artificial Intelligence
AI visions of future for Artificial Intelligence
Michal Hron
 
Steve Nickel What Can I Give 05.18.2025.pptx
Steve Nickel What Can I Give 05.18.2025.pptxSteve Nickel What Can I Give 05.18.2025.pptx
Steve Nickel What Can I Give 05.18.2025.pptx
FamilyWorshipCenterD
 
Sosa Modern Tech Company Presentation_20250513_022104_0000.pdf
Sosa Modern Tech Company Presentation_20250513_022104_0000.pdfSosa Modern Tech Company Presentation_20250513_022104_0000.pdf
Sosa Modern Tech Company Presentation_20250513_022104_0000.pdf
tshepisowestuan
 
ICST/SBFT Tool Competition 2025 - UAV Testing Track
ICST/SBFT Tool Competition 2025 - UAV Testing TrackICST/SBFT Tool Competition 2025 - UAV Testing Track
ICST/SBFT Tool Competition 2025 - UAV Testing Track
Sebastiano Panichella
 
Challenges faced by women in banking sector
Challenges faced by women in banking sectorChallenges faced by women in banking sector
Challenges faced by women in banking sector
SintiakHaque
 
Math Quiz Presentation in Red and Green Fun Style.pptx
Math Quiz Presentation in Red and Green Fun Style.pptxMath Quiz Presentation in Red and Green Fun Style.pptx
Math Quiz Presentation in Red and Green Fun Style.pptx
candrakurniawan56
 

Partitioning your Oracle Data Warehouse - Just a simple task?

  • 1. Partitioning Your Oracle Data Warehouse – Just a Simple Task? Dani Schnider Principal Consultant Business Intelligence dani.schnider@trivadis.com Oracle Open World 2009, San Francisco BASEL BERN BRUGG LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 1
  • 2. Dani Schnider  Principal Consultant und DWH/BI Lead Architect bei Trivadis in Zürich  Kursleiter für Trivadis-Kurse über Data Warehousing, SQL Optimierung und Oracle Warehouse Builder  Co-Autor des Buches «Data Warehousing mit Oracle» 2014 © Trivadis 2 Partitioning Your Oracle Data Warehouse 2009
  • 3. Mit über 600 IT- und Fachexperten bei Ihnen vor Ort 2014 © Trivadis 11 Trivadis Niederlassungen mit über 600 Mitarbeitenden 200 Service Level Agreements Mehr als 4'000 Trainingsteilnehmer Forschungs- und Entwicklungs-budget: CHF 5.0 / EUR 4 Mio. Finanziell unabhängig und nachhaltig profitabel Erfahrung aus mehr als 1'900 Projekten pro Jahr bei über 800 Kunden Stand 12/2012 Hamburg Düsseldorf Frankfurt Freiburg München Wien Basel Bern Zürich Lausanne 3 Stuttgart Partitioning Your Oracle Data Warehouse 2009 3
  • 4. AGENDA 1. Partitioning Concepts 2. The Right Partition Key 3. Large Dimensions 4. Partition Maintenance 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 4
  • 5. Partitioning – The Basic Idea  Decompose tables/indexes into smaller pieces 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 5
  • 6. Partitioning Methods in Oracle  Additionally: Interval Partitioning, Reference Partitioning, Virtual Column-Based Partitioning 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 6
  • 7. Benefits of Partitioning Partition Pruning  Reduce I/O: Only relevant partitions have to be accessed Partition-Wise Joins  Full PWJ: Join two equi-partitioned tables (parallel or serial)  Partial PWJ: Join partitioned with non-partitioned table (parallel) Rolling History  Create new partitions in periodical intervals  Drop old partitions in periodical intervals Manageability  Backups, statistics gathering, compressing on individual partitions 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 7
  • 8. AGENDA 1. Partitioning Concepts 2. The Right Partition Key 3. Large Dimensions 4. Partition Maintenance 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 8
  • 9. Partition Methods and Partition Keys  Important questions for Partitioning:  Which tables should be partitioned?  Which partition method should be used?  Which partition key(s) should be used?  Partition key is important for  Query optimization (partition pruning, partition-wise 2014 © Trivadis joins)  ETL performance (partition exchange, rolling history)  Typically in data warehouses  RANGE partitioning of fact tables on DATE column  But which DATE column? Partitioning Your Oracle Data Warehouse 2009 9
  • 10. Practical Example 1: Airline Company  Flight bookings are stored in partitioned table  RANGE partitioning per month, partition key: booking date  Problem: Most of the reports are based on the flight date  Flights can be booked 11 months ahead  11 partitions must be read of one particular flight date 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 10
  • 11. Practical Example 1: Airline Company  Solution: partition key flight date instead of booking date  Data is loaded into current and future partitions  Reports based on flight date read only one partition  Reports based on booking date must read 11 (small) partitions 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 11
  • 12. Practical Example 1: Airline Company  Better solution: Composite RANGE-RANGE partitioning  RANGE partitioning on flight date  RANGE subpartitioning on booking date  More flexibility for reports on flight date and/or on booking date 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 12
  • 13. Practical Example 2: International Bank  Account balance data of international customers  Monthly files of different locations (countries)  Correction files replace last delivery for the same month/country  Original approach  Technical load id for each combination of month/country  LIST partitioning on load id  Files are loaded in stage table  Partition exchange with current partition 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 13
  • 14. Practical Example 2: International Bank  Problem: partition key load id is useless for queries  Queries are based on balance date 2014 © Trivadis  Solution  RANGE partitioning on balance date  LIST subpartitions on country code  Partition exchange with subpartitions Partitioning Your Oracle Data Warehouse 2009 14
  • 15. AGENDA 1. Partitioning Concepts 2. The Right Partition Key 3. Large Dimensions 4. Partition Maintenance 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 15
  • 16. Partitioning in Star Schema 2014 © Trivadis  Fact Table  Usually „big“ (millions to billions of rows)  RANGE partitioning by DATE column  Dimension Tables  Usually „small“ (10 to 10000 rows)  In most cases not partitioned  But how about large dimensions?  e.g. customer dimension with millions of rows Partitioning Your Oracle Data Warehouse 2009 16
  • 17. HASH Partitioning on Large Dimension  DIM_CUSTOMER 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 17  HASH Partitioning  Partition Key: CUSTOMER_ID  FCT_SALES  Composite RANGE-HASH Partitioning  Partition Key: SALES_DATE  Subpartition Key: CUSTOMER_ID
  • 18. HASH Partitioning on Large Dimension 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 18
  • 19. Practical Example 3: Telecommunication Company 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 19
  • 20. LIST Partitioning on Large Dimension  DIM_CUSTOMER 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 20  LIST Partitioning  Partition Key: COUNTRY_CODE  FCT_SALES  Composite RANGE-LIST Partitioning  Partition Key: SALES_DATE  Subpartition Key: COUNTRY_CODE (denormalized column in fact table)
  • 21. LIST Partitioning on Large Dimension 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 21
  • 22.  New approach for partition pruning on join conditions  A bloom filter is created based on the dimension table restriction  Dynamic partition pruning based on that bloom filter 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 22
  • 23. AGENDA 1. Partitioning Concepts 2. The Right Partition Key 3. Large Dimensions 4. Partition Maintenance 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 23
  • 24. Practical Example 3: Monthly Partition Maintenance  Requirements  Monthly partitions on all fact tables, daily inserts into current partitions  3 years of history (36 partitions per table)  Table compression to increase full table scan performance  Backup of current partitions only 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 24
  • 25. Practical Example 3: Monthly Partition Maintenance 1. Set next tablespace to read-write 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 25
  • 26. Practical Example 3: Monthly Partition Maintenance 1. Set next tablespace to read-write 2. Drop oldest partition 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 26
  • 27. Practical Example 3: Monthly Partition Maintenance 1. Set next tablespace to read-write 2. Drop oldest partition 3. Create new partition for next month 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 27
  • 28. Practical Example 3: Monthly Partition Maintenance 1. Set next tablespace to read-write 2. Drop oldest partition 3. Create new partition for next month 4. Compress current partition 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 28
  • 29. Practical Example 3: Monthly Partition Maintenance 1. Set next tablespace to read-write 2. Drop oldest partition 3. Create new partition for next month 4. Compress current partition 5. Set tablespace to read-only 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 29
  • 30. Interval Partitioning  In Oracle11g, the creation of new partitions can be automated 2014 © Trivadis  Example: Partitioning Your Oracle Data Warehouse 2009 30
  • 31. Gathering Optimizer Statistics  DBMS_STATS parameter GRANULARITY defines statistics level 2014 © Trivadis  Example: Partitioning Your Oracle Data Warehouse 2009 31
  • 32. Problem of Global Statistics  Global statistics are essential for good execution plans  num_distinct, low_value, high_value, density, histograms  Gathering global statistics is time-consuming  All partitions must be scanned  Typical approach  After loading data, only modified partition statistics are gathered  Global statistics are gathered on regular time base (e.g. weekends) 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 32
  • 33. Incremental Global Statistics  Synopsis-based gathering of statistics  For each partition a synopsis is stored in SYSAUX tablespace  Statistics metadata for partition and columns of partition  Global statistics by aggregating the synopses from each partition  Activate incremental global statistics: 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 33
  • 34. Partitioning Your Data Warehouse – Core Messages 2014 © Trivadis  Oracle Partitioning is a powerful option – not only for data warehouses  The concept is simple, but the reality can be complex  Many new partitioning features added in Oracle Database 11g  New Composite Partitioning methods  Interval Partitioning  Join-Filter Pruning  Incremental Global Statistics Partitioning Your Oracle Data Warehouse 2009 34
  • 35. Thank you. Dani Schnider Principal Consultant Business Intelligence dani.schnider@trivadis.com Oracle Open World 2009, San Francisco BASEL BERN BRUGG LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MÜNCHEN STUTTGART WIEN 2014 © Trivadis Partitioning Your Oracle Data Warehouse 2009 35
  翻译: