Forum Replies Created

Viewing 15 posts - 4,186 through 4,200 (of 5,841 total)

  • RE: Interesting deadlock with no fix

    I didn't see it in my quick scan of the thread, but here is the Bible for deadlock resolution: http://blogs.msdn.com/bartd/archive/2006/09/09/Deadlock-Troubleshooting_2C00_-Part-1.aspx

    Note there are 2 more parts to that post.

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

  • RE: Query is timing out :( help plz

    1) Dynamic sql

    2) better indexing

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

  • RE: Tempdb growing very large

    There are several DMVs specifically created for monitoring tempdb space AND the queries that are using said space.

    See here in Books Online: ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/148a5276-a8d5-49d2-8146-3c63d24c2144.htm

    note the See Also Reference...

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

  • RE: Index Fragmentaton

    statistics are only updated 'automatically' when >20% of the values for that statistic are modified. that can take a LONG time for some objects, and the staleness of the...

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

  • RE: Stored Proc with table variables running very slow?

    Try this:

    use tempdb

    go

    CREATE TABLE dbo.Data

    (

    row_id INTEGER IDENTITY PRIMARY KEY,

    ...

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

  • RE: Stored Proc with table variables running very slow?

    DOH! More goof - you need an index on the value joined or it can never do anything but a table scan/hash. Back in a moment with better...

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

  • RE: Stored Proc with table variables running very slow?

    AHA! Do this:

    dbcc freeproccache

    go

    DECLARE @OneRow

    TABLE (

    -- row_id INTEGER IDENTITY PRIMARY KEY,

    value...

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

  • RE: Stored Proc with table variables running very slow?

    Quite interesting Paul! I have seen numerous real-world systems where that was a killer. Things that make you go "HMMMMM"!!

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

  • RE: Stored Proc with table variables running very slow?

    The inability to have statistics on table var (except for PK if you have one) can be a killer even if there is just ONE row in the table var....

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

  • RE: Strange memory usage pattern

    sam rebus (1/28/2010)


    I need help from all the people familiar with inner workings of SQL 2005 memory managemnt. Educate me!

    i have a few systems that exhibit similar strange memory usage...

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

  • RE: "A significant part of sql server process memory has been paged out. This may result in a performance degradation"

    If an "emergency" had been crushing my server for TEN DAYS I would long since have been on the phone to Microsoft Support or brought in a performance tuning consultant...

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

  • RE: Report Server Diagnostic Reports

    Thanks for sharing your work!

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

  • RE: TempDB into Memory

    Steve Jones - Editor (2/3/2010)


    That's an interesting thought on the partitioning. I would think it would be an issue. If you go to SSDs, I think you want to use...

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

  • RE: Sql Server mirroring between two servers

    True HA/DR is a VERY complex yet critical topic and you really should consider getting an expert on board to advise/assist you. You are heading for trouble without that.

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

  • RE: SQL Server 2008 Standard x64 Clustering on VmWare (ESX)

    I believe you can find pretty detailed instructions online on how to setup sql server cluster on vmware.

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

Viewing 15 posts - 4,186 through 4,200 (of 5,841 total)