Forum Replies Created

Viewing 15 posts - 3,661 through 3,675 (of 6,486 total)

  • RE: Oracle LEAD function - Is there an equivalent function in SQL Server ??

    antonio.collins (4/14/2008)


    i agree. there seems to be more and more demand for ordered processing, but i'm sure codd and date would say that order should be irrelevant from a...

  • RE: Slow clustered index seek?

    Jeff Moden (1/22/2008)


    The PK Clustered Index you have might be good for something else, but it's no good for this query even though the execution plan say's you're using the...

  • RE: Subsitute of TO_CHAR in transact SQL???

    Jeff Moden (4/14/2008)


    Matt Miller (4/14/2008)


    Jeff Moden (4/14/2008)


    I wonder which would work more quickly? I think the CLR might win this one because it uses implicit functions...

    As of right now...

  • RE: Subsitute of TO_CHAR in transact SQL???

    Jeff Moden (4/14/2008)


    I wonder which would work more quickly? I think the CLR might win this one because it uses implicit functions...

    As of right now - "straight T-SQL" wins...

  • RE: Sort question with a date

    Cory Ellingson (4/14/2008)


    Matt Miller (4/14/2008)


    Simply ordering by the datetime field itself and not the "display version" would get your data in the right order.

    I had tried that, and when I...

  • RE: Sort question with a date

    Simply ordering by the datetime field itself and not the "display version" would get your data in the right order.

  • RE: Subsitute of TO_CHAR in transact SQL???

    GSquared (4/14/2008)


    I agree with Jeff that SQL isn't the way to do this. Every front end app I've ever worked with will do this better.

    If, somehow, you absolutely must...

  • RE: Find Port Number in SQL Server 2005

    To follow up on Brian's comment, the bolded part is the "servicename" for the instance:

    'Software\Microsoft\MSSQLServer\MSSQLServer\SuperSocketNetLib\Tcp'

    In a named instance that will usually be formatted as MachineName$instance.

    So you'd have to dynamically change...

  • RE: Simple value method help

    rbarryyoung (4/11/2008)


    Matt Miller (4/11/2008)


    Edit: the Namespace declaration must be wrong, since trying to retrieve that pulls a 404 error for me....

    Yeah, but that shouldn't matter, Namespace declarations are just labels,...

  • RE: Simple value method help

    rbarryyoung (4/11/2008)


    Matt: unfortunately, I do not actually have any control over this XML, as it is a Microsoft error message returned by Service Broker. I just quickly mocked...

  • RE: Simple value method help

    This is not a complete answer to your question, but removing the xmlns notation allows your queries to work just fine (once you fix the issues with the single quotes...

  • RE: is SQL Server 2005 compatable with vista business

    Keep in mind that Reporting services does NOT install on any of the home editions, due to some missing components (Windows Auth) in the OS (removed from the home editions)....

  • RE: Indexing Against "Optional" WHERE Conditions

    Have you tried the OPTION (RECOMPILE) query hint on that statement? Without it, it will generate an exec plan based on whatever is passed in the first time, and...

  • RE: Inside The Question of the Day

    I find most questions are worded fine. Some amount of badly worded/incorrect questions would be expected IMO, so I'm not at all surprised - besides - they tend to...

  • RE: Adding/updating rows of data that is missing but not in sequential order

    If you have a lot of these to do - you could use a TALLY table to help build this instead of a cursor. with a fairly sizeable number...

Viewing 15 posts - 3,661 through 3,675 (of 6,486 total)