Viewing 15 posts - 721 through 735 (of 7,472 total)
-- try
SELECT [UniqueClaimID], count(distinct ProvOrgNm) nProvOrgNm, count(*) nRows
FROM [phm_db].[dbo].[PCP2Final]
group by [UniqueClaimID]
having count(*) > 1
order by nRows desc
;
October 29, 2021 at 12:18 pm
Please also read the follow up article "Logon monitoring in SQL Server and Azure Managed Instances - Adopting Extended Events"
Another enhancement to avoid the downsides of notification service queues
October 29, 2021 at 10:42 am
Question should be: why doesn't the name resolving work ?
October 26, 2021 at 1:52 pm
October 26, 2021 at 1:18 pm
If it's on the D-drive of the azure vm and 15 seconds timeout reached, I would open a case with Azure support !
October 26, 2021 at 12:40 pm
on top of the other replies:
Only a log backup marks the log file entries to be overwritten except for open transactions.
DO NOT SHRINK LOG FILES ! ( unless you performed...
October 26, 2021 at 11:21 am
Check http://sqlconjuror.com/sql-server-always-on-monitoring-script/
and
https://solutioncenter.apexsql.com/performance-monitoring-of-alwayson-availability-groups-part-1/
October 26, 2021 at 11:14 am
have the user reboot his client pc.
Be wary for stored credentials
October 26, 2021 at 11:12 am
indeed, Jeff.
Default trace only last so long ...
October 26, 2021 at 11:09 am
Check the comments at SQLSkills article CHECKDB From Every Angle: Using DBCC PAGE to find what repair will delete
October 26, 2021 at 11:00 am
Check sqlserver errorlogs ! ( of all involved instances ! )
Check the cluster logs !
what is the state of your servers ?
Why did it fail over ?
Is it only the...
October 25, 2021 at 9:45 am
SQL2005 doesn't have XE!
Check your default trace file or run a trace to figure it out !
October 25, 2021 at 5:45 am
Did you try this ?
Select *
, stuff(
(
select rtrim(T2.postcd) + ', '
...
October 20, 2021 at 12:10 pm
what is the actual error and error message you are receiving ?
October 20, 2021 at 11:51 am
Everything except OS and backup related.
October 19, 2021 at 8:04 am
Viewing 15 posts - 721 through 735 (of 7,472 total)