Viewing 15 posts - 781 through 795 (of 7,504 total)
They are still image and text data types (legacy industrial tech "we will not change it for you" salesperson ). Out of row by default if I'm correct., but indeed,...
August 20, 2021 at 12:48 pm
That's indeed what I've been thinking, but I have not that much experience when it comes to storing LOBs ( up to 1GB ) in the database, so I've been...
August 20, 2021 at 11:48 am
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
Viewing 15 posts - 781 through 795 (of 7,504 total)