Viewing 15 posts - 3,826 through 3,840 (of 22,213 total)
May 16, 2017 at 5:57 am
There's not really a whole lot you have to do. Remove the data so that you're below 200gb in size, then use the SHRINKFILE command (it gives you...
May 16, 2017 at 5:45 am
May 16, 2017 at 5:26 am
A clustered index actually defines data storage. You can have one or more columns as the key for the clustered index, but you won't get any INCLUDE columns in there...
May 15, 2017 at 5:33 pm
Please, do what Lowell says. Normally, I wouldn't bother answering since he's already provided the correct path. However, I sense the need to pile on.
You're working with a...
May 10, 2017 at 6:46 am
In addition to the other checks listed (blocking, waits, execution plan), are these delete statements deleting varying amounts of data? If the data changes, so will the behavior, sometimes radically...
May 10, 2017 at 6:37 am
I'm pretty sure this is utterly impossible. About the only tool you have at your disposal around stuff like this are plan guides. You can force behaviors through hints or...
May 10, 2017 at 6:17 am
Both statements are part of a transaction. It's not that the SELECT is holding the UPDATE, it's that the UPDATE and the SELECT are executing as a set of operations.
May 8, 2017 at 6:00 am
If you want to monitor for specific security changes, I'd suggest using extended events and then you'll need to filter for statements that are changing the permission on the user....
May 8, 2017 at 5:57 am
May 8, 2017 at 4:51 am
May 5, 2017 at 11:47 am
May 5, 2017 at 10:05 am
I hate to say it, but I don't know that I want to get tied down to doing it the same way every time regardless.
I mean, for stored...
May 5, 2017 at 7:55 am
You want to use the function sp_create_plan_guide. The basics are pretty simple. Copy your query, and it has to be a perfect copy, including all the white space...
May 5, 2017 at 7:05 am
Viewing 15 posts - 3,826 through 3,840 (of 22,213 total)