Implementation and Optimization Issues of the ROLAP Algebra

Size: px
Start display at page:

Download "Implementation and Optimization Issues of the ROLAP Algebra"

Transcription

1 General Research Report Implementation and Optimization Issues of the ROLAP Algebra F. Ramsak, M.S. (UIUC) Dr. V. Markl Prof. R. Bayer, Ph.D. Contents Motivation ROLAP Algebra Recap Optimization Issues Handling of Restrictions Aggregation Networks Future Work & Summary 1

2 Example DW Model TIME All Time Year Quarter Month Sales Cost Quantity Category Sector All Products PRODUCT Product Group Container Product Group Business Type Trade Type Trade Type Nation Region Region All Customer CUSTOMER User s View of a Report Sum - Sales Year Quarter Total Total Region Nation Asia China 1 4 Japan Asia Total Europe Europe Total Total France Germany Spain Grouping combinations used to fill pivot table: (1){Y,Q,R,N} (2){Y,Q,R} (3) {Y,Q} (4) {Y,R,N} (5){Y,R} (6){Y} () {R,N} (8) {R} (9){} = ALL 2

3 POT: Pivot Organized Tuples POT ( R, G, F) = PAD F g R ALL ( α ( γ ( )), ) h g G h G We may also write (R) G,F for POT(R,G,F). POT-Example POT(R,{{A},{A,B}},{sum(D)}) yields the table: A B Sum(D) a 1 ALL *** *** a n ALL *** a 1 b 1 *** *** a n *** *** a 1 b m *** *** a n b m *** A B sum(d) A sum(d) A B sum(d) α sum(d) α sum(d ) γ A A B sum(d) { A, B }( ALL) { A, B }( ALL) R γ A, B A B sum(d) 3

4 POT Extension: Group Filtering Filtering of generated groups (like with the HAVING clause in SQL) POT ( R, G, H, F) = PAD g G h G h ( σ H [ g ]( α F ( γ g ( R))), ALL) with H containing a predicate H[g] for each grouping g in G Group Filtering Example Report Years, Product-Group sales totals and sales/year for PGs with less than 10 Mio sales POT( Fact, {{ Y},{ PG},{ Y, PG}}, {{},{},{ sum( Sales) < 10Mio}}, { sum( Sales)}) 4

5 Straight Forward SQL Generation POT(R,{{A},{A,B}},{sum(D)}) maps directly to: SELECT A, ALL, sum(d) FROM R GROUP BY A UNION SELECT A, B, sum(d) FROM R GROUP BY A,B Disadvantages: Efficient execution depends on optimizer of underlying DBMS no UB-Tree support on SQL interface guaranteed Handling Restrictions Semantic of ALL value σ Year = F Pushing Restrictions Down Pushing Through POT: Restrictions on all groups σ ( POT( R, G, F)) = POT( σ ( R), G, F) ρ 1998 ( POT( R,{{ Year},{ PG}}, )) =? ρ Pushing down inside POT: Restrictions on individual groups may be pushed down (i.e., before grouping) if they do not contain constraints on the aggregation results 5

6 σ ( Year = 199 Year= 1998) { }( ), ALL Year Month { }( ), ALL Year Month γ Year γ Year, Month FACT { }( ), ALL Year Month { }( ), ALL Year Month γ Year γ Year, Month σ ( Year = 199 Year= 1998) FACT 6

7 Aggregation Networks Efficient generation of multiple groups Usage of previous generated (more finer) groups instead of fact table as starting point Only one access to the fact table for multiple groups Problems: Size of aggregation nets Hierarchy semantic reduces aggregation nets significantly UB-Tree & Tetris techniques have high potential to optimize aggregation nets Grouping requires sorting Sorted writing of large temporary results saves additional processing time Example of an Aggregation Network (Year) ( ) (Month) (Productgroup) (Year, Month) (Year, Productgroup) (Month, Productgroup) (Year, Month, Productgroup)

8 Aggregation Net with Hierarchies (Year) ( ) (Productgroup) Sort according to PG (or sorted writing+scan) (Year, Month) (Year, Productgroup) Tetris: sort according to Y (Year, Month, Productgroup) POT and Aggregation Nets { Year, Month} ( ALL) { Year, Month} ( ALL) γ Year γ Year,Month σ ( Year = 199 Year= 1998) Country= Germany Pr oductgroup= CTV FACT 8

9 Optimization Issues of AggregationNets Find minimal spanning tree for the specified groupings Vertices: groupings Edge weights: cost of computing new group# Cost factors: Group size Required sorting... Optimization Issues of Aggregation Nets (Year) ( ) C 6 C C 5 C 4 C 3 (Productgroup) (Year, Month) (Year, Productgroup) C 1 C 2 (Year, Month, Productgroup) 9

10 Summary and Future Work Aggregation networks have a very potential to speed up POT operations Standard grouping/aggregation algorithms may benefit significantly from UB-Tree/Tetris techniques Upon availability of resources: Implementation of basic ROLAP algebra processing as part of a master thesis 10

Interactive Statistics Visualisation based on Geovisual Analytics

Interactive Statistics Visualisation based on Geovisual Analytics Interactive Statistics Visualisation based on Geovisual Analytics Prof. Mikael Jern NCVA LiU and NComVA AB May 2010 - Spin-off company to focus on Interactive Statistics Visualization and Storytelling

