Forum Replies Created

Viewing 15 posts - 1,801 through 1,815 (of 5,841 total)

  • RE: Why might my SQL Server performance in Windows Azure be bad--slow

    The usual culprits with all virtualized sql servers apply. Under-provisioning of RAM and especially IO are rampant. Beware a chatty application too unless it is self-contained on the VM.

    http://go.microsoft.com/fwlink/?LinkId=306266

    http://msdn.microsoft.com/en-us/library/azure/dn133149.aspx

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

  • RE: Performance issue on 2012

    1) use sp_whoisactive to detect right-now activity and metrics

    2) use differential wait stats for say 3 minutes to detect waits that occur during that time

    3) use differential file IO stalls...

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

  • RE: Best Practices

    What a TREMENDOUS budget you are throwing at reports that run too slowly!!! I am sure there are a dozen consultants at least on this site that could build...

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

  • RE: Is there a way to monitor the network traffic - Dynamic SQL vs Stored procedures

    The network traffic caused by sending in dynamic sql statements should not be anything to worry about. If it is, then you must still be running on 10 megabit...

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

  • RE: Need Help on Trigger

    Please post the entire trigger code, the table schema, sample table data, the update(s) you fire and the expected action by the trigger.

    NOTE: I get VERY twitchy when...

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

  • RE: Redundancy

    mlorek (10/23/2014)


    Thanks for the replies. Yes we have the funding we actually have a rather large budget and get a educational price break that is amazing. We...

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

  • RE: Redundancy

    mlorek (10/23/2014)


    Hi all, I am a dba for a school district. We are purchasing a new application that has a sql backend for both sharepoint and the application. ...

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

  • RE: Running 2 distinct AGs on each node of a two node cluster

    mcforres (10/23/2014)


    I'm contemplating running two availability groups on a two node WSFC. The WSFC is setup with a file share witness (i.e. no shared storage). Can I safely run...

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

  • RE: AlwaysOn Failover problem

    Glad I could help!

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

  • RE: index reorganizing is 10 times slower then rebuild

    20% frag on a 13GB table could be quite a lot of page swaps. Track the tlog usage for both evolutions and see what the difference is.

    Also, doing this...

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

  • RE: Issue with a slow Query

    1) ORs are killers

    2) Just spooling 1.5M rows back to a client (especially if that client does row-by-row fetching) can alone be a cause of SIGNIFICANT slowness. Put the...

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

  • RE: difference between estimated and actual number of rows

    GilaMonster (10/20/2014)


    TheSQLGuru (10/20/2014)


    If the column-based filters are on the same table I think you can manually create mutli-column statistics to alleviate the problem at hand here.

    Doesn't work well, the...

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

  • RE: difference between estimated and actual number of rows

    If the column-based filters are on the same table I think you can manually create mutli-column statistics to alleviate the problem at hand here. We don't (yet) have multiple-table-multiple-column...

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

  • RE: User-Defined Table Type Issues

    I don't have time to dig through all of that but I will say 2 things:

    1) I don't see a table definition that actually has an identity on it.

    2) You...

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

  • RE: index reorganizing is 10 times slower then rebuild

    Most likely cause is simply that you are reorging wth too much fragmentation. The page swapping can CRUSH you (and the tlog and data files with writes) when you...

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

Viewing 15 posts - 1,801 through 1,815 (of 5,841 total)