Data Warehousing & Data Mining
|
|
|
- Aldous Hubbard
- 9 years ago
- Views:
Transcription
1 Data Warehousing & Data Mining Wolf-Tilo Balke Silviu Homoceanu Institut für Informationssysteme Technische Universität Braunschweig
2 6. OLAP Operations & Queries 6. OLAP Operations & Queries 6.1 OLAP Operations 6.2 OLAP Queries: SQL 99, MDX Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 2
3 6.0 DW Queries DW queries are big queries Imply a large portion of the data Mostly read queries Redundancy a necessity Materialized views, special-purpose indexes, denormalized schemas Data is refreshed periodically Daily or weekly Their purpose is to analyze data OLAP (OnLine Analytical Processing) Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 3
4 6.0 DW Queries OLAP usage fields Management Information Sales per product group / area / year Government Population census Scientific databases Etc. Geo-, Bio-Informatics Goal: Response time of seconds / few minutes Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 4
5 6.1 OLAP Operations Typical OLAP operations Roll-up Drill-down Slice and dice Pivot (rotate) Other operations Aggregate functions Ranking and comparing Drill-across Drill-through Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 5
6 6.1 Roll-up Roll-up (drill-up) Taking the current aggregation level of fact values and doing a further aggregation Summarize data by Climbing up hierarchy (hierarchical roll-up) By dimensional reduction Or by a mix of these 2 techniques Used for obtaining an increased generalization E.g., from Time.Week to Time.Year Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 6
7 6.1 Roll-up Hierarchical roll-ups Performed on the fact table and some dimension tables by climbing up the attribute hierarchies E.g., climbed the Time hierarchy to Quarter and Article hierarchy to Prod. group Client Country Region District City Store Prod. Categ Prod. Family Prod. Group Week Article Sales Turnover Year Quarter Month Day Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 7
8 6.1 Roll-up Dimensional roll-ups Are done solely on the fact table by dropping one or more dimensions E.g., drop the Client dimension Client Country Region District City Store Prod. Categ Prod. Family Prod. Group Week Article Sales Turnover Year Quarter Month Day Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 8
9 6.1 Roll-up Climbing above the top in hierarchical roll-up In an ultimate case, hierarchical roll-up above the top level of an attribute hierarchy (attribute ALL ) can be viewed as converting to a dimensional roll-up ALL Category Electronics Clothes Video Audio TV Prod. Family Video recorder Camcorder Prod. Group TR-34 TS-56 Article Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 9
10 6.1 Drill-down Drill-down (roll-down) Reverse of roll-up Represents a de-aggregate operation From higher level of summary to lower level of summary detailed data Introducing new dimensions Requires the existence of materialized finer grained data You can t drill if you don t have the data Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 10
11 6.1 Roll-up Drill-down Example by BAR/Time Week1 Week2 Week3 Joe s Salitos Roots Roll-up by BAR by Time Week1 Week2 Week Drill-down by Brand by Brand/Time Week1 Week2 Week3 Wolters Becks Krombacher Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 11
12 6.1 Slice Slice: a subset of the multi-dimensional array corresponding to a single value of one or more dimensions and projection on the rest of dimensions E.g., project on Geo (store) and Time from values corresponding to Laptops in the product dimension StoreId, TimeId, Ammount ( ArticleId = LaptopId (Sales)) Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 12
13 6.1 Slice Amounts to equality select condition WHERE clause in SQL E.g., slice Laptops Product 818 Laptops CellP. Time Geography Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 13
14 6.1 Dice Dice: amounts to range select condition on one dimension, or to equality select condition on more than one dimension E.g. range SELECT Product StoreId, TimeId, Amount ( ArticleId {Laptop, CellP}(Sales)) Laptops 818 CellP. Time Geography Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 14
15 6.1 Dice E.g. equality SELECT on 2 dimensions Product and Time StoreId, Amount ( ArticleId = Laptop MonthID = December (Sales)) Product 818 Laptops CellP. Time January December Geography Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 15
16 6.1 Pivot Pivot (rotate): re-arranging data for viewing purposes The simplest view of pivoting is that it selects two dimensions to aggregate the measure The aggregated values are often displayed in a grid where each point in the (x, y) coordinate system corresponds to an aggregated value of the measure The x and y coordinate values are the values of the selected two dimensions The result of pivoting is also called cross tabulation Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 16
17 6.1 Pivot Consider pivoting the following data Location CityId City 1 Bra.. 2 Hann.. 3 Ham.. Sales CityId PerId TimId Amnt Time TimId Day 1 Mon 2 Tue 3 Wed 4 Thu 5 Fri 6 Sat 7 San 8 Mon Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 17
18 6.1 Pivot Pivoting on City and Day Mon Tue Wed Thu Fri Sat San SubTotal Hamburg Hannover Braunschweig SubTotal Hamb.. Han. Bra.. SubTotal Mon Tue Wed Thu Fri Sat San SubTotal Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 18
19 6.1 Typical Analytical Requests OLAP operations are hard to express in query languages Most analysts and decision makers won t enjoy it SELECT f.region, z.month, sum(a.price * a.volume) FROM Order a, Time z, PoS f WHERE a.pos = f.name AND a.date = z.date GROUP BY f.region, z.month OLAP clients allow operations to be performed through GUIs Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 19
20 Store dimension 6.1 OLAP Data Visualization How do these operations look like for the user? E.g. Crystal Decisions later bought by SAP and integrated into Business Objects 2 dimensions is trivial E.g. Products by Store Product dimension Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 20
21 Product dimension 6.1 OLAP Data Visualization 3 dimensions: We can visualize sold quantity on 3 dimensions as layers Store dimension Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 21
22 6.1 OLAP Data Visualization Another way is by nesting on the same axis Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 22
23 6.1 OLAP Data Visualization OLAP reporting has to be very flexible The IBM Infosphere - OLAP web based report Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 23
24 6.1 OLAP Data Visualization Drill-down operation Can be performed easy by going down on the hierarchy and choosing the granularity Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 24
25 6.1 OLAP Data Visualization Trends Visualization With the help of charts Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 25
26 6.1 OLAP Data Visualization Palo Technologies, integrated into Excel Cubes are defined in a Web interface Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 26
27 6.1 From Presentation to Data Remember the DW architecture? Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 27
28 6.1 From Presentation to Data Client/server architecture The client displays reports and allows interaction with the end user to perform the OLAP operations and other custom queries The server is responsible for providing the requested data. How? It depends on whether it is MOLAP, ROLAP, HOLAP, etc. Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 28
29 6.1 OLAP Server High-capacity, multi-user data manipulation engine specifically designed to support and operate on multidimensional data structures It is optimized for fast, flexible calculation and transformation of raw data based on formulaic relationships Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 29
30 6.1 OLAP Server OLAP server may either Physically stage the processed multidimensional information to deliver consistent and rapid response times to end users (MOLAP) Store data in relational databases and simulate multidimensionality with special schemas (ROLAP) Or offer a choice of both (HOLAP) Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 30
31 6.1 From Presentation to Data Getting from OLAP operations to the data As in the relational model, through queries In OLTP we have SQL as the standard query language However, OLAP operations are hard to express in SQL There is no standard query language for OLAP Choices are: SQL-99 for ROLAP MDX (Multidimensional expressions) for both MOLAP and ROLAP Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 31
32 6.2 Typical OLAP Queries The idea is to Select by Attributes of Dimensions E.g., region = Europe Group by Attributes of Dimensions E.g., region, month, quarter Aggregate on measures E.g., sum(price * volume) OLAP queries in SQL SELECT d 1.x, d 2.y, d 3.z, sum(f.t 1 ), avg(f.t 2 ) FROM Fact f, Dim1 d 1, Dim2 d 2, Dim3 d 3 WHERE a < d 1.field < b AND d 2.field = c GROUP BY d 1.x, d 2.y, d 3.z; Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 32
33 6.2 OLAP Query Languages SQL-99 Prepare SQL for OLAP queries New SQL commands GROUPING SETS ROLLUP CUBE New aggregate functions Queries of type top k Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 33
34 6.2 SQL-92 Shortcomings of SQL/92 with regard to OLAP queries Hard or impossible to express in SQL Multiple aggregations Comparisons (with aggregation) Reporting features Performance penalty Poor execution of queries with many AND and OR conditions Lack of support for statistical functions Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 34
35 6.2 SQL-92 Multiple aggregations in SQL/92 Create a 2D spreadsheet that shows sum of sales by maker as well as car model Each subtotal requires a separate aggregate query SUV Sedan Sport By make BMW Mercedes By model SUM SELECT model, make, sum(amt) FROM sales GROUP BY model, make union SELECT model, sum(amt) FROM sales GROUP BY model union SELECT make, sum(amt) FROM sales GROUP BY make union SELECT sum(amt) FROM sales Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 35
36 6.2 SQL-92 Comparisons in SQL/92 This year s sales vs. last year s sales for each product Requires a self-join CREATE VIEW v_sales AS SELECT prod_id, year, sum(qty) AS sale_sum FROM sales GROUP BY prod_id, year; SELECT cur.prod_id, cur.year, cur.sale_sum, last.year, last.sale_sum FROM v_sales cur, v_sales last WHERE cur.year = (last.year+1) AND cur.prod_id = last.prod_id; Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 36
37 6.2 SQL-92 Reporting features in SQL/92 Too complex to express RANK (top k) and NTILE ( top X% of all products) Median Running total, moving average, cumulative totals E.g. moving average over a 3 day window of total sales for each product CREATE OR REPLACE VIEW v_sales AS SELECT prod_id, time_id, sum(qty) AS sale_sum FROM sales GROUP BY prod_id, time_id; SELECT end.time, avg(start.sale_sum) FROM v_sales start, v_sales end WHERE end.time >= start.time AND end.time <= start.time + 2 GROUP BY end.time; Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 37
38 6.2 SQL-99 Grouping operators Extensions to the GROUP BY operator GROUPING SET ROLLUP CUBE Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 38
39 6.2 Grouping Operators GROUPING SET Efficiently replaces the series of UNIONed queries SELECT dept_name, CAST(NULL AS CHAR(10)) AS job_title, COUNT(*) FROM personnel GROUP BY dept_name UNION ALL SELECT CAST(NULL AS CHAR(8)) AS dept_name, job_title, COUNT(*) FROM personnel GROUP BY job_title; Can be re-written as: SELECT dept_name, job_title, COUNT(*) FROM Personnel GROUP BY GROUPING SET (dept_name, job_title); Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 39
40 6.2 Grouping Sets The issue of NULL values The new grouping functions generate NULL values at the subtotal levels How do we tell the difference between generated NULLs and real NULLs from the data itself The GROUPING function call returns 0 for NULL in the data and 1 for generated NULL Year Brand SUM(qty) 2008 Real NULL BMW VW Gen. Null 1000 (year, brand) (year) Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 40
41 6.2 Roll-up Roll-up: produces a result set that contains subtotal rows in addition to regular grouped rows GROUP BY ROLLUP (a, b, c) is equivalent to GROUP BY GROUPING SETS (a, b, c), (a, b), (a), () N elements of the Roll-up operation translate to (N+1) grouping sets Order is significant for Roll-up! GROUP BY ROLLUP (c, b, a) is equivalent with grouping sets of (c, b, a), (c, b), (c), () Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 41
42 6.2 Roll-up Roll-up operation, e.g.: SELECT year, brand, SUM(qty) FROM sales GROUP BY ROLLUP(year, brand); Year Brand SUM(qty) 2008 Mercedes BMW VW Mercedes (year, brand) (year) (year, brand) (year) (ALL) Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 42
43 6.2 Grouping Operators Cube operator: contains all the subtotal rows of a Roll-up and in addition cross-tabulation rows Can also be thought as a series of GROUPING SETs All permutations of the cubed grouping expressions are computed along with the grand total N elements of a CUBE translate to 2 n grouping sets: GROUP BY CUBE (a, b, c) is equivalent to GROUP BY GROUPING SETS(a, b, c) (a, b) (a, c) (b, c) (a) (b) (c) () Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 43
44 6.2 CUBE Operator Aggregate Sum SUV SEDAN SPORT Group By (with total) By model Sum SUV SEDAN SPORT By Make Cross Tab BMW MERC By model Sum By Make & Year By Year By model& Year The Data Cube and The Sub-Space Aggregates By Make SUV SEDAN SPORT By Make & model Sum By model Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 44
45 6.2 CUBE Operator Example SELECT year, brand, SUM(qty) FROM sales GROUP BY CUBE (year, brand); Year Brand SUM(qty) 2008 Mercedes BMW VW Mercedes Mercedes 300 BMW 350 VW (year, brand) (year) (year, brand) (year) (brand) (ALL) Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 45
46 6.2 OLAP Functions Moving-averages, Percentiles, Ranks are all hard to compute with SQL-92 It involves multiple self joins for the fact table SQL-99 introduced the window clause for creating dynamical windows of data Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 46
47 6.2 Window Clause The window clause specifies an action to perform over a set of rows 3 sub-clauses: Partitioning, ordering and aggregation grouping <aggregate function> OVER ([PARTITION BY <column list>] ORDER BY <sort column list> [<aggregation grouping>]) SELECT AVG(sales) OVER (PARTITION BY region ORDER BY month ASC ROWS 2 PRECEDING) AS SMA3 (moving average of 3 rows) Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 47
48 6.2 Ranking in SQL Ranking operators in SQL Row numbering is the most basic ranking function Old style: ROW_NUMBER() returns a column that contains the row s number within the result set E.g., SELECT SalesOrderID, CustomerID, ROW_NUMBER() OVER (ORDER BY SalesOrderID) as RunningCount FROM Sales WHERE SalesOrderID > ORDER BY SalesOrderID; SalesOrderID CustomerID RunningCount Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 48
49 6.2 Ranking in SQL ROW_NUMBER doesn t consider tied values 2 equal considered values get 2 different returns SalesOrderID RunningCount The behavior is non-deterministic Each tied value could have its number switched!! We need something deterministic Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 49
50 6.2 Ranking in SQL RANK and DENSE_RANK functions Allow ranking items in a group Syntax: RANK ( ) OVER ( [query_partition_clause] order_by_clause ) DENSE_RANK ( ) OVER ( [query_partition_clause] order_by_clause ) Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 50
51 6.2 Ranking in SQL SQL99 Ranking e.g. SELECT channel, calendar, TO_CHAR(TRUNC(SUM(amount_sold),-6), '9,999,999') SALES, RANK() OVER (ORDER BY Trunc(SUM(amount_sold),-6) DESC) AS RANK, DENSE_RANK() OVER (ORDER BY TRUNC(SUM(amount_sold),-6) DESC) AS DENSE_RANK FROM sales, products CHANNEL CALENDAR SALES RANK DENSE_RANK Direct sales , Direct sales , Internet , Internet , Partners , DENSE_RANK leaves no gaps in ranking sequence when there are ties Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 51
52 6.2 Ranking in SQL Other flavors of ranking Group ranking RANK function can operate within groups: the rank gets reset whenever the group changes A single query can contain more than one ranking function, each partitioning the data into different groups Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 52
53 6.2 Group Ranking This is accomplished with the PARTITION BY clause E.g. SELECT RANK() OVER (PARTITION BY channel ORDER BY SUM(amount_sold) DESC) AS RANK_BY_CHANNEL CHANNEL CALENDAR SALES RANK _BY_CHANNEL Direct sales ,000 1 Direct sales ,000 2 Internet ,000 1 Internet ,000 1 Partners ,000 1 Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 53
54 6.2 NTILE Not a part of SQL99 standards but adopted by major vendors NTILE splits a set into equal groups It divides an ordered partition into buckets and assigns a bucket number to each row in the partition Buckets are calculated so that each bucket has exactly the same number of rows assigned to it or at most 1 row more than the others Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 54
55 6.2 NTILE SELECT NTILE(3) OVER (ORDER BY sales) NT_3 FROM CHANNEL CALENDAR SALES NT_3 Direct sales ,000 1 Direct sales ,000 1 Internet ,000 2 Internet ,000 2 Partners ,000 3 NTILE(4) quartile NTILE(100) percentage Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 55
56 6.2 MDX MDX (MultiDimensional expressions) Developed by Microsoft Not really brilliant But adopted by major OLAP providers due to Microsoft's market leader position Used in OLE DB for OLAP (ODBO) with API support XML for Analysis (XMLA): specification of web services for OLAP For ROLAP to support MDX, it is usually translated into SQL Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 56
57 6.2 MDX Basics Similar to SQL syntax SELECT {Germany, Niedersachsen, Bayern, Frankfurt} ON COLUMNS, {Qtr1.CHILDREN, Qtr2, Qtr3} ON ROWS FROM SalesCube WHERE (Measures.Sales, Time.[2011], Products.[All Products]); SELECT Dimensions, on columns and rows FROM Data source cube specification If joined, data cubes must share dimensions WHERE Slicer - restricts the data area Specifies the measures to return Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 57
58 6.2 MDX Basic Elements Lists: Enumeration of elementary nodes from different classification levels E.g. {Germany, Niedersachsen, [Frankfurt am Main], USA} Generated elements: Methods which lead to new sets of the classification levels Germany.CHILDREN generates: {Niedersachsen, Bayern, } Niedersachsen.PARENT generates Germany Time.Quarter.MEMBERS generates all the elements of the classification level Functional generation of sets DESCENDENT(USA, Cities): children of the provided classification levels GENERATE ({USA, France}, DESCENDANTS(Geography.CURRENT, Cities)): enumerates all the cities in USA and France Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 58
59 6.2 MDX Basics Sets nesting combines individual coordinates to reduce dimensionality SELECT CROSSJOIN({Germany, Sachsen, Hannover, BS}{Ikeea, [H&M-Möbel]}) ON COLUMNS, {Qtr1.CHILDREN, Qtr2} ON ROWS FROM salescube WHERE (Measure.Sales, Time.[2010], Products.[All Products]); Deutschland Sachsen Hannover BS Ikeea H&M- Möbel Ikeea H&M- Möbel Ikeea H&M- Möbel Ikeea H&M- Möbel Jan 10 Feb 10 Mar 10 Qtr2 Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 59
60 6.2 MDX Basics Relative selection Uses the order in the dimensional structures Time.[2010].LastChild : last quarter of 2010 [2010].NextMember : {[2011]} [2010].[Qtr4].Nov.Lead(2) : Jan 2011 [2006]:[2009] represents [2006],.., [2009] Methods for hierarchy information extraction Germany.LEVEL : country Time.LEVELS(1) : Year Brackets {}: Sets, e.g. {Hannover, BS, John} []: text interpretation of numbers, empty spaces between words or other symbols E.g. [2010], [Frankfurt am Main], [H&M] (): tuple e.g. WHERE (Measure.Sales, Time.[2010], Products.[All Products]) Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 60
61 6.2 MDX Basics Special functions and filters Special functions TOPCOUNT(), TOPPERCENT(), TOPSUM() e.g. top 5 areas of Germany by turnover on rows SELECT {Time.CHILDREN} ON COLUMNS, {TOPCOUNT(Germany.CHILDREN, 5, Sales.turnover)} ON ROWS FROM salescube WHERE (Measure.Sales, Time.[2010]); Filter function e.g. areas of Germany with increased turnover for 2010 compared to 2009 SELECT FILTER(Germany.CHILDREN, ([2010], Turnover) > ([2009], Turnover)) ON COLUMNS, Quarters.MEMBERS ON ROWS FROM salescube WHERE (Measure.Sales, Time.[2010], Products.Electronics); Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 61
62 6.2 MDX Basics Time series Set Value Expressions e.g., choosing time intervals PERIODSTODATE(Quarter, [15-Nov-2010]): returns Member Value Expressions e.g. pre-periods PARALLELPERIOD(Year, 3, [Sep-2010]): returns [Sep-2007] Numerical functions: covariance, correlation, linear regression Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 62
63 6.2 mdxml XMLA (XML for Analysis) Most recent attempt at a standardized API for OLAP Allows client applications to talk to multi-dimensional data sources In XMLA, mdxml is a MDX wrapper for XML Underlying technologies XML, SOAP, HTTP Service primitives DISCOVER Retrieve information about available data sources, data schemas, server infos EXECUTE Transmission of a query and the corresponding conclusion Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 63
64 Summary OLAP Operations: Roll-up: hierarchical, dimensional Drill-down: You can t drill if you don t have the data Slice, dice, Pivot Operations affect data through query languages OLAP Query languages: SQL 99, MDX SQL99: Grouping Set, Roll-up, Cube operators MDX: Similar to SQL, used especially MOLAP solutions, in ROLAP it is mapped to SQL Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 64
65 Next lecture Building the DW The DW Project Data Extract/Transform/Load (ETL) Metadata Data Warehousing & OLAP Wolf-Tilo Balke Institut für Informationssysteme TU Braunschweig 65
Data Warehousing OLAP
Data Warehousing OLAP References Wei Wang. A Brief MDX Tutorial Using Mondrian. School of Computer Science & Engineering, University of New South Wales. Toon Calders. Querying OLAP Cubes. Wolf-Tilo Balke,
Data W a Ware r house house and and OLAP II Week 6 1
Data Warehouse and OLAP II Week 6 1 Team Homework Assignment #8 Using a data warehousing tool and a data set, play four OLAP operations (Roll up (drill up), Drill down (roll down), Slice and dice, Pivot
Anwendersoftware Anwendungssoftwares a. Data-Warehouse-, Data-Mining- and OLAP-Technologies. Online Analytic Processing
Anwendungssoftwares a Data-Warehouse-, Data-Mining- and OLAP-Technologies Online Analytic Processing Online Analytic Processing OLAP Online Analytic Processing Technologies and tools that support (ad-hoc)
Data Warehousing. Read chapter 13 of Riguzzi et al Sistemi Informativi. Slides derived from those by Hector Garcia-Molina
Data Warehousing Read chapter 13 of Riguzzi et al Sistemi Informativi Slides derived from those by Hector Garcia-Molina What is a Warehouse? Collection of diverse data subject oriented aimed at executive,
Data Warehousing and Decision Support. Introduction. Three Complementary Trends. Chapter 23, Part A
Data Warehousing and Decision Support Chapter 23, Part A Database Management Systems, 2 nd Edition. R. Ramakrishnan and J. Gehrke 1 Introduction Increasingly, organizations are analyzing current and historical
Week 13: Data Warehousing. Warehousing
1 Week 13: Data Warehousing Warehousing Growing industry: $8 billion in 1998 Range from desktop to huge: Walmart: 900-CPU, 2,700 disk, 23TB Teradata system Lots of buzzwords, hype slice & dice, rollup,
Database Applications. Advanced Querying. Transaction Processing. Transaction Processing. Data Warehouse. Decision Support. Transaction processing
Database Applications Advanced Querying Transaction processing Online setting Supports day-to-day operation of business OLAP Data Warehousing Decision support Offline setting Strategic planning (statistics)
Learning Objectives. Definition of OLAP Data cubes OLAP operations MDX OLAP servers
OLAP Learning Objectives Definition of OLAP Data cubes OLAP operations MDX OLAP servers 2 What is OLAP? OLAP has two immediate consequences: online part requires the answers of queries to be fast, the
1. OLAP is an acronym for a. Online Analytical Processing b. Online Analysis Process c. Online Arithmetic Processing d. Object Linking and Processing
1. OLAP is an acronym for a. Online Analytical Processing b. Online Analysis Process c. Online Arithmetic Processing d. Object Linking and Processing 2. What is a Data warehouse a. A database application
DATA WAREHOUSING - OLAP
http://www.tutorialspoint.com/dwh/dwh_olap.htm DATA WAREHOUSING - OLAP Copyright tutorialspoint.com Online Analytical Processing Server OLAP is based on the multidimensional data model. It allows managers,
Outline. Data Warehousing. What is a Warehouse? What is a Warehouse?
Outline Data Warehousing What is a data warehouse? Why a warehouse? Models & operations Implementing a warehouse 2 What is a Warehouse? Collection of diverse data subject oriented aimed at executive, decision
Cognos 8 Best Practices
Northwestern University Business Intelligence Solutions Cognos 8 Best Practices Volume 2 Dimensional vs Relational Reporting Reporting Styles Relational Reports are composed primarily of list reports,
OLAP & DATA MINING CS561-SPRING 2012 WPI, MOHAMED ELTABAKH
OLAP & DATA MINING CS561-SPRING 2012 WPI, MOHAMED ELTABAKH 1 Online Analytic Processing OLAP 2 OLAP OLAP: Online Analytic Processing OLAP queries are complex queries that Touch large amounts of data Discover
Data Warehousing: Data Models and OLAP operations. By Kishore Jaladi [email protected]
Data Warehousing: Data Models and OLAP operations By Kishore Jaladi [email protected] Topics Covered 1. Understanding the term Data Warehousing 2. Three-tier Decision Support Systems 3. Approaches
OLAP and Data Mining. Data Warehousing and End-User Access Tools. Introducing OLAP. Introducing OLAP
Data Warehousing and End-User Access Tools OLAP and Data Mining Accompanying growth in data warehouses is increasing demands for more powerful access tools providing advanced analytical capabilities. Key
DATA CUBES E0 261. Jayant Haritsa Computer Science and Automation Indian Institute of Science. JAN 2014 Slide 1 DATA CUBES
E0 261 Jayant Haritsa Computer Science and Automation Indian Institute of Science JAN 2014 Slide 1 Introduction Increasingly, organizations are analyzing historical data to identify useful patterns and
CSE 544 Principles of Database Management Systems. Magdalena Balazinska Fall 2007 Lecture 16 - Data Warehousing
CSE 544 Principles of Database Management Systems Magdalena Balazinska Fall 2007 Lecture 16 - Data Warehousing Class Projects Class projects are going very well! Project presentations: 15 minutes On Wednesday
Copyright 2007 Ramez Elmasri and Shamkant B. Navathe. Slide 29-1
Slide 29-1 Chapter 29 Overview of Data Warehousing and OLAP Chapter 29 Outline Purpose of Data Warehousing Introduction, Definitions, and Terminology Comparison with Traditional Databases Characteristics
Introduction to Data Warehousing. Ms Swapnil Shrivastava [email protected]
Introduction to Data Warehousing Ms Swapnil Shrivastava [email protected] Necessity is the mother of invention Why Data Warehouse? Scenario 1 ABC Pvt Ltd is a company with branches at Mumbai,
CS2032 Data warehousing and Data Mining Unit II Page 1
UNIT II BUSINESS ANALYSIS Reporting Query tools and Applications The data warehouse is accessed using an end-user query and reporting tool from Business Objects. Business Objects provides several tools
Overview. Data Warehousing and Decision Support. Introduction. Three Complementary Trends. Data Warehousing. An Example: The Store (e.g.
Overview Data Warehousing and Decision Support Chapter 25 Why data warehousing and decision support Data warehousing and the so called star schema MOLAP versus ROLAP OLAP, ROLLUP AND CUBE queries Design
Week 3 lecture slides
Week 3 lecture slides Topics Data Warehouses Online Analytical Processing Introduction to Data Cubes Textbook reference: Chapter 3 Data Warehouses A data warehouse is a collection of data specifically
DATA WAREHOUSING AND OLAP TECHNOLOGY
DATA WAREHOUSING AND OLAP TECHNOLOGY Manya Sethi MCA Final Year Amity University, Uttar Pradesh Under Guidance of Ms. Shruti Nagpal Abstract DATA WAREHOUSING and Online Analytical Processing (OLAP) are
Overview of Data Warehousing and OLAP
Overview of Data Warehousing and OLAP Chapter 28 March 24, 2008 ADBS: DW 1 Chapter Outline What is a data warehouse (DW) Conceptual structure of DW Why separate DW Data modeling for DW Online Analytical
Turning your Warehouse Data into Business Intelligence: Reporting Trends and Visibility Michael Armanious; Vice President Sales and Marketing Datex,
Turning your Warehouse Data into Business Intelligence: Reporting Trends and Visibility Michael Armanious; Vice President Sales and Marketing Datex, Inc. Overview Introduction What is Business Intelligence?
Business Intelligence for SUPRA. WHITE PAPER Cincom In-depth Analysis and Review
Business Intelligence for A Technical Overview WHITE PAPER Cincom In-depth Analysis and Review SIMPLIFICATION THROUGH INNOVATION Business Intelligence for A Technical Overview Table of Contents Complete
OLAP Systems and Multidimensional Expressions I
OLAP Systems and Multidimensional Expressions I Krzysztof Dembczyński Intelligent Decision Support Systems Laboratory (IDSS) Poznań University of Technology, Poland Software Development Technologies Master
BUILDING BLOCKS OF DATAWAREHOUSE. G.Lakshmi Priya & Razia Sultana.A Assistant Professor/IT
BUILDING BLOCKS OF DATAWAREHOUSE G.Lakshmi Priya & Razia Sultana.A Assistant Professor/IT 1 Data Warehouse Subject Oriented Organized around major subjects, such as customer, product, sales. Focusing on
A Technical Review on On-Line Analytical Processing (OLAP)
A Technical Review on On-Line Analytical Processing (OLAP) K. Jayapriya 1., E. Girija 2,III-M.C.A., R.Uma. 3,M.C.A.,M.Phil., Department of computer applications, Assit.Prof,Dept of M.C.A, Dhanalakshmi
Building Data Cubes and Mining Them. Jelena Jovanovic Email: [email protected]
Building Data Cubes and Mining Them Jelena Jovanovic Email: [email protected] KDD Process KDD is an overall process of discovering useful knowledge from data. Data mining is a particular step in the
Designing a Dimensional Model
Designing a Dimensional Model Erik Veerman Atlanta MDF member SQL Server MVP, Microsoft MCT Mentor, Solid Quality Learning Definitions Data Warehousing A subject-oriented, integrated, time-variant, and
2074 : Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000
2074 : Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000 Introduction This course provides students with the knowledge and skills necessary to design, implement, and deploy OLAP
Basics of Dimensional Modeling
Basics of Dimensional Modeling Data warehouse and OLAP tools are based on a dimensional data model. A dimensional model is based on dimensions, facts, cubes, and schemas such as star and snowflake. Dimensional
Data Warehousing and OLAP
1 Data Warehousing and OLAP Hector Garcia-Molina Stanford University Warehousing Growing industry: $8 billion in 1998 Range from desktop to huge: Walmart: 900-CPU, 2,700 disk, 23TB Teradata system Lots
Multi-dimensional index structures Part I: motivation
Multi-dimensional index structures Part I: motivation 144 Motivation: Data Warehouse A definition A data warehouse is a repository of integrated enterprise data. A data warehouse is used specifically for
Decision Support. Chapter 23. Database Management Systems, 2 nd Edition. R. Ramakrishnan and J. Gehrke 1
Decision Support Chapter 23 Database Management Systems, 2 nd Edition. R. Ramakrishnan and J. Gehrke 1 Introduction Increasingly, organizations are analyzing current and historical data to identify useful
M2074 - Designing and Implementing OLAP Solutions Using Microsoft SQL Server 2000 5 Day Course
Module 1: Introduction to Data Warehousing and OLAP Introducing Data Warehousing Defining OLAP Solutions Understanding Data Warehouse Design Understanding OLAP Models Applying OLAP Cubes At the end of
CSE 544 Principles of Database Management Systems. Magdalena Balazinska Winter 2009 Lecture 15 - Data Warehousing: Cubes
CSE 544 Principles of Database Management Systems Magdalena Balazinska Winter 2009 Lecture 15 - Data Warehousing: Cubes Final Exam Overview Open books and open notes No laptops and no other mobile devices
Data Warehouse design
Data Warehouse design Design of Enterprise Systems University of Pavia 21/11/2013-1- Data Warehouse design DATA PRESENTATION - 2- BI Reporting Success Factors BI platform success factors include: Performance
SQL Server Administrator Introduction - 3 Days Objectives
SQL Server Administrator Introduction - 3 Days INTRODUCTION TO MICROSOFT SQL SERVER Exploring the components of SQL Server Identifying SQL Server administration tasks INSTALLING SQL SERVER Identifying
IBM Cognos 8 Business Intelligence Analysis Discover the factors driving business performance
Data Sheet IBM Cognos 8 Business Intelligence Analysis Discover the factors driving business performance Overview Multidimensional analysis is a powerful means of extracting maximum value from your corporate
HYPERION ESSBASE SYSTEM 9
HYPERION ESSBASE SYSTEM 9 ESSBASE INTEGRATION SERVICES RELEASE 9.3.1 DATA PREPARATION GUIDE Integration Services Data Preparation Guide, 9.3.1 Copyright 1998, 2007, Oracle and/or its affiliates. All rights
Monitoring Genebanks using Datamarts based in an Open Source Tool
Monitoring Genebanks using Datamarts based in an Open Source Tool April 10 th, 2008 Edwin Rojas Research Informatics Unit (RIU) International Potato Center (CIP) GPG2 Workshop 2008 Datamarts Motivation
Business Intelligence, Analytics & Reporting: Glossary of Terms
Business Intelligence, Analytics & Reporting: Glossary of Terms A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Ad-hoc analytics Ad-hoc analytics is the process by which a user can create a new report
To increase performaces SQL has been extended in order to have some new operations avaiable. They are:
OLAP To increase performaces SQL has been extended in order to have some new operations avaiable. They are:. roll up: aggregates different events to reduce details used to describe them (looking at higher
University of Gaziantep, Department of Business Administration
University of Gaziantep, Department of Business Administration The extensive use of information technology enables organizations to collect huge amounts of data about almost every aspect of their businesses.
Creating Hybrid Relational-Multidimensional Data Models using OBIEE and Essbase by Mark Rittman and Venkatakrishnan J
Creating Hybrid Relational-Multidimensional Data Models using OBIEE and Essbase by Mark Rittman and Venkatakrishnan J ODTUG Kaleidoscope Conference June 2009, Monterey, USA Oracle Business Intelligence
CHAPTER 4 Data Warehouse Architecture
CHAPTER 4 Data Warehouse Architecture 4.1 Data Warehouse Architecture 4.2 Three-tier data warehouse architecture 4.3 Types of OLAP servers: ROLAP versus MOLAP versus HOLAP 4.4 Further development of Data
CS54100: Database Systems
CS54100: Database Systems Date Warehousing: Current, Future? 20 April 2012 Prof. Chris Clifton Data Warehousing: Goals OLAP vs OLTP On Line Analytical Processing (vs. Transaction) Optimize for read, not
Introducing Microsoft SQL Server 2012 Getting Started with SQL Server Management Studio
Querying Microsoft SQL Server 2012 Microsoft Course 10774 This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft SQL Server
Microsoft Excel 2010 Pivot Tables
Microsoft Excel 2010 Pivot Tables Email: [email protected] Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Pivot Tables 1.5 hours Topics include data groupings, pivot tables, pivot
Querying Microsoft SQL Server
Course 20461C: Querying Microsoft SQL Server Module 1: Introduction to Microsoft SQL Server 2014 This module introduces the SQL Server platform and major tools. It discusses editions, versions, tools used
SQL SERVER TRAINING CURRICULUM
SQL SERVER TRAINING CURRICULUM Complete SQL Server 2000/2005 for Developers Management and Administration Overview Creating databases and transaction logs Managing the file system Server and database configuration
Querying Microsoft SQL Server 2012
Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Language(s): English Audience(s): IT Professionals Level: 200 Technology: Microsoft SQL Server 2012 Type: Course Delivery Method: Instructor-led
OLAP and Data Warehousing! Introduction!
The image cannot be displayed. Your computer may not have enough memory to open the image, or the image may have been corrupted. Restart your computer, and then open the file again. If the red x still
Course ID#: 1401-801-14-W 35 Hrs. Course Content
Course Content Course Description: This 5-day instructor led course provides students with the technical skills required to write basic Transact- SQL queries for Microsoft SQL Server 2014. This course
Data Warehousing. Outline. From OLTP to the Data Warehouse. Overview of data warehousing Dimensional Modeling Online Analytical Processing
Data Warehousing Outline Overview of data warehousing Dimensional Modeling Online Analytical Processing From OLTP to the Data Warehouse Traditionally, database systems stored data relevant to current business
About PivotTable reports
Page 1 of 8 Excel Home > PivotTable reports and PivotChart reports > Basics Overview of PivotTable and PivotChart reports Show All Use a PivotTable report to summarize, analyze, explore, and present summary
When to consider OLAP?
When to consider OLAP? Author: Prakash Kewalramani Organization: Evaltech, Inc. Evaltech Research Group, Data Warehousing Practice. Date: 03/10/08 Email: [email protected] Abstract: Do you need an OLAP
Course 10774A: Querying Microsoft SQL Server 2012
Course 10774A: Querying Microsoft SQL Server 2012 About this Course This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft
Database Design Patterns. Winter 2006-2007 Lecture 24
Database Design Patterns Winter 2006-2007 Lecture 24 Trees and Hierarchies Many schemas need to represent trees or hierarchies of some sort Common way of representing trees: An adjacency list model Each
Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Published: May 25, 2012 Language(s): English Audience(s): IT Professionals
Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Published: May 25, 2012 Language(s): English Audience(s): IT Professionals Overview About this Course Level: 200 Technology: Microsoft SQL
OLAP Systems and Multidimensional Queries II
OLAP Systems and Multidimensional Queries II Krzysztof Dembczyński Intelligent Decision Support Systems Laboratory (IDSS) Poznań University of Technology, Poland Software Development Technologies Master
Analytics with Excel and ARQUERY for Oracle OLAP
Analytics with Excel and ARQUERY for Oracle OLAP Data analytics gives you a powerful advantage in the business industry. Companies use expensive and complex Business Intelligence tools to analyze their
Chapter 3, Data Warehouse and OLAP Operations
CSI 4352, Introduction to Data Mining Chapter 3, Data Warehouse and OLAP Operations Young-Rae Cho Associate Professor Department of Computer Science Baylor University CSI 4352, Introduction to Data Mining
Unit -3. Learning Objective. Demand for Online analytical processing Major features and functions OLAP models and implementation considerations
Unit -3 Learning Objective Demand for Online analytical processing Major features and functions OLAP models and implementation considerations Demand of On Line Analytical Processing Need for multidimensional
Data warehousing in Oracle. SQL extensions for data warehouse analysis. Available OLAP functions. Physical aggregation example
Data warehousing in Oracle Materialized views and SQL extensions to analyze data in Oracle data warehouses SQL extensions for data warehouse analysis Available OLAP functions Computation windows window
OLAP and OLTP. AMIT KUMAR BINDAL Associate Professor M M U MULLANA
OLAP and OLTP AMIT KUMAR BINDAL Associate Professor Databases Databases are developed on the IDEA that DATA is one of the critical materials of the Information Age Information, which is created by data,
UNIT-3 OLAP in Data Warehouse
UNIT-3 OLAP in Data Warehouse Bharati Vidyapeeth s Institute of Computer Applications and Management, New Delhi-63, by Dr.Deepali Kamthania U2.1 OLAP Demand for Online analytical processing Major features
Delivering Business Intelligence With Microsoft SQL Server 2005 or 2008 HDT922 Five Days
or 2008 Five Days Prerequisites Students should have experience with any relational database management system as well as experience with data warehouses and star schemas. It would be helpful if students
Data Warehousing. Paper 133-25
Paper 133-25 The Power of Hybrid OLAP in a Multidimensional World Ann Weinberger, SAS Institute Inc., Cary, NC Matthias Ender, SAS Institute Inc., Cary, NC ABSTRACT Version 8 of the SAS System brings powerful
Querying Microsoft SQL Server 20461C; 5 days
Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Querying Microsoft SQL Server 20461C; 5 days Course Description This 5-day
Optimizing Your Data Warehouse Design for Superior Performance
Optimizing Your Data Warehouse Design for Superior Performance Lester Knutsen, President and Principal Database Consultant Advanced DataTools Corporation Session 2100A The Problem The database is too complex
Distance Learning and Examining Systems
Lodz University of Technology Distance Learning and Examining Systems - Theory and Applications edited by Sławomir Wiak Konrad Szumigaj HUMAN CAPITAL - THE BEST INVESTMENT The project is part-financed
BUSINESS ANALYTICS AND DATA VISUALIZATION. ITM-761 Business Intelligence ดร. สล ล บ ญพราหมณ
1 BUSINESS ANALYTICS AND DATA VISUALIZATION ITM-761 Business Intelligence ดร. สล ล บ ญพราหมณ 2 การท าความด น น ยากและเห นผลช า แต ก จ าเป นต องท า เพราะหาไม ความช วซ งท าได ง ายจะเข ามาแทนท และจะพอกพ นข
BUILDING OLAP TOOLS OVER LARGE DATABASES
BUILDING OLAP TOOLS OVER LARGE DATABASES Rui Oliveira, Jorge Bernardino ISEC Instituto Superior de Engenharia de Coimbra, Polytechnic Institute of Coimbra Quinta da Nora, Rua Pedro Nunes, P-3030-199 Coimbra,
Querying Microsoft SQL Server Course M20461 5 Day(s) 30:00 Hours
Área de formação Plataforma e Tecnologias de Informação Querying Microsoft SQL Introduction This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL
PREFACE INTRODUCTION MULTI-DIMENSIONAL MODEL. Chris Claterbos, Vlamis Software Solutions, Inc. [email protected]
BUILDING CUBES AND ANALYZING DATA USING ORACLE OLAP 11G Chris Claterbos, Vlamis Software Solutions, Inc. [email protected] PREFACE As of this writing, Oracle Business Intelligence and Oracle OLAP are
8. Business Intelligence Reference Architectures and Patterns
8. Business Intelligence Reference Architectures and Patterns Winter Semester 2008 / 2009 Prof. Dr. Bernhard Humm Darmstadt University of Applied Sciences Department of Computer Science 1 Prof. Dr. Bernhard
70-467: Designing Business Intelligence Solutions with Microsoft SQL Server
70-467: Designing Business Intelligence Solutions with Microsoft SQL Server The following tables show where changes to exam 70-467 have been made to include updates that relate to SQL Server 2014 tasks.
Implementing Data Models and Reports with Microsoft SQL Server 2012 MOC 10778
Implementing Data Models and Reports with Microsoft SQL Server 2012 MOC 10778 Course Outline Module 1: Introduction to Business Intelligence and Data Modeling This module provides an introduction to Business
Data Warehouse Snowflake Design and Performance Considerations in Business Analytics
Journal of Advances in Information Technology Vol. 6, No. 4, November 2015 Data Warehouse Snowflake Design and Performance Considerations in Business Analytics Jiangping Wang and Janet L. Kourik Walker
New Approach of Computing Data Cubes in Data Warehousing
International Journal of Information & Computation Technology. ISSN 0974-2239 Volume 4, Number 14 (2014), pp. 1411-1417 International Research Publications House http://www. irphouse.com New Approach of
Building Cubes and Analyzing Data using Oracle OLAP 11g
Building Cubes and Analyzing Data using Oracle OLAP 11g Collaborate '08 Session 219 Chris Claterbos [email protected] Vlamis Software Solutions, Inc. 816-729-1034 http://www.vlamis.com Copyright 2007,
Multimedia Databases. Wolf-Tilo Balke Philipp Wille Institut für Informationssysteme Technische Universität Braunschweig http://www.ifis.cs.tu-bs.
Multimedia Databases Wolf-Tilo Balke Philipp Wille Institut für Informationssysteme Technische Universität Braunschweig http://www.ifis.cs.tu-bs.de 14 Previous Lecture 13 Indexes for Multimedia Data 13.1
LearnFromGuru Polish your knowledge
SQL SERVER 2008 R2 /2012 (TSQL/SSIS/ SSRS/ SSAS BI Developer TRAINING) Module: I T-SQL Programming and Database Design An Overview of SQL Server 2008 R2 / 2012 Available Features and Tools New Capabilities
MOC 20461 QUERYING MICROSOFT SQL SERVER
ONE STEP AHEAD. MOC 20461 QUERYING MICROSOFT SQL SERVER Length: 5 days Level: 300 Technology: Microsoft SQL Server Delivery Method: Instructor-led (classroom) COURSE OUTLINE Module 1: Introduction to Microsoft
SQL Server 2012 Business Intelligence Boot Camp
SQL Server 2012 Business Intelligence Boot Camp Length: 5 Days Technology: Microsoft SQL Server 2012 Delivery Method: Instructor-led (classroom) About this Course Data warehousing is a solution organizations
Data Warehousing. Wolf-Tilo Balke Silviu Homoceanu Institut für Informationssysteme Technische Universität Braunschweig http://www.ifis.cs.tu-bs.
Data Warehousing & Mining Techniques Wolf-Tilo Balke Silviu Homoceanu Institut für Informationssysteme Technische Universität Braunschweig http://www.ifis.cs.tu-bs.de 2. Architecture 2. Architecture 2.1
