Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
hardikp
Starting Member
1 Post |
Posted - 2009-08-03 : 05:47:51
|
I have created three dimension and one fact table. Schema of those tables are as below:Dimension Table1: tblEmployeeField Name DataTypeEmployeeID Int (PK, Identity)EmployeeName Varchar(100)Dimension Table2: tblDesignationField Name DataTypeDesigID Int (PK, Identity)DesigName Varchar(100)Dimension Table3: tblBranchField Name DataTypeBranchID Int (PK, Identity)BranchName Varchar(100)Fact Table: tblProjectField Name DataTypeProjectID Int (PK, Identity)EmployeeID IntBranchID IntDesigID IntHoursWorked IntNow I want to calculate median on field "HoursWorked" from the Fact table. Please help me to do that. Please provide steps to resolve the problem.Regards,Hardik Patel |
|
|
|
|