Viewing 15 posts - 1 through 15 (of 27 total)
I use a Days dimension table. Day is a dimension in the fact table. The Days table (containing 10yrs, or whatever you need) can have whatever grouping...
November 29, 2007 at 6:15 am
net (11/23/2007)
fact1FKdimKey1
FKdimKey2
FKdimkey3
FKdimKey5
FKdimKey6
Fact1Col1
Fact1Col2
Fact1Col3
Fact1Col4
fact 2
FKdimkey1
FKdimKey2
FKdimKey4
Fact1Col1
Fact1Col2
Fact1Col3
FKdimKey1 and FKdimKey2 are in common the other ones link to different dimensions
Are Fact1Col1, Fact1Col2,Fact1Col3 the same measure?
Are they additive between the two tables...
November 29, 2007 at 6:07 am
One way to do this, you can use DATEDIFF to determine age. Then COUNT using a BETWEEN statement in your WHERE clause to get your result.
What do you have so...
November 13, 2006 at 6:04 am
Loaner,
The easy answer is "it depends". We are a small company (been around 7 years) and are going through a growth spurt. I have an idea...
November 9, 2006 at 9:59 am
This is one of the comments I agreed with in the WTF thread... I design/support large Data Warehoues and follow Ralph Kimball's Dimensional Model. I use date tables...
June 15, 2006 at 6:28 am
The only thing I can think of to check is the character you use in the DROP TABLE syntax.
If I use a single quote ' I get your error:
...
May 26, 2006 at 5:45 am
Dunno, I always start with a new workbook.
March 9, 2006 at 8:10 am
Something like :
SELECT DATENAME(month, dateadd(month,-12,getdate()))+' '+DATENAME(year, dateadd(month,-12,getdate())) AS 'First Tab'
SELECT DATENAME(month, dateadd(month,-11,getdate()))+' '+DATENAME(year, dateadd(month,-11,getdate())) AS 'SecondTab'
can help you manufacture the months
Then use that in your DTS package where you create...
March 8, 2006 at 10:42 am
Go to the Options tab in the Transform Data Task Properties.
In the Data movement section change your Max Error count from zero (to anything higher, depending on how many errors...
February 7, 2006 at 9:08 am
A table can contain a maximum of 8,060 bytes per row. (SQL 2005 doesn't have this restriction, but performs poorly when the row is > 8060) It's related to...
December 24, 2005 at 7:53 am
Would somethink like this work?
declare @val nvarchar(30)
set @val = '5540'--The Value we're looking for
declare @len smallint
set @len = len(@val)-- The length of the value
while (@len >...
December 24, 2005 at 7:36 am
I regularly use DTS to load text files that are > 150MB and contain over 150k rows, but I've never come close to 900 columns! Do you think you...
December 24, 2005 at 6:37 am
I use neither float or decimal. I'm able to stick with smallmoney or money for my configuration when I need decimal precision and tiny/small/ int when I don't.
December 23, 2005 at 10:02 am
Though this doesn't directly answer your question. I do lots of writes to text files in my DTS packages, but I always use fso (FileSystemObject). Files are easily created or...
December 23, 2005 at 9:17 am
Viewing 15 posts - 1 through 15 (of 27 total)