Viewing 15 posts - 241 through 255 (of 7,472 total)
#RCA :
- Instance was installed and prepared on 2023-08-08.
- AD-groups were created and granted for the instance.
- 2023-08-14 for some reason the AD-group has been deleted and recreated in Active...
March 8, 2024 at 8:47 am
blocking issues ?
Is someone else also using that table at the same time?
Double check for cascading deletes and triggers !
March 5, 2024 at 7:44 am
What collation are you using for these columns ?
If you are actually using case sensitive collations:
How about using lower(userid) , lower(name) and lower(firstname) with the insert statement
or...
February 28, 2024 at 1:24 pm
Just use powershell DBATools ( free modules ) DBARestore
$File = Get-ChildItem c:\backups, \\server1\backups
$File | Restore-DbaDatabase -SqlInstance Server1\Instance -UseDestinationDefaultDirectories
Just keep in mind the target server service account...
February 28, 2024 at 1:13 pm
according to the docs:
February 21, 2024 at 2:15 pm
If performance is your goal: just one huge warning: "Which Version of SQL Server Should You Use?"
February 19, 2024 at 12:48 pm
February 13, 2024 at 2:29 pm
We have a couple of "data domain dedicated" sql stand alone instances ( std edtn ) that only serve as SQLAgent job scheduling environment.
A number of SQLAgent proxy accounts have...
February 9, 2024 at 12:19 pm
If I'm corrent you can use "Return 1" (or higher) to fail your ps script in sqlagent
February 7, 2024 at 10:28 am
ongoing for a while
February 7, 2024 at 10:18 am
Thanks for the feedback....
But the failed logins report from the extended events session is giving logins which have not been able to login. How will creating this extended events...
February 7, 2024 at 7:41 am
Track down these connections and search for the applications that do not end their transactions and not close their connections.
hint: "Logon monitoring in SQL Server and Azure Managed Instances...
February 6, 2024 at 2:51 pm
Happy it worked out !
February 6, 2024 at 7:10 am
This is what I use:
param ([Parameter(Mandatory = $true, Position = 0)][string]$TargetSQLInstance)
<#
[string]$TargetSQLInstance = $args[0]
Write-Host $('Host - Args count [{0}]' -f $args.count )
Write-output $('Output - Args count [{0}]'...
February 5, 2024 at 12:57 pm
I only update SSMS to the appropriate sql server version it is supposed to support.
As SQL2022 is still a botch, we have no reason to implement SSMS19 yet. I just...
February 2, 2024 at 11:49 am
Viewing 15 posts - 241 through 255 (of 7,472 total)