Forum Replies Created

Viewing 15 posts - 3,781 through 3,795 (of 5,841 total)

  • RE: Turning off auto update of statistics

    1) have you looked into asynchronous stats updates?

    2) 60GB is WAY to high for max memory on 64GB box. Have you monitored for paging? I would try maybe...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Slow query performance after upgrading from SQL2000

    1) did you run update statistics on EVERYTHING with FULLSCAN?

    2) have you done a waitstats analysis while the queries are running for hours?

    3) have you done a fileIO stall analysis...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Index build and parallelism

    I looked around and couldn't find anything either Jeff. Perhaps if it does exist it is buried in the list of Edition features?

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Index build and parallelism

    george sibbald (11/27/2010)


    Hmmm, interesting Jeff, a poor mans partitioned table. It looks as if it would take a fair amount of effort to get to this set up though if...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Help with SQL SCRIPT Causing Deadlock

    Review this link, and the two associated posts:

    http://blogs.msdn.com/bartd/archive/2006/09/09/Deadlock-Troubleshooting_2C00_-Part-1.aspx

    Also try here if you are getting the intraquery parallelism deadlock:

    http://blogs.msdn.com/b/bartd/archive/2008/09/24/today-s-annoyingly-unwieldy-term-intra-query-parallel-thread-deadlocks.aspx

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: temp table usage

    1) the easy answer is to drop a FusionIO card into the server and use that for tempdb.

    2) I wonder if a plan guide can be created that will somehow...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Work around for SQL server performance issue

    Refactoring this stuff is WAY beyond a forum - it simply cannot be effectively done. I agree with the other poster who said it is time to call in...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: How to find out what is truncating a database transaction log

    The obvious thing is to review all scheduled activity that occurs around the times of concern. I recommend sqljobvis to view job activity as a gantt chart - amazing...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: memory settings

    My vote is for 5.5GB max memory for this machine, assuming the only thing running on it is the SQL Server relational engine. Monitor for paging to ensure this...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: After indexing subquery gives wrong result

    1) ALWAYS use aliases for your tables AND columns (quite a few columns are not aliased)! Try this:

    select a.8,b.aasdfddd

    from aaaa a, bbbbb b

    where a.srno = b.srno and isnull(status,'Y')='Y'...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Job Duration

    I would like to put in a plug for SQLJobVis - a wonderful FREE utility that helps with agent job analysis: http://www.sqlsoft.co.uk/sqljobvis.php

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Selective Index Maintenance

    1) if you check the code for sp_updatestats I think you will find that it isn't so selective as you imagine. It updates anything with 1 or more rows...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Selective Index Maintenance

    The latest version of Ola's index maintenance sproc now has the ability to specify indexes, so you can set up rolling jobs to cycle through them and not crush your...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Index, one index per column or per column combination?

    If you are planning on doing some tuning and you are just learning about indexes, PLEASE do yourself a HUGE favor and hire a professional out for a few days...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

  • RE: Performance Issue

    Best answer is hire a performance tuning guru to give your system, application, databases, etc a review. It is astounding what a qualified individual can identify in just a...

    Best,
    Kevin G. Boles
    SQL Server Consultant
    SQL MVP 2007-2012
    TheSQLGuru on googles mail service

Viewing 15 posts - 3,781 through 3,795 (of 5,841 total)