Tagged Questions

33
votes
7answers
11k views

Star-Schema Design

Is a Star-Schema design essential to a data warehouse? Or can you do data warehousing with another design pattern?
8
votes
8answers
354 views

How to efficiently utilize 10+ computers to import data

We have flat files (CSV) with >200,000,000 rows, which we import into a star schema with 23 dimension tables. The biggest dimension table has 3 million rows. At the moment we run the importing process ...
3
votes
5answers
658 views

Complex processing in Stored procedures Vs .net application

We are building a new application in .net 3.5 with SQL server database. The database is fairly large having around 60 tables with loads on data. The .net application have functionality to bring data ...
2
votes
2answers
68 views

Creating Data Warehouse

I am creating a data warehouse by using a star schema. I successfully build all the dimension tables, but I'm kind of stuck at the fact table. I am in a need to make a Sales table as Fact table. It ...
2
votes
3answers
104 views

Is there a name for this type of data structure?

Is there a name for a type of Star Schema in which there is a single Fact table which has a single column for value, and the type of value (the measure) is defined by a dimension? In other words, a ...
1
vote
2answers
238 views

Sample star schema dataset

I'm looking for some OLAP data preferably in star schema (or snowflake) for testing a new tool. I've already got the Foodmart database that Mondrian provides. Type of data is not important as long as ...
1
vote
1answer
65 views

Data Warehouse: Modelling Workload Allocations

We have a system that tracks the allocation of a unit of work, from receiving that unit of work till completing that unit of work. A unit of work has a number of attributes, it's source, it's type ...
0
votes
2answers
789 views

Insert into a star-schema

I've read a lot about star-schema's, about fact/deminsion tables, select statements to quickly report data, however the matter of data entry into a star-schema seems aloof to me. How does one ...