Viewing 11 posts - 46 through 56 (of 56 total)
Looks like it will need to be one table at a time then eh? It looks like there is actually 600 or so tables 🙁
April 13, 2010 at 7:11 am
Hi Steve,
Thanks for the link. Where is the import wizard that you mention? I do not need to deal with updates, just inserts, so that sounds like a...
April 6, 2010 at 8:46 am
peter-757102 (2/10/2010)
CraigIW (2/10/2010)
nicholasw (2/10/2010)
Instead of:IF EXISTS(SELECT 1 FROM ......WHERE....)
Would the following be quicker still?
IF EXISTS(SELECT TOP 1 1 FROM ......WHERE....)
No, as the "top 1" is only done after the "select...
February 10, 2010 at 4:05 am
nicholasw (2/10/2010)
Instead of:IF EXISTS(SELECT 1 FROM ......WHERE....)
Would the following be quicker still?
IF EXISTS(SELECT TOP 1 1 FROM ......WHERE....)
No, as the "top 1" is only done after the "select 1 from".
February 10, 2010 at 1:56 am
Quite liked that one, though as surprised as you at the efficiency. Will give it a bash sometime.
June 4, 2007 at 4:05 am
Or you could just store it as a block of XML?
Nope, doesn't cut it for me yet. Nice idea, but I still don't see a point in it, and have...
May 25, 2007 at 2:34 am
Are you really sure about this? And is it only for SQL Server? Every hot fix I have ever installed for another product explicitly states 'this hotfix is deisgned to...
April 3, 2007 at 2:44 am
I agree with jc, the kb is about sql 2000 and I thought you were saying 2005 has the password log bug.
On Microsoft testing in general, it can be good...
March 13, 2007 at 3:28 am
My theory is that anything too hard-hitting will grow boring over time, so most of them need to be able to just flow over you, with a smattering of blood-stirrers.
Got...
February 9, 2007 at 3:19 am
Nice little technique.
Reminds me of when I realised the power of of using
(col = @arg OR Len(@arg) = 0)
for only using passed values in joins...
November 23, 2006 at 6:37 am
Viewing 11 posts - 46 through 56 (of 56 total)