Viewing 15 posts - 376 through 390 (of 2,648 total)
you need to expand at the VM level, then do the same at OS level.
October 19, 2023 at 8:30 pm
Do not use it - period.
see https://www.brentozar.com/archive/2021/11/nolock-is-bad-and-you-probably-shouldnt-use-it/
if you truly have to use it and the business has signed off on allowing potential bad data then use the Transaction level.
NOLOCK vs...
October 19, 2023 at 10:52 am
you can try shrink in 100 or 200 GB at the time - not advisable but would work -
the truncateonly is here in case you get lucky...
October 18, 2023 at 6:14 pm
fix the queries and the indexes - based on your latest threads that is where your issue is and the sooner you do it the better for everyone.
October 18, 2023 at 7:49 am
possible changes - in addition to what I mentioned on the other thread.
table C_B_CONTACT - likely the clustered key should be changed to be based on PARTY_ID...
October 17, 2023 at 6:07 pm
it can take days to shrink depending on how busy the db is.
and I would expand that command - prefer to be specific about which files get truncated and to...
October 17, 2023 at 3:22 pm
Also what is the "log_reuse_wait_desc" from sys.databases for the database in question?
I may be wrong but this would only prevent LOG file shrink - not data file (which I...
October 17, 2023 at 11:10 am
what exact command are you using for it?
October 17, 2023 at 8:14 am
Tom - that is the perfect example of WHY code reviews SHOULD be done - the reaction that individual had would also be a good pointer to go and review...
October 16, 2023 at 6:28 pm
did you implement the indexes I mentioned on https://www.sqlservercentral.com/forums/topic/query-filling-up-tempdb ?
some of them would help on this particular issue as well.
and while not necessarily the issue on this case replace that...
October 16, 2023 at 10:02 am
why do you say it does not work?
SMO, and that particular script (with a few changes required on the scriptingoptions block as it its missing significant items) is one of...
October 15, 2023 at 12:59 pm
this may not be the correct way but check https://www.mssqltips.com/sqlservertip/5437/adding-a-database-to-an-existing-sql-server-always-on-configuration/
October 13, 2023 at 12:53 pm
Dear Experts,
... so when there is high count after the scheduled report it is difficult to find if there are high vlf
...
MJ
why is it difficult? you just need to...
October 13, 2023 at 10:33 am
if you have them on sql_modules you will also have them as SP's - so a normal "drop procedure xxxx" on master will delete(drop) them.
(to be safe generate their definition...
October 12, 2023 at 4:36 pm
this is the type of sql you should confirm yourself in a dev box - if it is wrong you will see the errors.
as for executing it blindly as you...
October 12, 2023 at 1:45 pm
Viewing 15 posts - 376 through 390 (of 2,648 total)