Tagged Questions
3
votes
5answers
882 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 ...
1
vote
2answers
570 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 ...