Forum Replies Created

Viewing 15 posts - 18,286 through 18,300 (of 22,202 total)

  • RE: Global vs Local Temporary Tables

    noeld (2/19/2009)


    Why so many DBs?

    You surely have a lot of contention on tempdb!

    And everywhere else.

  • RE: Are the posted questions getting worse?

    Steve Jones - Editor (2/19/2009)


    A group interview could be fun. Round robin style, ask each other questions. I'd tape it, maybe cut down to some interesting answers for a podcast.

    Grant,...

  • RE: comma seperated parameter

    There are a bunch of functions available in the Scripts area of the site. You do a search to track them down. Here's the one at the top of the...

  • RE: update datetime column

    I still don't understand why you would do this, but you might want to look up the SQL Agent in the Books Online.

  • RE: Distinct going slower than *

    If you look at the execution plan for the DISTINCT, you're getting a huge load because of the DISTINCT operation itself. It's joining ALL the data between the three tables...

  • RE: Table function execution speed

    Yeah, Gail's got it. Fix that lookup operation with the included columns and should see a pretty substantial increase in performance.

    I think you're getting those scans because of the...

  • RE: Tables Taking lot of time for delete

    That looks like SQL SErver 2000. You're posting in the SQL SErver 2005 forum. There is a difference in functionality. That's why you can't save the plan.

    Well, without the data...

  • RE: Table function execution speed

    Aaron N. Cutshall (2/19/2009)


    Sorry for the estimated plans, but since we couldn't get the function to operate, we were unable to get actual plans.

    The problem is, especially when dealing with...

  • RE: Are the posted questions getting worse?

    GilaMonster (2/19/2009)


    Lynn Pettis (2/19/2009)


    Talking about interviewing, I would love to be in the same place at the same time as Jeff, Gail, Grant, Gus, Matt, and Jack and have a...

  • RE: Tables Taking lot of time for delete

    harsha.bhagat1 (2/19/2009)


    i am not able to paste the execution plan..

    how will i do it.. please help..

    You generate an actual execution plan, graphical is fine, even preferred. Right click on...

  • RE: Are the posted questions getting worse?

    GilaMonster (2/19/2009)


    Depends what I'm interviewing for. If I'm interviewing someone for a senior position where they are expected to pull their weight immediately then a certain level of knowledge is...

  • RE: Table function execution speed

    OK. This is going to lead to table scans:

    WHERE R.MedGroupID = ISNULL(@MedGroupID,

    ...

  • RE: Tables Taking lot of time for delete

    That's kind of a wide PK, depending on the data types. Can you post the execution plan? Actual please, not estimated.

  • RE: Table function execution speed

    I'm still trying to untangle the code (did you really need to put comments at the end of every line?), but if this is functional as an inline UDF, then...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (2/19/2009)


    Talking about interviewing, I would love to be in the same place at the same time as Jeff, Gail, Grant, Gus, Matt, and Jack and have a mock...

Viewing 15 posts - 18,286 through 18,300 (of 22,202 total)