Tagged Questions
Star schema is the most basic data warehousing database schema, consisting of one or more fact tables referencing any number of dimension tables.
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 ...
4
votes
3answers
2k views
Is Pentaho ETL and Data Analyzer good choice?
I was looking for ETL tool and on google found lot about Pentaho Kettle.
I also need a Data Analyzer to run on Star Schema so that business user can play around and generate any kind of report or ...
4
votes
2answers
2k views
How to design a star schema
I am confusing where should I start to design a star schema.
for example
I have tables in database as follows:
Branch(branchNo, bStreetAddress, bCity)
LoanManager(empNo, empName, phone, branchNo)
...
3
votes
1answer
215 views
Is a snowflake schema better than a star schema for data mining?
I know the basic difference between a star schema and a snowflake schema-a snowflake schema breaks down dimension tables into multiple tables in order to normalize them, a star schema has only one ...
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 ...
3
votes
4answers
347 views
Star-schema: Separate dimensions for clients and non-clients or shared dimension for attendants?
I'm new to modeling star schemas, fresh from reading the Data Warehouse Toolkit.
I have a business process that has clients and non-clients calling into conference calls with some of our employees.
...
3
votes
1answer
487 views
Star schema in SQLAlchemy
I have a star-schema architectured database that I want to represent in SQLAlchemy. Now I have the problem on how this can be done in the best possible way. Right now I have a lot of properties with ...
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 ...
3
votes
5answers
3k views
Temporary Table Usage in SQL Server
This is a bit of an open question but I would really like to hear people opinions.
I rarely make use of explicitly declared temporary tables (either table variables or regular #tmp tables) as I ...
2
votes
2answers
67 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
179 views
What are the types of dimension tables in star schema design?
When reading about star schema design I have seen that many people uses various names for different types of dimension tables.
Please list the names and a small description of each type. If any list ...
2
votes
1answer
84 views
Star schema modeling - many-to-many
I'm building a data warehouse based on NFL statistics for educational purposes as I learn this paradigm - I have the following modelling problem
Players can play for different teams different years ...
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 ...
2
votes
3answers
1k views
Star-schema naming conventions
Is it common practice in a star schema to prefix tables as a dimension or fact table? Is is also common practice to have column names prefixed with the table name?
In my normal OLTP databases, I ...
2
votes
4answers
321 views
Key DataType for a high volume SQL Server 2008?
I in the process of designing a database for high volume data and I was wondering what datatype to use for the primary keys?
There will be table partitioning and the database will ultimatley be ...
2
votes
2answers
168 views
Is there any benefit to including relationships in your star schema table design?
I'm designing the Fact and Dimension tables for a data warehouse currently using SQL Server, SSIS, and SSAS. Will I get any real benefit from programming the relationships between the dimensions and ...
1
vote
1answer
36 views
is it correct about dimension table and star schema?
is it correct dimensions of star schema also has foreign and primary key relationship ?Is it conceptually correct , please help as its confusion I am having in my Dateware implementation.
If yes then ...
1
vote
2answers
237 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
2answers
448 views
star schema for implementing near real time analytics with changing data
I implementing analytics for a medical software. The data to be processed is mainly appointment related. I'm planing to implement star schema for generating reports. I have a few doubts
My data can ...
1
vote
2answers
322 views
General understanding of star schema design
So, I think I understood what to put in dimensions, what in the fact table, and how to achieve this.
Now I got the problem, that I have this dimension 'product' and a dimension 'productProperties'. I ...
1
vote
1answer
64 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 ...
1
vote
2answers
266 views
star schema design - one column dimensions
I`m new to data warehousing, but I think my question can be relatively easy answered.
I built a star schema, with a dimension table 'product'. This table has a column 'PropertyName' and a column ...
1
vote
4answers
211 views
How do I avoid complex joins in star schema?
My fact table holds a user score in a course he took. Some of the details of the course, which I have to show on the report, comes from more then one table (in the actual OLTP db).
Do I create a none ...
1
vote
1answer
120 views
select all values from a dimension for which there are facts in all other dimensions
I've tried to simplify for the purposes of asking this question. Hopefully, this will be comprehensible.
Basically, I have a fact table with a time dimension, another dimension, and a hierarchical ...
1
vote
8answers
837 views
Reporting tool for OLAP, *not* OLTP!
I'm looking for a control that I can put on top of an already existing OLAP star schema to allow the user to define their own "queries" and generate reports. Right now I have some predefined reports ...
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
0answers
19 views
features of Dataware housing via SQL server [closed]
do sql server provide any tools/functions which help us in making star scheme ,aggregates or similar ? I am using winform application to give layout for dwh users and sql server 2008 for db
0
votes
1answer
65 views
Insert into Star Schema efficiently using JDBC
I have star schema model in which Server Table contains information about server name. Information Table contains information that I want for specific server. And Actual Data Table contains ...
0
votes
4answers
85 views
What is exactly a measure in star schema in data warehouse design?
Star schema consists of dimension and fact tables.
Fact tables contain foreign keys for each dimension and in addition to that, it contains "measures". What exactly comprises of this measure ?
Is it ...
0
votes
1answer
52 views
Star Schema Design Help
I'm stuck on how I would put together a star schema around my current web application (similar structure as stackoverflow). I have:
Surveys have many Questions
Questions have many Votes
Questions ...
0
votes
1answer
103 views
How to populate star schema database with data from CSV file using jasperETL?
I'm new to jasperETL and i have to populate star schema database with data from CSV file.
Does anyone know how to perform this task? Maybe there is some tutorial or book, where i can find this ...
0
votes
0answers
64 views
Star schema design consideration
I'm trying to design a simplified schema for an OLTP database with data originating from a Point-of-Sale application. The database has a table Transaction and a table TransactionEntry.
In the ...
0
votes
1answer
82 views
Do we have to use fact table for reports?
I am working on building a data mart for reporting purpose.
I am new to this field and looking for help.
I have a fact table and two dimension tables.
The fact table has only 3 fields, its primary ...
0
votes
1answer
53 views
How is data in dimensional tables and fact tables of a data warehouse star schema?
I am studying data warehousing star schema and attribute hierarchies and I am getting confused because the examples of the book do not provide sample data on which to confirm my understanding of ...
0
votes
2answers
800 views
Star schema [fact 1:n dimension]…how?
I am a newcomer to data warehouses and have what I hope is an easy question about building a star schema:
If I have a fact table where a fact record naturally has a one-to-many relationship with a ...
0
votes
2answers
786 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 ...