Viewing 15 posts - 136 through 150 (of 5,842 total)
The first thing I would do is a wait stats analysis and file IO stall analysis during the run. If it is on the same spid run in a loop...
September 20, 2017 at 12:35 pm
You can shrink the database to reclaim space. But be SURE to leave some extra space. FAR MORE IMPORTANT is that you MUST REBUILD EVERY INDEX IN THE DATABASE WHEN...
September 20, 2017 at 12:31 pm
Are the growths the same for all files?
I RARELY see the need for 8 files, but I have OFTEN seen too many files (even 8) make IO SLOWER...
September 20, 2017 at 12:30 pm
September 20, 2017 at 12:29 pm
Maybe sp_whoisactive will give you more details to help you isolate the problem?
September 19, 2017 at 10:34 am
This is quite an unusual situation, and I wonder if you haven't stumbled upon a bug (possibly known?). I hope the TF 4134 does you right, which would mean the...
September 15, 2017 at 6:02 pm
I have a performance issue on view that returns 7 columns which are of...
September 15, 2017 at 3:41 pm
1) I too would like to see some of the data differences delineated, along with some rows that are identical. Please share any patterns you note in the results.
September 15, 2017 at 3:38 pm
Those results are too not unexpected, although I thought the concats might fair a little bit better.
September 13, 2017 at 8:10 pm
This code is a pile of, well, I'll be nice and say it is suboptimal to the extreme. :hehe: 22 convert_implicits, 100 OTHER converts, 3.4MB query plan, the estimated...
September 12, 2017 at 3:32 pm
September 11, 2017 at 3:16 pm
September 11, 2017 at 12:59 pm
I don't have time to dig into it, but this part of the code just smells bad:
AND EXISTS (
SELECT * FROM
DistrictStudents
WHERE DistrictStudentSchedule.MosisStateId...
September 10, 2017 at 7:24 pm
1) Always compare estimated rows and actual rows. when they are off by 6 order of magnitude, bad stuff going to be happening in the plan. You need to find...
September 9, 2017 at 5:45 pm
Column-level encryption is available in SQL Server.
If you can go to SQL Server 2016 (and your apps support it or can be changed to support it) there is...
September 8, 2017 at 1:07 pm
Viewing 15 posts - 136 through 150 (of 5,842 total)