Forum Replies Created

Viewing 15 posts - 16,801 through 16,815 (of 22,213 total)

  • RE: Query Question

    It looks basically OK, but I'm curious why you're aggregating the data & selecting the max value. Are there multiple entries with the same key value? That's a bit of...

  • RE: performance issue on server

    You wouldn't by chance be running the Profiler GUI against this server? If so, I'd suggest turning that off and using scripts to create a server-side trace routine. I say...

  • RE: Are the posted questions getting worse?

    I "answered" this post, but I didn't provide a solution to the guy. If someone else would like to take a swing at providing a possible solution for him, he...

  • RE: Optimizing UDF calls in SP.

    You want an honest answer? Don't do this. Don't use functions in this manner. I've seen an entire application written exactly the way you described. It looked great and when...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (8/2/2009)


    Thought I'd bring this to the water cooler. We talked to Kassondra again today, and she leaves reception tomorrow to actually start Basic Training. She sounded...

  • RE: Updating Records

    Working on it. Sorry. Work interfered.

  • RE: The Reading Poll

    mazzz (7/31/2009)


    Steve Jones - Editor (7/24/2009)


    clean, used books? give me a battered, dirty, bent copy any day, as long as all the pages are in there!

    Same here- the first...

  • RE: Updating Records

    Sorry, WITH X AS (SELECT), is the syntax for a common table expression, CTE.

    Can you post the structure & some sample data. I can play with the proc then. Index...

  • RE: Installing Query Tool for Various Users

    I agree. Go ahead and give people as much as they feel they need without endangering your system. They may need it.

  • RE: Performance difference - with & without column in select list

    Is there an index in Opportunities on the AccountID? Are your indexes defragmented and the statistics up to date? How selective is the data within the Account table?

    Based on what...

  • RE: Updating Records

    It looks OK. You don't need to use a CTE to do the UPDATE, you can simply UPDATE... FROM and select what you need, but it won't change the overall...

  • RE: Learn A Bit More

    I guess my question is, why would you NOT go to one of these events? Fear that maybe the people presenting don't know what they're talking about? So leave the...

  • RE: any way to make a view "pre-render"

    It could be compile time or the time needed to move the data into cache or both.

  • RE: Query taking long time to execute

    You must be getting a scan because you're not going to see an index seek when you have functions on columns like that. Like Gail says, post the code, structure,...

  • RE: Updating Records

    No, an index hint doesn't change the order. The only way to affect the order of the data returned is to use an ORDER BY clause. That will take advantage...

Viewing 15 posts - 16,801 through 16,815 (of 22,213 total)