Viewing 15 posts - 46 through 60 (of 5,842 total)
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...
January 30, 2018 at 9:56 am
I'm using an app that utilizes sql 2014. When I'm using the app on...
January 28, 2018 at 11:12 am
January 27, 2018 at 9:47 am
You are welcome.
The answer to your question will be found in the query plan.
January 27, 2018 at 9:45 am
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...
January 26, 2018 at 2:14 pm
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?
January 26, 2018 at 2:08 pm
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...
January 26, 2018 at 2:04 pm
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...
January 26, 2018 at 1:59 pm
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...
January 25, 2018 at 9:30 pm
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...
January 25, 2018 at 11:34 am
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...
January 24, 2018 at 8:24 pm
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?
January 24, 2018 at 8:21 pm
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...
January 24, 2018 at 8:18 pm
Lynn Pettis - Wednesday, January 24, 2018 11:06 AMLooks like tempdb contention. How is your tempdb database configured?
Suboptimally ... maybe still...
January 24, 2018 at 11:23 am
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...
January 24, 2018 at 10:22 am
Viewing 15 posts - 46 through 60 (of 5,842 total)