More information

Step-by-Step Procedure for Creating Customized BEx Maps

Step-by-Step Procedure for Creating Customized BEx Maps Step-by-Step Procedure for Creating Customized BEx Maps Applies to: SAP BI or product release (release 701, level 0004, SAP EHP 1 for SAP NetWeaver 7.0). For more information, visit the Business Intelligence

More information

TIGER: Tracking Indexes for the Global Economic Recovery By Eswar Prasad, Karim Foda, and Ethan Wu

TIGER: Tracking Indexes for the Global Economic Recovery By Eswar Prasad, Karim Foda, and Ethan Wu TIGER: Tracking Indexes for the Global Economic Recovery By Eswar Prasad, Karim Foda, and Ethan Wu Technical Appendix Methodology In our analysis, we employ a statistical procedure called Principal Component

More information

Meronymy-based Aggregation of Activities in Business Process Models

Meronymy-based Aggregation of Activities in Business Process Models Meronymy-based Aggregation of Activities in Business Process Models Sergey Smirnov 1, Remco Dijkman 2, Jan Mendling 3, and Mathias Weske 1 1 Hasso Plattner Institute, Germany 2 Eindhoven University of

More information

You are here! Query Processor. Recovery. Discussed here: DBMS. Task 3 is often called algebraic (or re-write) query optimization, while

You are here! Query Processor. Recovery. Discussed here: DBMS. Task 3 is often called algebraic (or re-write) query optimization, while Module 10: Query Optimization Module Outline 10.1 Outline of Query Optimization 10.2 Motivating Example 10.3 Equivalences in the relational algebra 10.4 Heuristic optimization 10.5 Explosion of search

More information

Event Operators: Formalization, Algorithms, and Implementation Using Interval- Based Semantics

Event Operators: Formalization, Algorithms, and Implementation Using Interval- Based Semantics Department of Computer Science and Engineering University of Texas at Arlington Arlington, TX 76019 Event Operators: Formalization, Algorithms, and Implementation Using Interval- Based Semantics Raman

More information

QSQL: Incorporating Logic-based Retrieval Conditions into SQL

QSQL: Incorporating Logic-based Retrieval Conditions into SQL QSQL: Incorporating Logic-based Retrieval Conditions into SQL Sebastian Lehrack and Ingo Schmitt Brandenburg University of Technology Cottbus Institute of Computer Science Chair of Database and Information

More information

Module 10: Query Optimization

Module 10: Query Optimization Module 10: Query Optimization Module Outline 10.1 Outline of Query Optimization 10.2 Motivating Example 10.3 Equivalences in the relational algebra 10.4 Heuristic optimization 10.5 Explosion of search

More information

TIGER: Tracking Indexes for the Global Economic Recovery By Eswar Prasad and Karim Foda

TIGER: Tracking Indexes for the Global Economic Recovery By Eswar Prasad and Karim Foda TIGER: Tracking Indexes for the Global Economic Recovery By Eswar Prasad and Karim Foda Technical Appendix Methodology In our analysis, we employ a statistical procedure called Principal Compon Analysis

More information

Formal Concept Analysis as a Framework for Business Intelligence Technologies II

Formal Concept Analysis as a Framework for Business Intelligence Technologies II Formal Concept Analysis as a Framework for Business Intelligence Technologies II Juraj Macko Division of Applied computer science Dept. Computer Science Palacky University, Olomouc 17. listopadu 12, CZ-77146

More information

BV4.1 Methodology and User-friendly Software for Decomposing Economic Time Series

BV4.1 Methodology and User-friendly Software for Decomposing Economic Time Series Conference on Seasonality, Seasonal Adjustment and their implications for Short-Term Analysis and Forecasting 10-12 May 2006 BV4.1 Methodology and User-friendly Software for Decomposing Economic Time Series

More information

2.6 Complexity Theory for Map-Reduce. Star Joins 2.6. COMPLEXITY THEORY FOR MAP-REDUCE 51

2.6 Complexity Theory for Map-Reduce. Star Joins 2.6. COMPLEXITY THEORY FOR MAP-REDUCE 51 2.6. COMPLEXITY THEORY FOR MAP-REDUCE 51 Star Joins A common structure for data mining of commercial data is the star join. For example, a chain store like Walmart keeps a fact table whose tuples each

More information

By Value By Volume By Type-Mercury Based Thermometers, Digital Thermometers, Infrared Thermometers, Temperature Trend Indicator, Others

By Value By Volume By Type-Mercury Based Thermometers, Digital Thermometers, Infrared Thermometers, Temperature Trend Indicator, Others Global Body Temperature Monitoring Devices Market (Thermometers - Digital, Infrared, Mercury-Based; Temperature Trend Indicators): Analysis By Region, By Country (2016-2021) By Value By Volume By Type-Mercury

More information

2017 Scientific Ocean Drilling Bibliographic Database Report

2017 Scientific Ocean Drilling Bibliographic Database Report 2017 Scientific Ocean Drilling Bibliographic Database Report Covering records related to the Deep Sea Drilling Project, Ocean Drilling Program, Integrated Ocean Drilling Program, and International Ocean

More information

Eurostat Business Cycle Clock (BCC): A user's guide

