Viewing 15 posts - 211 through 225 (of 402 total)
Crabbies is a bit cheaper than Asda and you get a 12 pack case instead of the 8 pack case for a few quid extra
I think I see a trip...
May 31, 2012 at 2:46 am
May 31, 2012 at 2:06 am
I have to say I'm enjoying Crabbies alcoholic ginger beer at the moment
+10000 !! 😀
I'm quite fond of Banana Bread Beer - Sounds a bit unusual but it works!
Andy
May 31, 2012 at 2:01 am
Hi
You can do this using NOT EXISTS
DECLARE @TABLE AS TABLE
(Groups INT, Application VARCHAR (50), PK INT)
INSERT INTO @TABLE
(Groups, Application, PK)
SELECT 1970, 'blogs', 51284 UNION ALL
SELECT 1970, 'collaboration', 51285 UNION...
May 31, 2012 at 1:35 am
Hi
You will probably be better posting the DDL's rather than attachments as people may be unwilling to open them
Andy
May 30, 2012 at 4:30 am
As you are nesting views (which isn't a good thing IMO anyway) within your query in order to script the sub queries for you we would need to see the...
May 30, 2012 at 3:06 am
Not 100% what you mean, but if you mean can you order the sequence that the dataflow executes then yes.
In your dataflow task start with source 3 , then link...
May 30, 2012 at 2:26 am
Sure you'll nail it next time Anthony..
On the up side at least you've had some good news to offset the exam news! 🙂
Andy
May 30, 2012 at 2:14 am
Thats exactly what I suggested on the original topic http://www.sqlservercentral.com/Forums/Topic1306422-391-4.aspx as the OP wanted to factor in holidays.
Good places to start on a calendar table are these links
Thanks...
May 30, 2012 at 2:09 am
Hi looks like you are trying to work out your Six Sigma phase duration excluding weekends?
Have you considered using a calendar table for this it could save you quite a...
May 30, 2012 at 1:55 am
I had the same problem recently so did a bit of digging and it is a known issue
I haven't tried this yet but this Link may help.
Andy
May 29, 2012 at 3:27 am
How many records are there in total in your table?
The reason I ask is that you could SELECT the records you want to keep using a SELECT INTO statement to...
May 29, 2012 at 1:38 am
Don't get me wrong we do use views where appropriate I suppose I'm just a little more cautious these days (and maybe a little jaded ;-)) when it comes to...
May 28, 2012 at 8:53 am
// will this return the current 7 days (This week) or the next 7 days from the current date time?
The next 7 days from the current date, the SQL...
May 28, 2012 at 8:11 am
You could add ROW_NUMBER() in your query and process WHERE ROW_NUMBER() < 10000 , WHERE ROW_NUMBER() BETWEEN 10001 AND 20000 ect
Andy
May 28, 2012 at 8:03 am
Viewing 15 posts - 211 through 225 (of 402 total)