Viewing 15 posts - 3,091 through 3,105 (of 22,214 total)
July 30, 2018 at 6:43 am
I've got several blog posts on the cost threshold for parallelism. First, we need to make sure you're on the service packs and CUs from the fall (at...
July 27, 2018 at 5:51 pm
And the second question, if I restore existing database, for example we have...
July 27, 2018 at 6:17 am
And the delete, while fast, is not free, so it's also adding a little to the time.
July 26, 2018 at 12:41 pm
Getting exact measures is going to be very hard because, at the root, is the query run more than once with a unique data set each time, or a mixed...
July 26, 2018 at 12:40 pm
You literally can not go wrong using Paul Randal, and his team, as a guide.
Best of luck on figuring things out. Come back here as you need...
July 26, 2018 at 8:03 am
July 26, 2018 at 7:43 am
If you're capturing query metrics on SQL Server 2012 or greater, instead of using trace, I strongly recommend you use Extended Events. It's much more lightweight and easier to filter.
July 26, 2018 at 7:39 am
Oh, and, you're on 2014. The system_health extended events session captures deadlocks. You don't need 1204. It's just going to dirty up your logs.
July 26, 2018 at 7:32 am
I honestly hate trace flag discussions.
However, I'd suggest adding 2371 to the list.
July 26, 2018 at 7:31 am
Strong recommendation.
Don't use the ring buffer target. It's very attractive, but it leads to problems. Read this post by Jonathon Kehayias for details.
July 26, 2018 at 7:30 am
One immediate concern I would raise with whoever has asked you to back up a table instead of the database. How do you restore it? You need a plan for...
July 26, 2018 at 7:28 am
Target and Total Server Memory are frequently identical after the server has been running for a bit. SQL Server will consume the memory available and then hold on to it....
July 26, 2018 at 7:26 am
I'd monitor it using Extended Events (or if you're on 2008, Trace Events). You can capture the query. You won't see the data, but you can see the query.
July 25, 2018 at 11:44 am
Yeah, I agree with Drew. Rather than try to capture the SELECT statement, just capture the data from the data modification through the OUTPUT clause.
July 25, 2018 at 7:56 am
Viewing 15 posts - 3,091 through 3,105 (of 22,214 total)