Viewing 15 posts - 1 through 15 (of 180 total)
Thanks guys for taking your time to read this and your replies!
Got my doubts cleared out.
Have any of your SQL Instances run out of threads and "crashed" temporarily but then...
July 23, 2024 at 7:42 pm
Thanks for the quick reply Jeff!
Do you use Auto update stats? And for critical tables full scan with norecompute? And update these weekly? Or just full scan all stats with...
March 17, 2024 at 6:10 am
Thanks guys for taking your time and reading the post, I'm gonna look up all the options and make some tests, also i'm going to pay more attention to the...
March 17, 2024 at 4:33 am
Thanks for your reply Jeffrey, so you would basically create a shared storage on either server of the cluster and use this one as a witness? and if it can...
September 16, 2022 at 2:25 pm
Yes, that may turn out as a deadlock and SQL Server will kill one of the sessions so the other can finish.
https://blog.quest.com/the-anatomy-of-sql-server-deadlocks-and-the-best-ways-to-avoid-them/
June 9, 2022 at 1:37 pm
No, it should not affect the job unless the job is touching any database in the primary replica which you want to reboot but thats not the case here.
But i...
May 19, 2022 at 11:34 pm
Have never used transactional replication to be honest.
but heres a document from Microsoft, take a look at it.
March 10, 2022 at 6:22 pm
use the catalog views.
in the view sys.server_event_session_fields the name of the values are filename and metadatafile, match them with sys.server_event_sessions i think the id.
Regards,
January 17, 2022 at 3:17 pm
The plan is okay.
If you want to shrink the log, you gotta use the dbcc shrinkfile.
I don't think you should be shrinking the log file if its still increasing in...
October 25, 2021 at 9:23 pm
That's actually a good idea Jeff, thanks 🙂
In our case when it happens its usually in old applications and we want to know which user is using it since in...
September 27, 2021 at 2:33 pm
The way we do it is that we don't check when was the last transaction, we put an extended event capturing anything that goes into the database and we let...
September 26, 2021 at 10:54 pm
Check where the sessions is connecting from, if its from SQL Server itself, then you have to wait like the guys said earlier.
Sometimes its an outside connection like service connecting...
September 9, 2021 at 12:36 am
Yeah i completely understand what you mean.
the instance was working fine, transaction times started taking longer in night and what "fixed" the issue at last was increasing a data file...
June 2, 2021 at 2:42 pm
The cost threshold is actually 25 but the queries/transaction running in the instance never go above it so they are not actually using parallelism, i've checked most queries and none...
June 2, 2021 at 2:07 pm
Where i work we also have a backup tool, we have access to the backup tool dashboards and we have access to the policies (execute,modify,delete and create) of backups of...
May 21, 2021 at 7:10 pm
Viewing 15 posts - 1 through 15 (of 180 total)