Viewing 15 posts - 106 through 120 (of 123 total)
Jonathan Mallia (10/22/2012)
I need help with building a Cube Calculation.
I have this MDX below that works OK. It shows the vehicles that are sold an and the profit made...
October 22, 2012 at 1:07 pm
Smash125 (10/19/2012)
My Dimension table contains
ContactID,EmailAddress,FirstName,LastName,MiddleName,Phone,Title
My Hierarchy
FullName - Showing Error in the header saying 'attribute relationship do not exist between one or more...
October 19, 2012 at 1:37 pm
CELKO (10/12/2012)
October 12, 2012 at 1:24 pm
Jeff Moden (10/11/2012)
October 12, 2012 at 1:20 pm
Sean Lange (10/11/2012)
select *,
Case
when StatusName IN ('A', 'B') then 1
when StatusName IN ('C', 'D', 'E') then 2
when StatusName = 'F' then 3
when StatusName = 'G' then 4
when StatusName...
October 11, 2012 at 4:39 pm
CREATE TABLE Status
(
StatusName Varchar(10)
)
CREATE TABLE Phase
(
PhaseName Varchar(10) NOT NULL
)
CREATE TABLE Subject_status
(
SubjectName Varchar(10) NOT NULL,
StatusName Varchar(10) NOT NULL,
Date [Date] NOT NULL
)
INSERT INTO Status VALUES ('A')
INSERT INTO Status VALUES ('B')
INSERT INTO Status...
October 11, 2012 at 2:32 pm
Sean Lange (10/11/2012)
Please help me with the sql code.
All of them are Varchars (Status and Phase even though they look like Integers).
Please don't ask me to change my Datamodel.. Thanks...
October 11, 2012 at 2:22 pm
Not actually homework.
I have tried this using a case statement, but when ever the status changes the Phase also keeps changing, so I am checking if there is a way...
October 11, 2012 at 2:20 pm
GilaMonster (9/21/2012)
That's default growth increments, as I said, you probably want larger growth increments.Growing a file manually - ALTER DATABASE ... ALTER FILE
Can you please elaborate more.. This is my...
September 21, 2012 at 4:10 pm
GilaMonster (9/21/2012)
Larger growth increments (fixed MB), grow TempDB manually, ensure there's enough space on the drive, tune the queries to use less TempDB.
Growth size is 8KB and 10% on the...
September 21, 2012 at 1:31 pm
vani_r14 (9/19/2012)
can you please clarify - if my understanding is correct -
You would like to group BC1, BC2, BC3, BC4, BC5 as one group
if that is the...
September 20, 2012 at 1:08 pm
Hi, I need to get status names as columns and their respective dates as rows. I know its pivoting, but asking you guys for more insight.
Thanks
September 11, 2012 at 12:01 pm
Jeff Moden (9/10/2012)
September 10, 2012 at 11:06 pm
Greg Snidow (9/6/2012)
Sean Lange (9/6/2012)
September 6, 2012 at 4:38 pm
Viewing 15 posts - 106 through 120 (of 123 total)