Viewing 15 posts - 811 through 825 (of 1,193 total)
Yep, caught out by the 0 too.
Oh well, at least I'm good company!
August 23, 2012 at 3:00 am
You could always write some standard select statements for regularly-accessed data, to 'prime' the cache after deployment.
Even execute some of those procs if they don't do any DML.
August 21, 2012 at 10:24 am
So parameter abc is a multi-valued parameter? Try these, which test the first selected value of abc:
=iif(Parameters!abc.Value(0) =1,False, True)
=iif(Parameters!abc.Value(0) =2, False, True)
I don't know if there's any guarantee on the...
August 21, 2012 at 9:44 am
Ha, they look fairly similar!
Your linked method does have the advantage of taking care of other localisation issues like date and number formats; which mine doesn't.
August 21, 2012 at 5:02 am
Ok, how about this:
Table containing location ID's (en-GB, es, es-MX etc) as PK, columns Header1, Header2.. HeaderN.., Label1 etc (obviously with better names - more on design in a bit)
and...
August 21, 2012 at 4:47 am
Hi Anthony,
Will this be for a set limited number of languages, or does it need to handle pretty much any language?
Cheers
August 21, 2012 at 4:13 am
Hi, remove the quotes from your expressions, so:
=iif(Parameters!abc.Value =1,False, True)
=iif(Parameters!abc.Value =2, False, True)
Does that work?
Thanks
August 21, 2012 at 4:11 am
Indianrock (8/17/2012)
That makes it sound like DEV database IO would be affecting prod database IO
To a point, yes. But I'd be impressed if you were hitting the dev server hard...
August 20, 2012 at 5:51 am
Toreador (8/20/2012)
Currently 15% of people think that Count(columnname) on a 7-row table will return a value of 10 😉
In fairness to them, it is Monday morning... 😀
August 20, 2012 at 3:33 am
$10,000? Crikey! I'll do it for $4k 😀
Indianrock (8/17/2012)
August 17, 2012 at 11:03 am
Guessed & got it right - although I only answered so I could see the actual answer!
Like the question for making me think about it, the right/wrong was irrelevant...
August 17, 2012 at 4:01 am
No problem 🙂
August 16, 2012 at 9:21 am
Indianrock (8/16/2012)
What exactly did you mean by"Having said all that, I'll echo Jeffrey - SnapManager's great for on-site backup/restore. Off-site DR, not so much. ". ?
Just that, as...
August 16, 2012 at 9:01 am
This bit: ON CONVERT(VARCHAR(10), DateList.CreateDateTime, 112) = Temp.ShipWeek
ShipWeek generated from DATEADD(WEEK, DATEDIFF(WEEK, '19000101',CreatedDateTime),'19000101') will always generate the same dates.
DATEADD(WEEK, 0, CONVERT(DATETIME, @CurrentDate)) from your CTE will generate dates 7 days...
August 16, 2012 at 7:24 am
Viewing 15 posts - 811 through 825 (of 1,193 total)