Viewing 15 posts - 586 through 600 (of 22,189 total)
Or, don't rebuild the indexes at all. Find a good fill factor, set that, and leave them alone. Just maintain statistics.
Different rules for columnstore indexes though.
February 1, 2023 at 1:50 pm
Strong recommendation: work backwards.
Figure out what it is that you need to deliver. Then, get a set of scripts together to deliver it, that doesn't involve using a cursor. That's...
February 1, 2023 at 1:48 pm
I'm sorry, but I don't recall 2019 being a big mess. Most of the people I know who upgraded to it were happy. Were there issues? Sure. As with anything....
January 31, 2023 at 7:26 pm
Probably not. Data modifications have to go somewhere to be persisted. That's locally. As the amount of data you modify grows, more and more data is stored locally. Now, you...
January 31, 2023 at 6:39 pm
No. If you have size cleanup enabled, it'll clean up when it runs out of room, not wait the 7 days first.
You get a time-based cleanup and a size-based cleanup....
January 31, 2023 at 2:03 pm
Since you can do a backup and a restore, you can do log shipping. If you're looking for a way to do this to MI with minimal downtime, that's generally...
January 31, 2023 at 1:10 pm
No matter what, you'll have to do data cleansing, scripts or tools, that much is necessary. Generally, following data cleansing, I rebuild the indexes and then shrink the database, to...
January 31, 2023 at 1:09 pm
I'm with Phil, probably your best bet is a trigger. Here are the docs. You want to look at the DML triggers and, probably, an AFTER trigger, meaning, after...
January 31, 2023 at 1:00 pm
The one I've been basing my own advice from is years old, by Brad McGehee. Frankly, I did a search, and I can't find it. That stinks, because lots of...
January 30, 2023 at 7:53 pm
what could be good and economical option on AWS ?
If you're going to run on AWS, I'd start by experimenting with AWS RDS. See how that works for you....
January 30, 2023 at 5:23 pm
Ahhhh.... PLE.
I'm to the point where I actively dislike this metric. Not because it's problematic in and of itself. Instead, because of that doggone perpetual bit of "knowledge" that your...
January 30, 2023 at 2:58 pm
I haven't done it, so there's that.
However, based on the documentation, yeah, it should be possible. That's not saying it is. But it really should be.
I'd suggest a few more,...
January 30, 2023 at 2:30 pm
Every single test I've seen over the last, almost 20 years, suggests, with the exception of Columnstore indexes, REORGANIZE is a complete waste of processing power and time. Just don't...
January 30, 2023 at 2:27 pm
Prepping non-production environments can be a lot work. Script the heck out of it. And yeah, there is a command you can use, SHRINK. I don't recommend it for...
January 30, 2023 at 2:24 pm
With size based cleanup set to auto, it'll ignore the 7 day limit and clean up the data based on the size.
EDIT!
But, if it doesn't hit the size limit, then...
January 30, 2023 at 2:17 pm
Viewing 15 posts - 586 through 600 (of 22,189 total)