Forum Replies Created

Viewing 15 posts - 16,951 through 16,965 (of 22,214 total)

  • RE: SQL Restore Database Fail

    You could run a query using sp_who2 to see who's connected. You can also click on the Activity Monitor icon, which will open the activity monitor and show who's connected.

    You...

  • RE: Difference in time to fetch results between a select * and select count(*)

    Gail has explained, at length, many of the behaviors of COUNT(*) over at her blog[/url]. In a nutshell, SQL Server is smart enough to figure out which index, table, statistic,...

  • RE: microsoft support

    Main stream support for 2000 ends in June of next year, 2010. Which, is less than a year away... Yikes!

  • RE: error timeout

    I'd suspect pretty strongly you're getting blocking. If you have a blocking script, I'd run it (if not search for one in the SSC scripts over on the left), or...

  • RE: Unexpected index scan - what causes this?

    Assuming a reasonable distribution of data, I would have expected to see a seek on this...

    You're only accessing a few columns on the Pupil table, you might try using...

  • RE: Unexpected index scan - what causes this?

    GilaMonster (7/20/2009)


    I can't see anything that's forcing the scan. Makes no sense...

    Whew! That makes me feel better. I'm digging through this trying to spot something. I figured you were going...

  • RE: Unexpected index scan - what causes this?

    Thanks. I'm glad the book was useful. Post a review on Amazon!

    😀

    As to this, it does look like the statistics are up to date. I'm not sure what's happening precisely....

  • RE: Are the posted questions getting worse?

    There's only been a few posts this weekend. 4-6 at most.

  • RE: Unexpected index scan - what causes this?

    I can't see the .sqlplan file. Can you post it again?

    It sounds like you might be seeing parameter sniffing.

  • RE: Monitor Question

    Yes, the Profiler gui is great for browsing already captured data, but it is a dangerous place to try to capture original data. Here's an explanation of why[/url].

  • RE: how to show the latest data

    MAX works well in that situation, but depending on your indexes, TOP 1 with an ORDER BY can work consistently better. You might try that too.

  • RE: Loooking Corporate Training For Sql 2008

    Another option as opposed to traveling to your training is to bring a trainer to you. My company has worked for several years with Solid Quality Mentors. They have some...

  • RE: Server Database Backup

    And, if you're backing up a production system, if that system is using differential backups, you should backup using the COPY ONLY option so that you're not interferring with the...

  • RE: Design for common columns

    erictyrrell (7/17/2009)


    Often times tables will contain common columns such as People and Events both have columns for location (latitude, longitude) or a photo (blob column). Is it best to leave...

  • RE: Are the posted questions getting worse?

    GilaMonster (7/20/2009)


    Dave Ballantyne (7/20/2009)


    Is it just me who internally screams , UNDERSTAND WHAT YOU ARE DOING.

    Nope, not at all.

    Some people want to be spoon-fed and not have to (horror) actually...

Viewing 15 posts - 16,951 through 16,965 (of 22,214 total)