![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Hello, if I store a cube as ROLAP I see the aggregates in my database. If I store a cube as MOLAP I cannot see them. I think the data and the aggregates are stored in a new database. (in SQL Server?) But I don't see them. Who can help? Thanks in advance, Reiner |
#3
| |||
| |||
|
|
Hello, if I store a cube as ROLAP I see the aggregates in my database. If I store a cube as MOLAP I cannot see them. I think the data and the aggregates are stored in a new database. (in SQL Server?) But I don't see them. Who can help? Thanks in advance, Reiner |
#4
| |||
| |||
|
|
ROLAP would store the data and aggregations in relational structures in a relational database (Slower than MOLAP, Less Disk space needed) MOLAP would store the data and aggregations in multi dimensional structure generally under \Program Files\Microsoft Analysis Services\Data (Fastest, More disk space) HOLAP would store the data in a relational structure and aggregations in Multi dimensional structures (Faster than ROLAP, Lesser disk space than MOLAP) Hope this helps John "Reiner Wahnsiedler" <wahnsiedler (AT) t-online (DOT) de> wrote in message news:bh5hu2$gl7$03$1 (AT) news (DOT) t-online.com... Hello, if I store a cube as ROLAP I see the aggregates in my database. If I store a cube as MOLAP I cannot see them. I think the data and the aggregates are stored in a new database. (in SQL Server?) But I don't see them. Who can help? Thanks in advance, Reiner |
#5
| |||
| |||
|
|
"Dave Wickert [MSFT]" <dwickert (AT) online (DOT) microsoft.com> wrote in message news:uw8agJqYDHA.388 (AT) TK2MSFTNGP10 (DOT) phx.gbl... Yes MOLAP does make a copy of the data so it uses more disk space that ROLAP, but it is much smaller than you think. 1) only the measure data actually used within the fact table is copied, typically numeric data. If you have other fields in the table, we don't copy them. 2) we used very specialized data structures that are bit-encoded, e.g. dimension members and the ordinal address. 3) within the data, we combine what we call 'duplicate rows'. this means that two rows in the fact table that have exactly the same lowest coordinates, e.g. if you are recording point-of-sale data, by customer, by store, by product, by day -- and if the same customer buys the same product in the same day at the same store, then its rows in the RDBMS fact table are combined into a single 'fact' in the MOLAP structures. Depending on the application and its dimensionality, this can have a HUGE impact on reducing the data. Our typical experience is that the same data in your RDBMS, is 1/4 to 1/6 smaller in MOLAP, e.g. if you have 600GB then AS database is about 100-200GB. With the performance benefits of MOLAP, we strongly recommend it as the 'storage-mechanism-of-choice' for most applications. Only consider ROLAP and HOLAP if you have a very unique application. I would have thought that, overall, MOLAP is likely to use *less* storage than ROLAP. That's because the aggregates are stored so much more efficiently in Analysis Services that it's likely to more than compensate for duplicating the base data. Typically, aggregates are larger than the base data in larger OLAP apps, and storing them efficiently is very important. Therefore, as you say, MOLAP should be the choice in almost all cases unless requiring real-time OLAP or extremely large dimensions in the 32-bit version. |
#6
| |||
| |||
|
#7
| |||
| |||
|
|
Hi Dave, I have a question about AS storage optimization feature #3 that you have described below. Does this imply that it is (practically speaking) futile/misguided to try and reduce AS cube storage by first building a summarized fact table from detail records, using something like a SQL grouping? This has been the stock-in-trade for handling data explosion, that erstwhile Essbase cube designers tend to transfer to AS. But it sounds like the OLAP Server will do much the same grouping for you, from the detail records? - Deepak *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded for it! |
#8
| |||
| |||
|
![]() |
| Thread Tools | |
| Display Modes | |
| |