Viewing 15 posts - 2,911 through 2,925 (of 22,202 total)
October 9, 2018 at 5:11 am
Honestly, it looks like this thing is ticking every single code smell in this list. Go through this article and apply everything.
October 9, 2018 at 4:12 am
Two options, 3rd party tools are built for a reason. They do all the work so we don't have to. SQL Monitor will give you all that information...
October 9, 2018 at 4:09 am
Capture the query metrics to understand which queries are running slow. Extended Events are your friend. Then, for the queries that are slow, look for common...
October 9, 2018 at 4:06 am
If your system is taking 11 seconds to move 183 rows, either that data is absolutely huge, or that view is doing a seriously large amount of work. 4gb of...
October 9, 2018 at 3:59 am
Well, the second one is using a derived table where clearly none is needed. The other is just a JOIN. Effectively, any JOIN is actually a SELECT * under the...
October 9, 2018 at 3:53 am
Thank you Grant for your response.
If I understand you correctly, after a failover...
October 4, 2018 at 11:53 pm
It could be a ton of things. The best approach is to capture wait statistics and query metrics to understand what is running slowly and why. However, a likely possible...
October 1, 2018 at 12:01 am
Enormous performance killer: September 28, 2018 at 7:01 am
Well... to a degree this is true. In terms of storage and retrieval, 40 characters in a NVARCHAR(40) or in NVARCHAR(4000) or even in NVARCHAR(MAX) will perform the same way....
September 28, 2018 at 6:54 am
All those SELECT statements used to put the data together could potentially be tuned. I'd check each of the execution plans to see what's happening. Also this: September 28, 2018 at 6:46 am
Reinforcing Thomas' answer. Backup every database on the server (except tempdb) and you've backed up the server. All the logins, etc., are stored in system databases. Capture those, you've captured...
September 28, 2018 at 6:42 am
I've generally used two approaches. First, Distributed Replay is free with SQL Server. It will let you replay a captured set of events (trace or extended events) against...
September 28, 2018 at 6:39 am
September 27, 2018 at 8:51 am
I can't explain the differences in the statistics (and I've reached out to some people to see if someone can). However, I can explain performance hits on failover. You're going...
September 27, 2018 at 6:57 am
Viewing 15 posts - 2,911 through 2,925 (of 22,202 total)