Eurostat Business Cycle Clock (BCC): A user's guide EUROPEAN COMMISSION EUROSTAT Directorate C: National Accounts, Prices and Key Indicators Unit C-1: National accounts methodology. Indicators ESTAT.C.1 - National accounts methodology/indicators Eurostat

More information

Weather Company Energy and Power Products

Weather Company Energy and Power Products Service Weather Company Energy and Power Products This Service (SD) describes the Cloud Service IBM provides to Client. Client means the company and its authorized users and recipients of the Cloud Service.

More information

2012 State of the Region Address. Michael C. Carroll, Ph.D. Center for Regional Development Bowling Green State University

2012 State of the Region Address. Michael C. Carroll, Ph.D. Center for Regional Development Bowling Green State University 2012 State of the Region Address Michael C. Carroll, Ph.D. Center for Regional Development Bowling Green State University Outline How we have changed Changing employment trends Temporal view of unemployment

More information

Global 3D Machine Vision Market Report- Forecast till 2022

Global 3D Machine Vision Market Report- Forecast till 2022 Report Information More information from: https://www.marketresearchfuture.com/reports/1538 Global 3D Machine Vision Market Report- Forecast till 2022 Report / Search Code: MRFR/SEM/1009-HCRR Publish Date:

More information

Some Personal Perspectives on Demand Forecasting Past, Present, Future

Some Personal Perspectives on Demand Forecasting Past, Present, Future Some Personal Perspectives on Demand Forecasting Past, Present, Future Hans Levenbach, PhD Delphus, Inc. INFORMS Luncheon Penn Club, NYC Presentation Overview Introduction Demand Analysis and Forecasting

More information

Gravity Analysis of Regional Economic Interdependence: In case of Japan

Gravity Analysis of Regional Economic Interdependence: In case of Japan Prepared for the 21 st INFORUM World Conference 26-31 August 2013, Listvyanka, Russia Gravity Analysis of Regional Economic Interdependence: In case of Japan Toshiaki Hasegawa Chuo University Tokyo, JAPAN

More information

Spatial Data Warehouses: Some Solutions and Unresolved Problems

Spatial Data Warehouses: Some Solutions and Unresolved Problems Spatial Data Warehouses: Some Solutions and Unresolved Problems Elzbieta Malinowski and Esteban Zimányi Université Libre de Bruxelles Department of Computer & Decision Engineering emalinow@ulb.ac.be, ezimanyi@ulb.ac.be

More information

INTRODUCTION TO RELATIONAL DATABASE SYSTEMS

INTRODUCTION TO RELATIONAL DATABASE SYSTEMS INTRODUCTION TO RELATIONAL DATABASE SYSTEMS DATENBANKSYSTEME 1 (INF 3131) Torsten Grust Universität Tübingen Winter 2017/18 1 THE RELATIONAL ALGEBRA The Relational Algebra (RA) is a query language for

More information

Databases 2011 The Relational Algebra

Databases 2011 The Relational Algebra Databases 2011 Christian S. Jensen Computer Science, Aarhus University What is an Algebra? An algebra consists of values operators rules Closure: operations yield values Examples integers with +,, sets

More information

NOWCASTING REPORT. Updated: August 17, 2018

NOWCASTING REPORT. Updated: August 17, 2018 NOWCASTING REPORT Updated: August 17, 2018 The New York Fed Staff Nowcast for 2018:Q3 stands at 2.4%. News from this week s data releases decreased the nowcast for 2018:Q3 by 0.2 percentage point. Negative

More information

Important Developments in International Coke Markets

Important Developments in International Coke Markets Important Developments in International Coke Markets Andrew Jones Resource-Net South Africa China Coke Market Congress Xuzhou, Jiangsu September 2018 Introduction to Presentation Resource-Net produces

More information

Representing Spatiality in a Conceptual Multidimensional Model

Representing Spatiality in a Conceptual Multidimensional Model Representing Spatiality in a Conceptual Multidimensional Model Apparead in Proceedings of the 12th annual ACM international workshop on Geographic information systems, November 12-13, 2004 Washington DC,

More information

Erly Marsh - a Model-Based Testing tool. Johan Blom, PhD

Erly Marsh - a Model-Based Testing tool. Johan Blom, PhD Erly Marsh - a Model-Based Testing tool Johan Blom, PhD 1 Motivation Mobile Arts Develops server software for mobile telecom operators (Location server, SMSC etc.) Implementations rather big and complicated

More information

C o p e r n i c u s M a r i n e S e r v i c e i n s u p p o r t t o s u s t a i n a b l e B l u e G r o w t h

C o p e r n i c u s M a r i n e S e r v i c e i n s u p p o r t t o s u s t a i n a b l e B l u e G r o w t h Implemented by C o p e r n i c u s M a r i n e S e r v i c e i n s u p p o r t t o s u s t a i n a b l e B l u e G r o w t h European Commission, DG MARE 19 Januray 2018 C O P E R N I C U S I N B R I E

More information

UNIT-IV CORRELATION AND REGRESSION

UNIT-IV CORRELATION AND REGRESSION Correlation coefficient: UNIT-IV CORRELATION AND REGRESSION The quantity r, called the linear correlation coefficient, measures the strength and the direction of a linear relationship between two variables.

More information

ˆ GDP t = GDP t SCAN t (1) t stat : (3.71) (5.53) (3.27) AdjustedR 2 : 0.652

