Viewing 15 posts - 751 through 765 (of 7,472 total)
also keep in mind , if you are able to extract the deadlock xml (copy/past into a .xdl file), SentryOne PlanExplorer has a nice "replay" feature that shows the sequence...
August 20, 2021 at 11:39 am
How about
/* generate DDL */
exec sp_msforeachdb '
Select ''
USE [?]
GO
CREATE DATABASE AUDIT SPECIFICATION [DatabaseAuditSpecification-DatabaseA]
FOR SERVER AUDIT [ServerAuditName]
ADD (INSERT ON DATABASE::[?] BY [dbo]),
ADD (SELECT ON DATABASE::[?] BY [dbo]),
ADD (DELETE...
August 20, 2021 at 11:36 am
What's the condition on which you determine which hour to be returned ?
August 20, 2021 at 11:32 am
I just encountered this picture which also applies to our line of duty ...
August 19, 2021 at 9:15 am
Some monitoring softwares will show blocking in the engine and may get you on track detangling such issues.
If you think (b)locking is the issue, you may even want to try...
August 17, 2021 at 1:09 pm
Keep your data catalog correct and disable an index if you want to re-enable it later!
This way, persons investigating "troubles" will know someone performed this action on purpose ( as...
August 5, 2021 at 7:54 am
indeed, Jeff. Time flies when you're having fun ??
I hope there will be an occasion in the near future, when we have adapted to cope with covid-vnext.
August 2, 2021 at 2:57 pm
It was a great session, Jeff
Good to hear you again 🙂
August 2, 2021 at 5:54 am
It will be good to hear you again. It's been a while for me.
June 16, 2021 at 9:20 am
I used to try to solve such quest from within TSQL, as some others suggest.
But nowadays, I keep it out of TSQL using Powershell dbatools !
#of course...
June 16, 2021 at 9:17 am
June 10, 2021 at 6:47 am
Clear-Host
$TargetPath = 'c:\SQL_CMS_Export'
Export-DbaRegServer -SqlInstance Your_CMS_SQLInstance -Path $TargetPath
explorer.exe "$TargetPath"
<# Results
Your_CMS_SQLInstance-reggroup-DatabaseEngineServerGroup-06022021131433.xml
#>
June 2, 2021 at 10:59 am
Isn't CMS hosted in msdb?
You cannot put systems databases in an AOAG.
May 31, 2021 at 12:02 pm
We always use
-- switch sqlserver logfiles (errorlogs)
EXEC msdb.dbo.sp_cycle_errorlog
and
EXEC msdb.dbo.sp_cycle_agent_errorlog;
We do this in a single SQLAgent job, but in 2 steps, configured so they...
May 28, 2021 at 7:55 am
What disturbs me more is the fact that "will never share information" gets thrown overboard.
MS baught Whatsapp for its technology.
Instead of rebranding it to MSwhatever, they opt to keep the...
May 26, 2021 at 12:07 pm
Viewing 15 posts - 751 through 765 (of 7,472 total)