Forum Replies Created

Viewing 15 posts - 46 through 60 (of 5,841 total)

  • RE: Huge Latency in TempDB

    My experience (~25 years as a SQL Server only consultant) shows that suboptimal IO is the cause of this. You can also add in suboptimal virtual machine configuration these days...

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

  • RE: Remote TCP/IP Connection speed improvement methods?

    fesliyanstudios - Saturday, January 27, 2018 9:43 PM

    Hi guys,

    I'm using an app that utilizes sql 2014. When I'm using the app on...

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

  • RE: how to get all values from one table repeated to each group on a column in another table

    drew.allen - Friday, January 26, 2018 2:20 PM

    Here is one option.  I initially tried an approach similar to Kevin's, but this seems...

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

  • RE: Performance when Inserting into nvarchar vs varchar

    You are welcome. 

    The answer to your question will be found in the query plan.

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

  • RE: how to get all values from one table repeated to each group on a column in another table

    You need to CROSS APPLY with a new construct that has each year you want data for. VALUES would be what I use. Your @tax table will never give you...

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

  • RE: Trigger insert

    Wait - am I seeing correctly that your sproc actually creates the log record? If so, why isn't it simply putting the database info in the row it creates?

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

  • RE: Performance when Inserting into nvarchar vs varchar

    Look up CONVERT_IMPLICIT and see if that is in play here.

    I note that in my almost 25 years of consulting on SQL Server MISMATCHED DATA...

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

  • RE: Diff backups every 2 hours.

    Full backup and Diff backup tend to take all the resources available on the system and can slow down performance. 

    That is unacceptable in my book and should...

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

  • RE: Maxworker thread and needs understanding

    Not much documentation to be found readily about those elements. But logically what you say sounds correct. 

    HOWEVER, I would be WAY less worried about the fact that you...

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

  • RE: Maxworker thread and needs understanding

    It is VERY seldom advisable to mess with that setting. 

    What does sp_whoisactive show for current activity and spid status?

    What changed from when this did type of...

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

  • RE: Ghost Process attacks again

    10% growth is BAD, especially for tlog which MUST be zeroed on growth (as opposed to data file which could be IFI'd).

    Whenever you decide you need to bring...

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

  • RE: SQL deadlock on delete in clustered index

    Having different RECORDS doesn't mean they don't have one or more identical VALUES in the 3 indexed fields. You can still get a collision that way, no?

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

  • RE: Efficient way of mirroring tables from one sql instance to another

    I can absolutely guarantee you that triggers and TSQL to process records can be crafted to have as low of an overhead as you desire. I have done this on...

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

  • RE: Ghost Process attacks again

    Lynn Pettis - Wednesday, January 24, 2018 11:06 AM

    Looks like tempdb contention.  How is your tempdb database configured?

    Suboptimally ... maybe still...

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

  • RE: Efficient way of mirroring tables from one sql instance to another

    This is one of the very few times I will disagree with Gail. I would stay away from replication in any case where possible, and I am certain that it...

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

Viewing 15 posts - 46 through 60 (of 5,841 total)