Forum Replies Created

Viewing 15 posts - 6,586 through 6,600 (of 7,636 total)

  • RE: Last used date

    you can check when it was created and when it's definition (or one of its dependent objects) was last modified but that is about it.

  • RE: Virtual PM's for Jeff...

    Sure. I don't have it here right now, so I'll have to send it from work tomorrow.

  • RE: Virtual PM's for Jeff...

    Yeah. It's easy to get it to work when you want to pipe it into a Varchar(MAX) variable and execute it, which is what I usually do, because the...

  • RE: Help with SQL Query

    They are both ANSI joins. The commas are the Old (SQL 89) syntax, the "JOIN"'s are the New (SQL 92 and later) syntax. OK, New-er syntax.

    I much prefer...

  • RE: TuningProc

    GSquared (6/18/2008)


    If I'm reading it correctly, it looks like the whole thing could be turned into a couple of insert statements and update statements that would run MUCH faster than...

  • RE: Linked Server Issue

    I think that you're missing something from your new Install or it lost the location of something.

  • RE: Get date of last Sunday of every month

    GSquared (6/17/2008)


    ...are all considered deterministic by SQL Server, but

    Datepart(Weekday, date)

    is not.

    Neither are:

    dateadd(day, '12/30/1899', date)%7

    cast(date as float)%7

    cast(date as int)

    Aren't the first two affected by configuration settings on the server or instance?

  • RE: detecting

    Check out the IS_MEMBER() function in books on line. If you know what explicit groups you want to check for, this will do it.

    If you need an actual list...

  • RE: Virtual PM's for Jeff...

    Jeff Moden (6/18/2008)


    rbarryyoung (6/18/2008)


    Jeff Moden (6/18/2008)


    Easy to print? They contain CR/LF's... should print just fine if you display them in a text mode instead of a grid mode...

    Well, sort...

  • RE: Using VBA to pull SQL data into Excel?

    Matt, Jeff:

    FYI, I've already used this trick today to put up a "quick & dirty" Service Broker monitor. sweet...

    Thanks again,

  • RE: Ranking Within a Data Set

    Glad I could help.

  • RE: Virtual PM's for Jeff...

    Oh, and that's another thing that I discovered today: They do not ALL contain CR/LF's. Some of them contain just LF's! That's a nice little inconsistency.

  • RE: Virtual PM's for Jeff...

    Jeff Moden (6/18/2008)


    Easy to print? They contain CR/LF's... should print just fine if you display them in a text mode instead of a grid mode...

    Well, sort of. There's...

  • RE: Group By Price Ranges

    OK, fair enough, I can see that is was not caught up to the changes that you were making.

    To answer your question then: from a performance standpoint, 2 different version...

  • RE: Virtual PM's for Jeff...

    Carl Federl (6/17/2008)


    SYSCOMMENTS is no longer a table but is a view included for backward compatability. Module source is now in a varchar(max) column and can be obtained using...

Viewing 15 posts - 6,586 through 6,600 (of 7,636 total)