Viewing 15 posts - 8,761 through 8,775 (of 9,725 total)
I've actually been thinking about that, but it would involve adding at least 12 more tables to my DB.
I did find an interesting article on "Junk Dimensions" in SQL Server...
July 17, 2008 at 12:54 pm
I used to think that, but given how Indexes are set up (depending on the Clustered or Non-Clustered) and whether or not you have Triggers / Defaults / Etc... I...
July 17, 2008 at 5:05 am
Ryan,
If you read his first post, he doesn't want to SUM the QuantityShipped. And I was only addressing the math problem, not the GROUP BY (although I should have...
July 17, 2008 at 5:01 am
Your aggregate is in the wrong place.
Your code = (SUM([Unit Price] * QuantityShipped) / QuantityShipped) AS [A.S.P]
SUM should be on the outside of the parens, not inside the...
July 17, 2008 at 4:33 am
Tomm,
You are correct. This is exactly what my BUs and Boss want to accomplish with this. Historical auditing as well as reporting.
I'd love to see this paper of...
July 16, 2008 at 6:45 am
Hmm. That's a point I hadn't taken into consideration. I'm pretty new to all this DW / Cube stuff and am following the requirements laid out by the...
July 15, 2008 at 4:06 am
Actually re-assessing is what I'm in the middle of.
Problem is Datawarehouse design where I have to account for changing Entity records (different types of people where each "type" is in...
July 14, 2008 at 11:30 am
But if I misunderstood your question and you're just trying to run it on all DBs in Dev (for instance) and then later move it to test...
You have a couple...
July 14, 2008 at 11:14 am
First of all, you shouldn't be creating the stored procedure in all three environments at the same time. It violates the SDLC (Software Development Life Cycle) process and could...
July 14, 2008 at 11:07 am
Michael,
Your last post actually made sense. Until of course, I created another data flow task.
Of course, I can't be sure until I've finished running this step, but it appears...
July 10, 2008 at 11:23 am
I'd rather not have to add yet another SQL Login to my databases. And I don't want to give permissions to the current SQL Logins to this particular database....
July 3, 2008 at 8:08 am
Michael,
Does SQL Server support the parameter names consistantly?
Also, once I do this Update, I'm pretty much done with this data flow. I don't need to add a destination afterwards,...
July 3, 2008 at 6:39 am
Michael,
Actually, you can manually turn on the IsSorted property with the "Table or View" option. In fact, it's required in order to use a MERGE JOIN component right after...
July 2, 2008 at 10:50 am
Hmm. Interestingly enough, the solution seems to be to change the Source from "Table or View" to "SQL Command" and to use an actual SELECT statement with defined column...
July 1, 2008 at 8:43 am
I actually had my data flow designed in a top down, but I couldn't get it to all fit on one screen shot, so I moved everything left to right...
June 27, 2008 at 4:30 am
Viewing 15 posts - 8,761 through 8,775 (of 9,725 total)