Viewing 15 posts - 376 through 390 (of 2,651 total)
If all of your code has NOLOCK - then enabling RCSI and not removing NOLOCK is just adding overhead for now useful purpose. SQL Server will be maintaining...
October 20, 2023 at 4:26 pm
only you can know what to allocate to each one based on the load each instance/process needs.
for info SSAS has 3 memory settings you will need to change - there...
October 20, 2023 at 4:06 pm
SSIS and SSAS memory usage are totally separated from that of SQL Server - and the min/max memory settings on SQL do not affect those.
SSIS does not have a "max...
October 20, 2023 at 2:50 pm
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
Viewing 15 posts - 376 through 390 (of 2,651 total)