Viewing 15 posts - 871 through 885 (of 1,353 total)
I'd be curious to see how your problem would be tackled by Trigger Champions
The first requirement would be to know how it should be handled. Would the add be...
August 20, 2012 at 8:06 am
In my opinion these kinds of low-level integrity issues are best handled by triggers similar to the ones above. The comment about some organizations not liking triggers could be...
August 20, 2012 at 6:43 am
This sounds a really simplistic question, but based on what you've said, it should just be:
update xys set submitdate=NULL where id in ('1','2'.........'100')
I feel I must be missing something as...
August 19, 2012 at 7:21 am
Even well known data such as postal codes can change and easily become stale quickly. How many developers are willing to write import routines to update this data for something...
August 9, 2012 at 7:34 am
Another question: how important is it to use a surrogate or artificial key for the dimension tables? Could I get away with just using the FK from the source system...
June 1, 2012 at 8:17 am
Forgot to make clear that the dates are not stored in the fact table as dates, but as pointers to your calendar table. You can join the same table...
May 31, 2012 at 2:32 pm
Sorry, but I'm not seeing how that's the grain. As best as I understand it, there is something that goes through a certain lifecycle that includes an open date, some...
May 31, 2012 at 2:31 pm
What exactly is the grain of the fact table? Once you know that, you can decide how to solve this issue. It's not clear to me what you...
May 31, 2012 at 6:55 am
There might be, but I don't know why you don't want to use the redirection. If marking them as an error is important, then redirect the error rows into...
May 31, 2012 at 6:33 am
Lots of my reasons have already been said, but I would add that for those of us who are the sole SQL Server person in the company, it's also a...
May 31, 2012 at 6:26 am
Lots of good ideas here already, but let me add:
I don't use the YYYYMMDD system for my keys, but integers instead. It's very Ralph Kimball, and it's disputed because...
May 29, 2012 at 7:01 am
Your own preference is key here. There are lots of good DBAs who aren't good BI developers. I don't know that it's so much the other way around....
May 10, 2012 at 7:28 am
I have 1,442 rows in my time dimension and use a smallint as the key. It works very fast, even against my largest dimension, which has over 2 million...
May 10, 2012 at 7:26 am
My experience is that adding columns or deleting columns that aren't otherwise used has no effect on the download process. When you open the SSIS package in design mode,...
May 7, 2012 at 12:59 pm
Try clicking Test Cube Security on the Cell Security tab. I found that necessary even though I wasn't using cell security. It's not at all an intuitive step...
April 23, 2012 at 4:57 am
Viewing 15 posts - 871 through 885 (of 1,353 total)