Viewing 15 posts - 721 through 735 (of 7,466 total)
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
AFAIK you cannot disable an index on SQL2000 !
syntax "alter INDEX myix ON myschema.mytable disable;" only works as of SQL2005 ...
And even if you can, DO NOT disable index id...
October 18, 2021 at 12:47 pm
What are you trying to do with notification services ?
Chances are you can do it more easy and less intrusive on your server / instance using Extended Events !
With...
October 18, 2021 at 12:34 pm
I hope you also realize the downsides of using that isolation level !
October 15, 2021 at 7:11 am
I used to use Notification services for this, but recently we had major down time due to an overload of connections and SSB-queues not getting processed on time.
We are now...
October 7, 2021 at 9:18 am
you need a query.
If you build a view, you have no "control" over how it gets used. I mean maybe it gets joined with in queries, ...
if you build a...
October 2, 2021 at 4:40 pm
Have you checked to use Extended Events to capture login information without having to bother for file sizes and queue sizes?
Have a job process the captured file(s) every x minutes
September 21, 2021 at 1:37 pm
Viewing 15 posts - 721 through 735 (of 7,466 total)