Viewing 15 posts - 751 through 765 (of 7,504 total)
-- was to quick --
How about:
If you are able to extract the 4-part-named object usage
create a schema e.g. [work], generate and execute a
'select * into work.[4-part-named-object] from 4-part-named-object where 0...
October 29, 2021 at 12:35 pm
I don't use automatic seeding, because I want to have control over the full process.
You can indeed restore the db on the new AG-member-to-be including the log restores ( with...
October 29, 2021 at 12:23 pm
-- 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
Viewing 15 posts - 751 through 765 (of 7,504 total)