08 September 2006

I call for a vote of no confidence... Running the statement select count(*) from BagLocations returned the value 19 014 584. Then I started the following query: insert into BagLocations_JuganTemp select * from BagLocations Then, while that was running (it ultimately took 6:33), I ran select count(*) from BagLocations which returned about 3 000 000. Then, once the long-running query completed, I ran select count(*) from BagLocations which returned 19 014 584 again, as did select count(*) from BagLocations_JuganTemp. Ju-ju bad. Verry ba...

Posted on Friday, September 08, 2006 by Unknown

No comments

27 January 2006

Eugene's response to this post is one of the most amusing refutations I have ever seen on the net. I won't steal its thunder by quoting, just give it a read if you have 30 seconds to spa...

Posted on Friday, January 27, 2006 by Unknown

No comments

Functions and procedures in MS SQL 2000 don't play particularly well together. That's not really a problem, seeing as they both solve the same problem: running a sequence of operations. But (and this is a particularly large but) functions offer only a subset of the range of operations available — most notably, they can't alter data in tables or create temporary tables. So why would anyone use a function? They're particularly useful as they can return values. Unlike stored procedures which return an error-code and can pack output variables...

Posted on Friday, January 27, 2006 by Unknown

No comments

23 January 2006

Tentatively the mind enters another expression spa...

Posted on Monday, January 23, 2006 by Unknown

No comments