Login
Latest Code Ticker for SQL.
Daily Code Email
|
|
|
| | Terms of Agreement:
By using this article, you agree to the following terms...
1) You may use
this article in your own programs (and may compile it into a program and distribute it in compiled format for langauges that allow it) freely and with no charge.
2) You MAY NOT redistribute this article (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.
3) You may link to this article from another website, but ONLY if it is not wrapped in a frame.
4) You will abide by any additional copyright restrictions which the author may have placed in the article or article's description. | Q. When should I consider implementing OLAP Services?
A. Basically, any business process that requires you t analyze (roll up, drill down, and so on) transactional data across a variety of categories is an excellent application of OLAP technology. Loosely speaking, any time you have created an Excel pivot table, you have started to explore the OLAP technology.
Q. What is the difference between relational and multidimensional databases?
A. The primary difference between a relational database and a multidimensional database is semantics. The true differentiation is the manner in which data is represented, and not the underlying technology. Relational databases tend to represent data in a flat, two dimensional manner, whereas multidimensional databases have the capability to reprsent data across many dimensions.
It is important to note that the underlying technology between the two kinds of databases does not have to be different. It is possible to create a multidimensional database using SQL Server 7.0. This is a complex task, requiring sophisticated database schemas, such as star schemas, but it can be done. Likewise, it would be possible to create a standard two-dimensional relational database using OLAP Services by creating cubes with only two dimensions.
Q. How do I translate my transactional data into an effective multidimensional database?
A. In OLAP Services, the multidimensional database is based in a data source; typically this data source is the database that holds your transactional data. In order to create the multidimensional database, you must translate your data. Translating this relational data into an effective multidimensional database requires careful thought and a true understanding of the base data and how your users need to analyze data.
Basically, the translation involves choosing the appropriate tables and columns within those tables to represent the dimensions and measures of your cube. As is the case with most thing, this is often easier said than done. The trick to effectively translating your data is to truly understand the underlying data. In most cases, it is necessary to have many people involved in designing the cubes that make up the multidimensional database.
Q. Can I analyze data that is calculated from my source data such as net profit?
A. Yes, OLAP Services supports calculated members. A calculated member is essentially a measure that does not have a value explicitly stored in the underlying fact table but whose value can be derived from other values that are explicitly stored in the fact table. Once you have defined a calculated member, it appears as any other measure within the cube and its source is invisible to the user.
This FAQ is taken from "Microsoft SQL Server 7.0 DBA Survival Guide" by SAMS.
| | Other 3 submission(s) by this author
| | | Report Bad Submission | | | Your Vote! |
See Voting Log | | Other User Comments | 12/6/2001 9:46:34 PM:Marge Lewek Is it recommended to install OLAP
Services on it's own server??
If I
use my OLTP as the source of my
analysis, where does the transformed
database get created? and how can I
calculate how much space the
transformed database will use?
| | Add Your Feedback! | Note:Not only will your feedback be posted, but an email will be sent to the code's author in your name.
NOTICE: The author of this article has been kind enough to share it with you. If you have a criticism, please state it politely or it will be deleted.
For feedback not related to this particular article, please click here. | | |
|