Viewing 15 posts - 106 through 120 (of 221 total)
It's not the country from the time zone, it's simply an 'address' table if you like - which will have country, and if applicable state. From this I'd simply like...
December 14, 2011 at 6:02 am
I guess the point is I was wondering if there was a better approach than looking up every country and every state and compiling an offset table and then using...
December 14, 2011 at 5:48 am
I think to do that I'd need to be evaluating the same condition though rather than a different field in each case. At any rate I created a public function...
November 28, 2011 at 1:47 am
Thanks Jack, I've played around with that a little bit, and experimented and it seems something like this:
=Switch(Abs(Fields!Test.Value) = 0.00, “White”,
Abs(Fields!Test.Value) <= 0.03, “Red”)
Would do it, so basically your first...
November 23, 2011 at 8:40 am
I'm just looking through your code now and trying to suss it out, many thanks for the posting.
The point in having ID in the test data (although perhaps it was...
November 15, 2011 at 7:56 am
My PC is acting as 'the server' in this situation and all of the databases are on my PC.
Via Management studio I also connect to an external SQL server...
October 19, 2011 at 8:50 am
Na, both are 2008, I installed Express about 4-5 months ago perhaps.
I right clicked on the database server (my local PC name) then properties. It said Product was MS...
October 19, 2011 at 8:35 am
To be honest in the first instance I was making sure that Developer edition would actually do what I wanted, that was the aim of the post really!
It sounds like...
October 12, 2011 at 10:13 am
Perhaps that should be clarified, we have an 'official' audit process where by we could track down the changes made to some specific entities and see a massive list of...
October 12, 2011 at 9:55 am
They'd never be used for disaster recovery, we have more up to date daily snapshots stored both on the live SQL server, on a local server here as .bak files...
October 12, 2011 at 9:31 am
Typically three uses:
1. To see how the data has changed - i.e. I might look and see table A has X rows on our live DB and Y rows on...
October 12, 2011 at 8:36 am
I wasn't aware of the snapshot side of things but I'll give it a look as I said.
As regarding the nolock situation, I'm aware it has pitfalls and I did...
September 8, 2011 at 9:20 am
Thanks for your ideas here.
I can see occasions where nolock would provide information that's incorrect, however, in our situation they would be rare and they'd be far more desirable...
September 8, 2011 at 8:55 am
Thanks, that's very helpful, I've located that value in that table and I'll discuss the options with a colleague to see what we think might be a good value here.
September 8, 2011 at 8:39 am
I'd never thought of that Daniel, that seems to do the trick perfectly, combined with a CountDistinct and I'm sorted!
Thanks!
August 24, 2011 at 2:45 am
Viewing 15 posts - 106 through 120 (of 221 total)