Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
320 views

How to create history fact table?

I have some entities in my Data Warehouse: Person - with attributes personId, dateFrom, dateTo, and others those can be changed, e.g. last name, birth date and so on - slowly changing dimension ...
4
votes
3answers
604 views

Fact table with multiple facts

I have a dimension (SiteItem) has two important facts: perUserClicks perBrowserClicks however, within this dimension, I have groups of values based on an attribute column (let's call the groups ...
3
votes
5answers
819 views

PostgreSQL: Loading data into Star Schema efficiently

Imagine a table with the following structure on PostgreSQL 9.0: create table raw_fact_table (text varchar(1000)); For the sake of simplification I only mention one text column, in reality it has a ...
2
votes
2answers
345 views

Design of a data warehouse with more than one fact tables

I'm new to data warehousing. First, I wan't to precise than my copy of The Datawarehouse Toolkit is on it's way to my mailbox (snail mail :P). But I'm already studying all this stuff with what I find ...
1
vote
2answers
55 views

Warehouse: Store (and count) non-fact records?

How to store records that don't contain any fact? For example, let's say that a shop wants to count how many people have entered inside a store (and that they take info on every person that goes ...
1
vote
2answers
123 views

Best query for getting success/failure ratio from warehouse fact table

I'm trying to fine tune a query and would like some feedback. I have a job_fact warehouse table with an unit of measure for the job's final event (final_event_type). I'm trying to run a query on the ...
1
vote
2answers
568 views

Name Value pairs and fact tables

I'm working on a star schema for analysis of posted form data. The site that the form data will be posted to is actually external to the site hosting the form, so only the data in the form will be ...
0
votes
1answer
90 views

Analysis Services OLAP - Dimension Usage Relationship Type

I was hoping someone could explain the appropriate use of the 'FACT Relationship Type' under the Dimension Usage tab. Is it simply to create a dimension out of your fact table to access attribute on ...
0
votes
2answers
59 views

Row Inserted and Updated Time in Fact Table

I see there is an importance in having a row inserted and a row last updated fields in a fact table. But I could not find any standard data warehouse or a reference which says that this is a good ...
0
votes
2answers
154 views

Design logical model of Datawarehouse, Fact Tables and Dimensions Table

Hi i'm newbie in Datawarehousing,For homework ask me realize the logical design, physical and implementation.How would you model this in a Data Warehouse: i wish design the Data Warehouse which give ...
0
votes
3answers
403 views

SQL Server Insert Query on Fact Table

Okay, so I have this problem with my Fact Table. I need it to automatically be filled when a new data is entered on all the other tables in the database which has a foreign key on my Fact Table. In my ...
0
votes
2answers
461 views

Loading Fact Table + Lookup / UnionAll for SK lookups

I got to populate FactTable with 12 lookups to dimension table to get SK's, of which 6 are to different Dim Tables and rest 6 are lookup to same DimTable (type II) doing lookup to same natural key. ...
0
votes
1answer
374 views

ssas cube: How is the data being pulled?

If there is single partition for a measure group, aggregation designed 0%, partition table being used as an empty table (a template), how does the cube browser still show data for the measure in that ...
0
votes
1answer
352 views

cube partitions: is the fact table in the DSV designer just one of the cube partitions?

There are 16 partitions for a fact table. All 16 of them have the same structure and have the same aggregation scheme. 15 of them contains data and while the 16th contains no data. So, is the fact ...
0
votes
2answers
353 views

what if a fact table/view is a template(meant to contain only table structure but no data)?

I noticed that the fact tables used in a cube were actually views. Infact they were the templates of the fact tables (i noticed it in the script that "where 1=2" was used for the fact-views). So, if ...
0
votes
2answers
2k views

Reporting Queries: Best Way to Join Multiple Fact Tables?

I'm working on a reporting system that allows the user to arbitrarily query a set of fact tables, constraining on multiple dimension tables for each fact table. I've written a query-builder class that ...