Viewing 15 posts - 3,316 through 3,330 (of 22,206 total)
You might want to explore putting this into a columnstore index, see if that helps. It really depends on the types of queries being run against it, but pivoted storage,...
February 2, 2018 at 7:14 am
Have you tried capturing sql_batch_completed and rpc_completed (maybe even toss in module_complete) using Extended Events? That's usually what I use.
January 26, 2018 at 11:55 am
Monitoring and observing the system will certainly tell you more than I can remotely. The one thing I'll say is that doing a differential every two hours, those differentials at...
January 26, 2018 at 9:40 am
No way to say for 100% certain without at least the execution plan, but, best guess, those LEFT functions on the columns are going to lead to index scans. Same...
January 26, 2018 at 4:27 am
System processes and other threads.
January 25, 2018 at 12:12 pm
AlexSQLForums - Thursday, January 25, 2018 10:10 AMDid you do the following after migration
Use DB;
DBCC UPDATEUSAGE(DB);
GO
EXEC sp_updatestats;
GO
Why would you immediately run sp_updatestats on slow...
January 25, 2018 at 12:11 pm
No. It's not the same as measuring threads. It's just the users connected to the database. Generally, there's probably a 1:1 correlation a lot of the time. However, it won't...
January 25, 2018 at 10:09 am
The best way to monitor this in 2012 would be using Extended Events. However, it does require that you set it up and maintain it. There's nothing automatic that does...
January 25, 2018 at 9:00 am
Good Morning Experts,
We had a database on SQL Server 2012. INSERTS were running fine....
January 25, 2018 at 8:58 am
January 24, 2018 at 1:40 pm
Also, you have to have a way of identifying the user. This means one of three options. One, everyone has an independent login on the database. Two, everyone is using...
January 24, 2018 at 1:00 pm
January 24, 2018 at 5:35 am
January 24, 2018 at 4:39 am
So, collective wait stats, everything since the dawn of time, are somewhat interesting, but not terribly useful really. They will tell you where the principal waits are on your system...
January 24, 2018 at 4:32 am
Viewing 15 posts - 3,316 through 3,330 (of 22,206 total)