Forum Replies Created

Viewing 11 posts - 46 through 56 (of 56 total)

  • RE: Data warehouse from sybase - howto?

    Looks like it will need to be one table at a time then eh? It looks like there is actually 600 or so tables 🙁

  • RE: Data warehouse from sybase - howto?

    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...

  • RE: Time Bomb Coding

    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...

  • RE: Time Bomb Coding

    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".

  • RE: Everybody Reports to Somebody

    Quite liked that one, though as surprised as you at the efficiency. Will give it a bash sometime.

  • RE: User Defined Data Types in SQL Server 2005

    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...

  • RE: Hot Fixes and QFEs

    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...

  • RE: Bad Programming

    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...

  • RE: Maximum Row Size in SQL Server 2005

    Good writeup!

  • RE: Easy Listening

    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...

  • RE: Our Very Own SQL Server Data Compression

    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...

Viewing 11 posts - 46 through 56 (of 56 total)