Forum Replies Created

Viewing 15 posts - 3,826 through 3,840 (of 5,841 total)

  • RE: Date Gap Problem

    Thanks all!! Once I take care of some other stuff this morning (and let the coffee start working!) I hope to be able to get back to this issue....

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

  • RE: Performance Question around Memory

    I don't think I see a problem with the two numbers you mention either.

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

  • RE: Date Gap Problem

    Ninja's_RGR'us (10/17/2010)


    How about using ROW_NUMBER(PARTITION BY Member_ID, ORDER BY EndDate)

    Then self join on ROWNumber = Rownumber + 1 and member_id= member_id

    where dateadd(D, 30, tbl1.enddate) <= tbl2.stardate

    I'm sure you'll figure out...

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

  • RE: optimising makes it 10 times worse?

    amazingly good maintenance stuff here: ola.hallengren.com. You can have it update statistics on indexes that are not defragged at all or are only reorg'd.

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

  • RE: How to interpret results of SQLIO used to benchmark the disk subsystem.

    Oliiii (10/15/2010)


    Actually most sas disk will have the same throughput for IO size of 8K and above, so you really just need to test for 8K.

    Do you have any reference...

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

  • RE: Update Statistics Maint.plan Job

    Avoid maintenance plans!!!

    I HIGHLY recommend the incredible and FREE goodness at ola.hallengren.com for all maintenance activities. Learn to use the goodness there!

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

  • RE: Sending multiple rows to the Database from an Application: Part I

    I consider Erland's guideance on this topic to be an excellent resource: http://www.sommarskog.se/arrays-in-sql.html

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

  • RE: Procedure recompile

    Since you mentioned something changed (merge replication), it is quite possible that blocking or resource contention is at fault (although I still bet some plan caching/parameter sniffing is to blame...

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

  • RE: Performance Degradation

    1) disk queue length is a useless measure of IO performance on modern hardware. avg disk sec/read and /write are best.

    2) do a fileIO stall analysis and wait stat...

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

  • RE: How to interpret results of SQLIO used to benchmark the disk subsystem.

    PLEASE do yourself a favor and get a professional to help you configure your IO system correctly. Right now is the ONLY time you will have to do MANY...

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

  • RE: Procedure recompile

    1) rapidly out-of-date statistics perhaps?

    2) how about doing option recompile on just a few problematic statements in the sproc instead of the entire thing? Usually it is just one...

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

  • RE: Are There That Many GUIDs?

    David Walker-278941 (10/12/2010)


    I originally didn't like GUIDs because I thought they used too much "space". They really don't. Disk space is cheap, and GUIDs are only 16 bytes...

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

  • RE: ACtive-ACtive Clustering SQL server 2005

    A/A clusters are a good way to maximize hardware investment. One thing I advise my clients is to have a monitoring agent of some flavor trigger on a failover...

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

  • RE: Are There That Many GUIDs?

    <SmartA$$ ON>I LOVE it when clients use GUIDs in their database schemas - more tuning work for me!! 😀 <SmartA$$ OFF>

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

  • RE: How to Compare Rows within Partitioned Sets to Find Overlapping Dates

    We SOOOOOOO need full Windowing Function support in SQL Server. And yes, performance on this type of query will currently be exceptionally poor and approaching non-functional on increasingly large...

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

Viewing 15 posts - 3,826 through 3,840 (of 5,841 total)