ˆ GDP t = GDP t SCAN t (1) t stat : (3.71) (5.53) (3.27) AdjustedR 2 : 0.652 We study the relationship between SCAN index and GDP growth for some major countries. The SCAN data is taken as of Oct. The SCAN is of monthly frequency so we first compute its three-month average as quarterly

More information

CS 347. Parallel and Distributed Data Processing. Spring Notes 11: MapReduce

CS 347. Parallel and Distributed Data Processing. Spring Notes 11: MapReduce CS 347 Parallel and Distributed Data Processing Spring 2016 Notes 11: MapReduce Motivation Distribution makes simple computations complex Communication Load balancing Fault tolerance Not all applications

More information

Prof. Emmanuel Tsesmelis Deputy Head of International Relations CERN

Prof. Emmanuel Tsesmelis Deputy Head of International Relations CERN Welcome Hoşgeldiniz Prof. Emmanuel Tsesmelis Deputy Head of International Relations CERN Accelerating Science and Innovation The Mission of CERN Push back the frontiers of knowledge E.g. the secrets of

More information

Non-Approximability Results (2 nd part) 1/19

Non-Approximability Results (2 nd part) 1/19 Non-Approximability Results (2 nd part) 1/19 Summary - The PCP theorem - Application: Non-approximability of MAXIMUM 3-SAT 2/19 Non deterministic TM - A TM where it is possible to associate more than one

More information

Multiple-Site Distributed Spatial Query Optimization using Spatial Semijoins

Multiple-Site Distributed Spatial Query Optimization using Spatial Semijoins 11 Multiple-Site Distributed Spatial Query Optimization using Spatial Semijoins Wendy OSBORN a, 1 and Saad ZAAMOUT a a Department of Mathematics and Computer Science, University of Lethbridge, Lethbridge,

More information

EXPECTATIONS OF TURKISH ENVIRONMENTAL SECTOR FROM INSPIRE

EXPECTATIONS OF TURKISH ENVIRONMENTAL SECTOR FROM INSPIRE EXPECTATIONS OF TURKISH ENVIRONMENTAL SECTOR FROM INSPIRE June, 2010 Ahmet ÇİVİ Tuncay DEMİR INSPIRE in the Eyes of MoEF Handling of Geodata by MoEF Benefits Expected TEIEN First Steps for INSPIRE Final

More information

CSE 562 Database Systems

CSE 562 Database Systems Outline Query Optimization CSE 562 Database Systems Query Processing: Algebraic Optimization Some slides are based or modified from originals by Database Systems: The Complete Book, Pearson Prentice Hall

More information

Exam 1. March 12th, CS525 - Midterm Exam Solutions

Exam 1. March 12th, CS525 - Midterm Exam Solutions Name CWID Exam 1 March 12th, 2014 CS525 - Midterm Exam s Please leave this empty! 1 2 3 4 5 Sum Things that you are not allowed to use Personal notes Textbook Printed lecture notes Phone The exam is 90

More information

CS360 Homework 12 Solution

CS360 Homework 12 Solution CS360 Homework 12 Solution Constraint Satisfaction 1) Consider the following constraint satisfaction problem with variables x, y and z, each with domain {1, 2, 3}, and constraints C 1 and C 2, defined

More information

Global Value Chain Participation and Current Account Imbalances

Global Value Chain Participation and Current Account Imbalances Global Value Chain Participation and Current Account Imbalances Johannes Brumm University of Zurich Georgios Georgiadis European Central Bank Johannes Gräb European Central Bank Fabian Trottner Princeton

More information

Fast, Effective XPS Point Analysis of Metal Components

Fast, Effective XPS Point Analysis of Metal Components Application Note: 52297 Fast, Effective XPS Point Analysis of Metal Components Chris Baily and Tim Nunney, Thermo Fisher Scientific, East Grinstead, West Sussex, UK Key Words K-Alpha Auto-Analysis Multi-Spectrum

More information

Assertions and Measurements for Mixed-Signal Simulation

Assertions and Measurements for Mixed-Signal Simulation Assertions and Measurements for Mixed-Signal Simulation PhD Thesis Thomas Ferrère VERIMAG, University of Grenoble (directeur: Oded Maler) Mentor Graphics Corporation (co-encadrant: Ernst Christen) October

More information

NanoLambda NSP32-V1 Spectrometer

NanoLambda NSP32-V1 Spectrometer NanoLambda NSP32-V1 Spectrometer Nano spectrometer for IoT and industrial MEMS/Imaging report by Sylvain Hallereau June 2017 21 rue la Noue Bras de Fer 44200 NANTES - FRANCE +33 2 40 18 09 16 info@systemplus.fr

More information

NOWCASTING REPORT. Updated: May 20, 2016

NOWCASTING REPORT. Updated: May 20, 2016 NOWCASTING REPORT Updated: May 20, 2016 The FRBNY Staff Nowcast for GDP growth in 2016:Q2 is 1.7%, half a percentage point higher than last week. Positive news came from manufacturing and housing data

More information

Augmented Reality Market Research Report- Global Forecast till 2023

Augmented Reality Market Research Report- Global Forecast till 2023 Report Information More information from: https://www.marketresearchfuture.com/reports/1143 Augmented Reality Market Research Report- Global Forecast till 2023 Report / Search Code: MRFR/ICT/0637-HCRR

More information

