Viewing 8 posts - 1 through 9 (of 9 total)
so overall, is it ok with my schema?
I also wrote a query to insert huge amount of data from the relational schema into fact table.
insert into Fact_Table(DeptId, CrsCode, Id, SemesterId,...
July 31, 2013 at 3:32 am
Is it necessary to define the address as a hierarchy?
Also, do you mean these primary keys in those tables are redundant?
July 31, 2013 at 3:11 am
Hi, there are what I have done. can you check over for me if it's wrong?
//Create dimensional tables
create table [dbo].[Dim_Course](
[CrsCode] [char](8) not null,
[CrsName] [nvarchar](50) not null,
[Descr] [nvarchar](200)
Constraint [PK_Dim_Course] primary key...
July 30, 2013 at 6:11 pm
I am using developer edition. I remembered that I checked on every thing provided and I dont know which one I have missed.
July 30, 2013 at 5:22 pm
Oh, thank you for helping me.
July 30, 2013 at 2:06 am
that is what I am asking for. to create the database, can I use the normal way as relational database? and which table do I have to create first, dimensional...
July 30, 2013 at 1:51 am
you are great. honestly, this is one of my assignment, I just have to define a schema for the fact table, and the dimensional tables in SQL with the information...
July 30, 2013 at 1:25 am
that's right. I want to measure the number of students in class.
July 30, 2013 at 1:06 am
Viewing 8 posts - 1 through 9 (of 9 total)