Forum Replies Created

Viewing 15 posts - 1,831 through 1,845 (of 5,841 total)

  • RE: CPU Utilization more than 95% for more than 3 hours

    A proper profiler-to-local-disk script can be run to capture heavy CPU users with very little overhead on the system. I have run my very tight collection of fields/events on...

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

  • RE: Interesting variant on the sp_executesql and parameters

    Parameter sniffing is almost certainly the cause. And there isn't much you can do about it. Data value skew can cause unbelievably bad performance if you don't do...

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

  • RE: Significant performance dropping when use CASE statement

    Is B.Country_Area an Nvarchar field by chance? If so, try N'EUR' in your CASE statement.

    Also, get the FULL XML QUERY PLANS from both executions and run them...

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

  • RE: Configuring Failover clustering in sql 2012

    If this is a test/learning environment you can do just about anything you want with it, including using just one network for everything, doing the shared storage via the domain...

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

  • RE: SCHEMABINDING Scaler UDFs and Schema Locks

    Paul White did a very nice blog post about Halloween Protection and schemabinding on UDFs. That is a significant performance improvement.

    I don't know the answer to your...

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

  • RE: Help avoiding temp table with string of IDs passed into stored procedure

    Try your XML method under stress and see how it holds up. Or with lots of rows.

    There are some very nice threads here on SSC.com about string...

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

  • RE: Data Compression and Snapshot Isolation

    Even the Microsoft PFE said there is a potential performance gain on I/O using data compression

    1) POTENTIAL is just that. It isn't guaranteed, or even likely in some scenarios....

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

  • RE: How do you approach undocumented code?

    sqldriver (10/6/2014)


    If you're tasked with debugging/troubleshooting?

    Specifically:

    Assigning workable values to parameters/finding out where they're passed from or stored

    Heavy use of temp tables/table variables/real tables that get truncated

    Verifying results

    Bonus points if it's...

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

  • RE: Database Mirroring-What Do I Backup?

    Normal backup schemes (full/diff/tlog) work just fine for mirrored databases. The mirroring system won't let stuff get removed from the tlog if it isn't yet hardened over on the...

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

  • RE: Data Compression and Snapshot Isolation

    I wonder if it is page compression at issue here. Unless you are getting a MASSIVE amount of regular insert/update/delete activity with this table the VAST majority of data...

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

  • RE: IO issues

    Ratheesh.K.Nair (10/1/2014)


    Hi experts,

    Is there anyway to check if server is having disk latency or IO issues?

    Found below in SQL error log

    Date10/1/2014 8:28:58 AM

    LogSQL Server (Current - 10/1/2014 12:00:00 AM)

    Sourcespid10s

    Message

    SQL Server...

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

  • RE: AlwaysOn AG replicating much slower than mirroring

    By "offline" I assume you meant "not readable".

    Well, those were my two items. I look forward to your finding and posting about a root cause. There...

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

  • RE: OPTION (FAST x) and trace flag 8722

    If you come up with something let me know!! 🙂

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

  • RE: indexes - How many are too many?

    Indexing is a HUGE topic, both in breadth and depth. The best answer is that to be optimal you put on all the proper indexes that give you the...

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

  • RE: Help avoiding temp table with string of IDs passed into stored procedure

    Sorry - not sure how to help with this one, at least not via a forum thread. 🙁

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

Viewing 15 posts - 1,831 through 1,845 (of 5,841 total)