Viewing 15 posts - 391 through 405 (of 497 total)
Ah yes, a much more elegant and easier to read solution!
Many thanks Dan.
December 21, 2009 at 5:30 am
Ok, I've managed to achieve what I wanted. It doesn't look very elegant, but I can't see another way...
SELECT UserKey, SUBSTRING(Postcode, 1, 2) AS PostCodeMnemonic
FROM ...
December 21, 2009 at 3:04 am
Thanks Dan, that's what I decided to do in the end. I have got another question about Named Queries and Named Calculations though:
Is it possible to use more complex logic...
December 21, 2009 at 1:55 am
Hello,
You've probably long since found the answer to your question given that your post is almost 1 year old, but it's because the ROW_NUMBER() functions is non-deterministic unless you provide...
December 10, 2009 at 3:55 am
An excellent article! It's hard to find examples such as this for Data Mining; I guess not that many people are into it.
Regards
Lempster
December 3, 2009 at 2:13 am
The difference between a well-tuned query and a poor one is enormous, both in the elapsed time and the CPU usage. It is common to find Improvements of a...
November 26, 2009 at 9:19 am
Got it...I needed to include the TimeKey range in the join clause in the @Working table variable as well as the @RemoveDups table variable like so:
INSERT INTO @Working (ExtranetLinkKey, DateKey,...
November 16, 2009 at 4:05 am
GSquared (11/11/2009)
November 11, 2009 at 2:04 pm
Thanks GSquared,
Nice to know I was in the right area. 😉
I must admit I am not very good at using some of the (now not so) new T-SQL functions, so...
November 11, 2009 at 8:15 am
Hi Uli
From BOL:
The cursor is implicitly deallocated when the batch, stored procedure, or trigger terminates, unless the cursor was passed back in an OUTPUT parameter. If it is passed back...
November 11, 2009 at 8:05 am
pulipatisireesha (11/10/2009)
I'm new to ETL. Can you give me steps how to proceed?
Phew!! That's a rather large topic and impossible to cover in a forum post. I suggest you get...
November 11, 2009 at 7:28 am
Presumably your Fact table is linked to several dimension tables? You will need to change your ETL process to populate the Fact table with data from the new dimension, or...
November 10, 2009 at 11:24 am
This sounds like a homework question!
What do you mean by "add a dimension with 5 rows"? Do you mean 5 columns? You will need create a relationship between your Fact...
November 10, 2009 at 9:06 am
Ben Sullins-437405 (10/30/2009)
With the RB2.0 you do not need report models any longer. Create your reports using queries directly from your cube similar to BIDS.
True, but it is possible to...
October 30, 2009 at 11:23 am
Thanks for your reply Ben. I am using 2005 SP2 CU? (build number is 3077). I've downloaded Report Builder 2.0 and launched it, but it can't connect to the specified...
October 30, 2009 at 7:38 am
Viewing 15 posts - 391 through 405 (of 497 total)