Postgraduate studies at the Biozentrum.

Postgraduate studies at the Biozentrum. Postgraduate studies at the Biozentrum. PhD Students & Postdocs. Young talent at the forefront of life science research. With its interdisciplinary PhD program, the Biozentrum offers Master graduates an

More information

P Q1 Q2 Q3 Q4 Q5 Tot (60) (20) (20) (20) (60) (20) (200) You are allotted a maximum of 4 hours to complete this exam.

P Q1 Q2 Q3 Q4 Q5 Tot (60) (20) (20) (20) (60) (20) (200) You are allotted a maximum of 4 hours to complete this exam. Exam INFO-H-417 Database System Architecture 13 January 2014 Name: ULB Student ID: P Q1 Q2 Q3 Q4 Q5 Tot (60 (20 (20 (20 (60 (20 (200 Exam modalities You are allotted a maximum of 4 hours to complete this

More information

Chapter 2. Section < , 2, 0, 3. Objective A Exercises, pages , 3, 1, , 0, 5, 9 37.

Chapter 2. Section < , 2, 0, 3. Objective A Exercises, pages , 3, 1, , 0, 5, 9 37. Chapter 2 Section 2.1 Objective A Exercises, pages 97 98 1. -6-5 -4-3 -2-1 0 1 2 3 4 5 6 3. -6-5 -4-3 -2-1 0 1 2 3 4 5 6 5. -6-5 -4-3 -2-1 0 1 2 3 4 5 6 7. -6-5 -4-3 -2-1 0 1 2 3 4 5 6 9. 3-6 -5-4 -3-2

More information

Your Virtual Workforce. On Demand. Worldwide. COMPANY PRESENTATION. clickworker GmbH 2017

Your Virtual Workforce. On Demand. Worldwide. COMPANY PRESENTATION. clickworker GmbH 2017 Your Virtual Workforce. On Demand. Worldwide. COMPANY PRESENTATION 2017 CLICKWORKER AT A GLANCE Segment: Paid Crowdsourcing / Microtasking Services: Text Creation (incl. SEO Texts), AI-Training Data, Internet

More information

XBC300 Gen2. Fully-automated debonder and Cleaner

XBC300 Gen2. Fully-automated debonder and Cleaner XBC300 Gen2 Fully-automated debonder and Cleaner XBC300 Gen2 FULLY AUTOMATED DEBONDER AND CLEANER The SUSS XBC300 Gen2 debonder and cleaner platform is designed for process development as well as high

More information

MapReduce in Spark. Krzysztof Dembczyński. Intelligent Decision Support Systems Laboratory (IDSS) Poznań University of Technology, Poland

MapReduce in Spark. Krzysztof Dembczyński. Intelligent Decision Support Systems Laboratory (IDSS) Poznań University of Technology, Poland MapReduce in Spark Krzysztof Dembczyński Intelligent Decision Support Systems Laboratory (IDSS) Poznań University of Technology, Poland Software Development Technologies Master studies, first semester

More information

Werner Nutt. Yehoshua Sagiv, Sara Shurin. The Hebrew University

Werner Nutt. Yehoshua Sagiv, Sara Shurin. The Hebrew University Deciding Equivalences among Aggregate Queries Werner Nutt German Research Center for AI (DFKI) Saarbrucken, Germany Yehoshua Sagiv, Sara Shurin The Hebrew University Jerusalem, Israel Deciding Equivalences

More information

Chapter 14. Representative Table and Composite Regions. Betina V. Dimaranan Representative Table

Chapter 14. Representative Table and Composite Regions. Betina V. Dimaranan Representative Table Chapter 14 Representative Table and Composite Regions Betina V. Dimaranan This chapter describes the representative input-output table and the construction of input-output tables for the composite regions

More information

NOWCASTING REPORT. Updated: July 20, 2018

NOWCASTING REPORT. Updated: July 20, 2018 NOWCASTING REPORT Updated: July 20, 2018 The New York Fed Staff Nowcast stands at 2.7% for 2018:Q2 and 2.4% for 2018:Q3. News from this week s data releases decreased the nowcast for 2018:Q2 by 0.1 percentage

More information

Weather Risk Management. Salah DHOUIB Underwriter Paris Re

Weather Risk Management. Salah DHOUIB Underwriter Paris Re 1 Weather Risk Management Salah DHOUIB Underwriter Paris Re 2 T A B L E Index Based Weather Covers Energy Index Based Reinsurance Humanitarian Aid Market Figures 3 Concept of index based weather covers:

More information

NOWCASTING REPORT. Updated: May 5, 2017

NOWCASTING REPORT. Updated: May 5, 2017 NOWCASTING REPORT Updated: May 5, 217 The FRBNY Staff Nowcast stands at 1.8% for 217:Q2. News from this week s data releases reduced the nowcast for Q2 by percentage point. Negative surprises from the

More information

The Mathematics of Open Reaction Networks

The Mathematics of Open Reaction Networks The Mathematics of Open Reaction Networks Y John Baez U. C. Riverside / Centre for Quantum Technologies Dynamics, Thermodynamics and Information Processing in Chemical Networks June 13, 2017 In many areas

More information

NOWCASTING REPORT. Updated: September 7, 2018

NOWCASTING REPORT. Updated: September 7, 2018 NOWCASTING REPORT Updated: September 7, 2018 The New York Fed Staff Nowcast stands at 2.2% for 2018:Q3 and 2.8% for 2018:Q4. News from this week s data releases increased the nowcast for 2018:Q3 by 0.2

More information

Anomaly Detection for the CERN Large Hadron Collider injection magnets

Anomaly Detection for the CERN Large Hadron Collider injection magnets Anomaly Detection for the CERN Large Hadron Collider injection magnets Armin Halilovic KU Leuven - Department of Computer Science In cooperation with CERN 2018-07-27 0 Outline 1 Context 2 Data 3 Preprocessing

More information

Investors presentation Oddo BHF Forum - January 2019

Investors presentation Oddo BHF Forum - January 2019 Investors presentation Oddo BHF Forum - January 2019 YMAGIS IN A NUTSHELL European leader for digital technologies and services for the cinema industry 26 countries 180m present in 26 countries across

More information

SOFTWARE ARCHITECTURE DESIGN OF GIS WEB SERVICE AGGREGATION BASED ON SERVICE GROUP

SOFTWARE ARCHITECTURE DESIGN OF GIS WEB SERVICE AGGREGATION BASED ON SERVICE GROUP SOFTWARE ARCHITECTURE DESIGN OF GIS WEB SERVICE AGGREGATION BASED ON SERVICE GROUP LIU Jian-chuan*, YANG Jun, TAN Ming-jian, GAN Quan Sichuan Geomatics Center, Chengdu 610041, China Keywords: GIS; Web;

More information

In-Database Factorised Learning fdbresearch.github.io

In-Database Factorised Learning fdbresearch.github.io In-Database Factorised Learning fdbresearch.github.io Mahmoud Abo Khamis, Hung Ngo, XuanLong Nguyen, Dan Olteanu, and Maximilian Schleich December 2017 Logic for Data Science Seminar Alan Turing Institute

More information

New Nuclear In Europe: 2030 Outlook By Stephen Tarlton

New Nuclear In Europe: 2030 Outlook By Stephen Tarlton New Nuclear In Europe: 2030 Outlook By Stephen Tarlton If you are searching for a book by Stephen Tarlton New Nuclear in Europe: 2030 Outlook in pdf format, in that case you come on to correct website.

More information

12th AGILE International Conference on Geographic Information Science 2009 page 1 of 9 Leibniz Universität Hannover, Germany

12th AGILE International Conference on Geographic Information Science 2009 page 1 of 9 Leibniz Universität Hannover, Germany 12th AGILE International Conference on Geographic Information Science 2009 page 1 of 9 A Framework for the Generalization of 3D City Models Richard Guercke and Claus Brenner Institute of Cartography and

More information

External Backward Linkage and External Forward Linkage. in Asian International Input-Output Table

External Backward Linkage and External Forward Linkage. in Asian International Input-Output Table Prepared for the 20 th INFORUM World Conference in Firenze, Italy External Backward Linkage and External Forward Linkage in Asian International Input-Output Table Toshiaki Hasegawa Faculty of Economics

More information

M I C R O C O N V E R S I O N G O A L S

M I C R O C O N V E R S I O N G O A L S C O N T A C T U S T h i s p a g e l i s t s a l l o f t h e d i f f e r e n t d e p a r t m e n t s t o c o n t a c t, d e p e n d i n g o n y o u r r e q u e s t. A t t h e b o t t o m o f t h e p a g

More information

Data Analytics Beyond OLAP. Prof. Yanlei Diao

Data Analytics Beyond OLAP. Prof. Yanlei Diao Data Analytics Beyond OLAP Prof. Yanlei Diao OPERATIONAL DBs DB 1 DB 2 DB 3 EXTRACT TRANSFORM LOAD (ETL) METADATA STORE DATA WAREHOUSE SUPPORTS OLAP DATA MINING INTERACTIVE DATA EXPLORATION Overview of

More information

On Permissions, Inheritance and Role Hierarchies

On Permissions, Inheritance and Role Hierarchies On Permissions, Inheritance and Role Hierarchies Information Security Group Royal Holloway, University of London Introduction The role hierarchy is central to most RBAC models Modelled as a partially ordered

More information

Exploring the Benefits of Automated Unattended Sample Derivatization Prior to Gas Chromatography Analysis

Exploring the Benefits of Automated Unattended Sample Derivatization Prior to Gas Chromatography Analysis Exploring the Benefits of Automated Unattended Sample Derivatization Prior to Gas Chromatography Analysis A. Caruso, M. Santoro, P. Magni, S. Pelagatti, and R. Facchetti Thermo Fisher Scientific, Milan,

More information

Enhancing Active Automata Learning by a User Log Based Metric

Enhancing Active Automata Learning by a User Log Based Metric Master Thesis Computing Science Radboud University Enhancing Active Automata Learning by a User Log Based Metric Author Petra van den Bos First Supervisor prof. dr. Frits W. Vaandrager Second Supervisor

More information

Measuring Export Competitiveness

Measuring Export Competitiveness Dynamic Measures of Competitiveness: Are the Geese Still Flying in Formation? Andrew K. Rose U.C. Berkeley and visiting scholar, FRB San Francisco Haas School of Business, Berkeley CA 94720-900 Tel: (50)

More information

NOWCASTING REPORT. Updated: September 23, 2016

NOWCASTING REPORT. Updated: September 23, 2016 NOWCASTING REPORT Updated: September 23, 216 The FRBNY Staff Nowcast stands at 2.3% and 1.2% for 216:Q3 and 216:Q4, respectively. Negative news since the report was last published two weeks ago pushed

More information

What s category theory, anyway? Dedicated to the memory of Dietmar Schumacher ( )

What s category theory, anyway? Dedicated to the memory of Dietmar Schumacher ( ) What s category theory, anyway? Dedicated to the memory of Dietmar Schumacher (1935-2014) Robert Paré November 7, 2014 Many subjects How many subjects are there in mathematics? Many subjects How many subjects

More information

Lineage implementation in PostgreSQL

Lineage implementation in PostgreSQL Lineage implementation in PostgreSQL Andrin Betschart, 09-714-882 Martin Leimer, 09-728-569 3. Oktober 2013 Contents Contents 1. Introduction 3 2. Lineage computation in TPDBs 4 2.1. Lineage......................................

More information

Well-Supported Semantics for Description Logic Programs

Well-Supported Semantics for Description Logic Programs Well-Supported Semantics for Description Logic Programs Yi-Dong Shen Institute of Software, Chinese Academy of Sciences, Beijing, China http://lcs.ios.ac.cn/~ydshen IJCAI 2011, Barcelona, Spain Outline

More information

Temporal Evolution of the ScientificCollaboration Network in Europe

Temporal Evolution of the ScientificCollaboration Network in Europe Temporal Evolution of the ScientificCollaboration Network in Europe Jori Jämsä 23.3.2015 Instructor: Ph.D Raj Kumar Pan Supervisor: Prof. Harri Ehtamo This work can be saved and published in Aalto University

More information

Draft Model Memorandum of Understanding to promote voluntary cooperation between Government and Chemical Industry to enhance Precursors Chemicals

Draft Model Memorandum of Understanding to promote voluntary cooperation between Government and Chemical Industry to enhance Precursors Chemicals Draft Model Memorandum of Understanding to promote voluntary cooperation between Government and Chemical Industry to enhance Precursors Chemicals Control 1 Introduction There has been growing recognition

More information

CS570 Introduction to Data Mining

CS570 Introduction to Data Mining CS570 Introduction to Data Mining Department of Mathematics and Computer Science Li Xiong Data Exploration and Data Preprocessing Data and Attributes Data exploration Data pre-processing Data cleaning

More information

Question Answering on Statistical Linked Data

Question Answering on Statistical Linked Data Question Answering on Statistical Linked Data AKSW Colloquium paper presentation Konrad Höffner Universität Leipzig, AKSW/MOLE, PhD Student 2015-2-16 1 / 18 1 2 3 2 / 18 Motivation Statistical Linked Data

More information

Demand forecasting. Mehmet Yurdal May White paper

Demand forecasting. Mehmet Yurdal May White paper Microsoft Dynamics AX 2012 R3 White paper Roxana Cristina Diaconu and Mehmet Yurdal May 2014 This white paper explains the value proposition of the tool in Microsoft Dynamics AX 2012 R3 and gives an overview

More information

Algorithms for Data Science

Algorithms for Data Science Algorithms for Data Science CSOR W4246 Eleni Drinea Computer Science Department Columbia University Tuesday, December 1, 2015 Outline 1 Recap Balls and bins 2 On randomized algorithms 3 Saving space: hashing-based

More information

More information from:

More information from: Report Information More information from: https://www.wiseguyreports.com/reports/3501422-global-temporary-power-market-size-study-by-power Global Temporary Power Market Size study, by Power Rating (Less

More information

SOLIDS EUROPEAN SERIES SOLIDS BASEL November 2016 Messe Basel. Trade show for granules, powder & bulk solids technologies.

SOLIDS EUROPEAN SERIES SOLIDS BASEL November 2016 Messe Basel. Trade show for granules, powder & bulk solids technologies. SOLIDS EUROPEAN SERIES SOLIDS BASEL 16 17 November 2016 Messe Basel Trade show for granules, powder & bulk solids technologies www.solids-basel.com UNIQUE The leading trade show for granules, powder &

More information

Thermo Scientific ConFlo IV Universal Interface. Continuous Flow Interface. Isotope Ratio MS

Thermo Scientific ConFlo IV Universal Interface. Continuous Flow Interface. Isotope Ratio MS Thermo Scientific ConFlo IV Universal Interface Continuous Flow Interface Isotope Ratio MS 3 ConFlo IV Universal Interface for Continuous Flow Isotope Ratio MS The development of Continuous Flow carrier

More information

The SAB Medium Term Sales Forecasting System : From Data to Planning Information. Kenneth Carden SAB : Beer Division Planning

The SAB Medium Term Sales Forecasting System : From Data to Planning Information. Kenneth Carden SAB : Beer Division Planning The SAB Medium Term Sales Forecasting System : From Data to Planning Information Kenneth Carden SAB : Beer Division Planning Planning in Beer Division F Operational planning = what, when, where & how F

More information

Cloud Shadow IT Survey Results

Cloud Shadow IT Survey Results Cloud Shadow IT Survey Results *Preview 12 April 2016 Demographics 250 IT decision makers (ITDMs) and 250 business decision makers (BDMs) were interviewed in March 2016, split in the following ways...

More information

Interoperable Services for Web-Based Spatial Decision Support

Interoperable Services for Web-Based Spatial Decision Support Interoperable Services for Web-Based Spatial Decision Support Nicole Ostländer Institute for Geoinformatics, University of Münster Münster, Germany ostland@uni-muenster.de SUMMARY A growing number of spatial

More information

REX - A TOOL FOR DISCOVERING EVOLUTION TRENDS

REX - A TOOL FOR DISCOVERING EVOLUTION TRENDS REX - A TOOL FOR DISCOVERING EVOLUTION TRENDS IN ONTOLOGY REGIONS VICTOR CHRISTEN, ANIKA GROSS, MICHAEL HARTUNG 18 TH JULY 2014, DILS, LISBOA 1 ONTOLOGY EVOLUTION Heavy usage of ontologies in the life

More information

NOWCASTING REPORT. Updated: April 15, 2016

NOWCASTING REPORT. Updated: April 15, 2016 NOWCASTING REPORT Updated: April 15, 2016 GDP growth prospects remain moderate for the rst half of the year: the nowcasts stand at 0.8% for 2016:Q1 and 1.2% for 2016:Q2. News from this week's data releases

More information

CHARTING SPATIAL BUSINESS TRANSFORMATION

CHARTING SPATIAL BUSINESS TRANSFORMATION CHARTING SPATIAL BUSINESS TRANSFORMATION An in-depth look at the business patterns of GIS and location intelligence adoption in the private sector EXECUTIVE SUMMARY The global use of geographic information

More information

Development of a Cartographic Expert System

Development of a Cartographic Expert System Development of a Cartographic Expert System Research Team Lysandros Tsoulos, Associate Professor, NTUA Constantinos Stefanakis, Dipl. Eng, M.App.Sci., PhD 1. Introduction Cartographic design and production

More information

Sales Analysis User Manual

Sales Analysis User Manual Sales Analysis User Manual Confidential Information This document contains proprietary and valuable, confidential trade secret information of APPX Software, Inc., Richmond, Virginia Notice of Authorship

More information

Logical Provenance in Data-Oriented Workflows (Long Version)

Logical Provenance in Data-Oriented Workflows (Long Version) Logical Provenance in Data-Oriented Workflows (Long Version) Robert Ikeda Stanford University rmikeda@cs.stanford.edu Akash Das Sarma IIT Kanpur akashds.iitk@gmail.com Jennifer Widom Stanford University

More information

Relational Algebra 2. Week 5

Relational Algebra 2. Week 5 Relational Algebra 2 Week 5 Relational Algebra (So far) Basic operations: Selection ( σ ) Selects a subset of rows from relation. Projection ( π ) Deletes unwanted columns from relation. Cross-product

More information

for XPS surface analysis

for XPS surface analysis Thermo Scientific Avantage XPS Software Powerful instrument operation and data processing for XPS surface analysis Avantage Software Atomic Concentration (%) 100 The premier software for surface analysis

More information

NOWCASTING REPORT. Updated: October 21, 2016

NOWCASTING REPORT. Updated: October 21, 2016 NOWCASTING REPORT Updated: October 21, 216 The FRBNY Staff Nowcast stands at 2.2% for 216:Q3 and 1.4% for 216:Q4. Overall this week s news had a negative effect on the nowcast. The most notable developments

More information

A. Boluwade 1 and A Ferdinand. Ste Anne de Bellevue, QC, H9X 3V9, Canada. ABSTRACT

A. Boluwade 1 and A Ferdinand. Ste Anne de Bellevue, QC, H9X 3V9, Canada.   ABSTRACT The Design and Development of Spatial Database Management Systems (SDMS) for Hydrographic Studies using coupled Open-Source GIS and Relational Database A. Boluwade 1 and A Ferdinand 1 Department Bioresource

More information

Bounded Privacy: Formalising the Trade-Off Between Privacy and Quality of Service

Bounded Privacy: Formalising the Trade-Off Between Privacy and Quality of Service H. Langweg, H. Langweg, M. Meier, M. Meier, B.C. B.C. Witt, Witt, D. Reinhardt D. Reinhardt et al. (Hrsg.): Sicherheit 2018, Lecture Notes in ininformatics (LNI), Gesellschaft für fürinformatik, Bonn 2018

More information

Factorized Relational Databases Olteanu and Závodný, University of Oxford

Factorized Relational Databases   Olteanu and Závodný, University of Oxford November 8, 2013 Database Seminar, U Washington Factorized Relational Databases http://www.cs.ox.ac.uk/projects/fd/ Olteanu and Závodný, University of Oxford Factorized Representations of Relations Cust

More information

Time Petri Nets. Miriam Zia School of Computer Science McGill University

Time Petri Nets. Miriam Zia School of Computer Science McGill University Time Petri Nets Miriam Zia School of Computer Science McGill University Timing Specifications Why is time introduced in Petri nets? To model interaction between activities taking into account their start

More information

Key Words Q Exactive, Accela, MetQuest, Mass Frontier, Drug Discovery

Key Words Q Exactive, Accela, MetQuest, Mass Frontier, Drug Discovery Metabolite Stability Screening and Hotspot Metabolite Identification by Combining High-Resolution, Accurate-Mass Nonselective and Selective Fragmentation Tim Stratton, Caroline Ding, Yingying Huang, Dan

More information