Forum Replies Created

Viewing 15 posts - 241 through 255 (of 378 total)

  • RE: SQL Server 2005 Paging – The Holy Grail

    Just to throw in my 2c, I try to stay away from techniques that do not work reasonably efficient or completely break down in other ways when the query to...

  • RE: Optimising Server-Side Paging - Part I

    I scanned the article quicly and it is well presented.

    But I do have to dive into this particular one as I feel something odd is happening. The optimized statement is...

  • RE: Understanding and Using APPLY (Part 2)

    Excellent and with enough extra material to make it interesting for those already familiar with apply!

  • RE: Continuing Education

    IT requires a certain intellect and personality types at the same time. Miss out on one of these and no way in hell are you going excel at it. Consequently...

  • RE: Comparing Table Variables with Temporary Tables

    Paul White NZ (4/9/2010)


    peter-757102 (4/9/2010)


    Strange, indeed column defaults and primary keys seem not be properly mapped transparently when applied to temp tables.

    Constraints are always schema-scoped objects - see sys.objects.

    This is...

  • RE: Comparing Table Variables with Temporary Tables

    Strange, indeed column defaults and primary keys seem not be properly mapped transparently when applied to temp tables.

    This can be seen as either a design flaw or an implementation bug...

  • RE: Comparing Table Variables with Temporary Tables

    Cliff Jones (4/9/2010)


    peter-757102 (4/9/2010)


    Cliff Jones (4/9/2010)


    Also explicit naming of indexes and such on a temporary table will come around to bite you, glad you covered that. Very nice job...

  • RE: Comparing Table Variables with Temporary Tables

    Cliff Jones (4/9/2010)


    Also explicit naming of indexes and such on a temporary table will come around to bite you, glad you covered that. Very nice job on this article.

    I...

  • RE: ORM Mapping

    akl (3/31/2010)


    The use or ORM for object/relation mapping should be called Object Data Mapping since the objects know nothing of relations to any other object. Data elements in objects are...

  • RE: ORM Mapping

    The first ORM I worked with was from the early 90s. It was a non public implementation, and I was unaware of any public ones at the time (the internet...

  • RE: Solving the "Running Total" & "Ordinal Rank" Problems (Rewritten)

    Man, am I happy to not work in theory, but in the material world (reallity, or at least my experience of it). We can dream up a lot of wonderful...

  • RE: Time Bomb Coding

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

  • RE: Time Bomb Coding

    Outstanding article...clear in meaning, no clutter or distractions, straight to the point.

    It is also enlightening to see some of the beginner mistakes I made so many years ago when I...

  • RE: Linking to the Previous Row

    Look at the recursive part as just as another expression that is transplanted everywhere it is being used. Just as would be the case if the CTE would be located...

Viewing 15 posts - 241 through 255 (of 378 total)