Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Index Management

    ==========================================================

    Code posted is very inconsistent.

    Uppercase, lowercase, schema names missing.

    Prefixes are inconsistent - sometimes "Uf_", othertimes "fn_"

    select * is naughty unless you need the full result set...

    When using the "EXISTS"...

  • RE: Concatenating Rows

    SELECT STUFF((

    SELECT ', ' + name

    FROM dbo.FRUIT

    FOR XML PATH('')

    ), 1, 2, '');

Viewing 2 posts - 1 through 2 (of 2 total)