Comments
Sort by recent activity
Hi jchorlton,
Thanks very much for your post in the Redgate forums.
I have let the Product Manager know about this post to further its views within Redgate. / comments
Hi jchorlton,
Thanks very much for your post in the Redgate forums.
I have let the Product Manager know about this post to further its views within Redgate.
Jolin,
Thanks for posting on the Redgate forums.
The link in your post is to the new SQL monitor 5 documentation due out for release shortly.
Here is a link to the SQL Monitor 4 page. http://documentation.red-gate.com/display/SM4/Adding+servers+to+monitor
You should be able to try [clustername][standaloneinstancename] The integration isn't going to be as good as the new V5 though as a lot of work has gone into upgrading this.
Let me know if you still can't get the standalone instance added. / comments
Jolin,
Thanks for posting on the Redgate forums.
The link in your post is to the new SQL monitor 5 documentation due out for release shortly.
Here is a link to the SQL Monitor 4 page. http://docume...
RofL,
Thanks for using the Redgate forums.
I have attached a script which might get you some of what you want.
You can add a line at the bottom
WHERE Cluster_SqlServer_Error_Text LIKE '%objectname%'
to filter only the lines containing the object name. The object names are held within the full message so it would require further manipulation to get what you need I think. Let me know if you need any further assistance. USE RedGateMonitor
GO
WITH CteDeadlockHeads
AS (SELECT TOP 100000
IdCollectionDate
, Cluster_SqlServer_Error_ProcessInfo
, CollectionDate
, Cluster_Name
, Cluster_SqlServer_Name
, Cluster_SqlServer_Error_LogDate
FROM [data].[Cluster_SqlServer_Error_Instances_View]
WHERE Cluster_SqlServer_Error_Text LIKE 'deadlock-list%'
OR Cluster_SqlServer_Error_Text LIKE 'Deadlock encountered%')
SELECT b.Id
, b.IdCollectionDate
, b.Cluster_SqlServer_Error_ProcessInfo
, b.Cluster_SqlServer_Error_Text
, b.CollectionDate
, b.CollectionDate_DateTime
, b.Cluster_Name
, b.Cluster_SqlServer_Name
, b.Cluster_SqlServer_Error_LogDate
, b.Cluster_SqlServer_Error_LogDate_DateTime
, b.Cluster_SqlServer_Error_SequenceNumber
FROM CteDeadlockHeads a
INNER JOIN [data].[Cluster_SqlServer_Error_Instances_View] b
ON b.Cluster_Name = a.Cluster_Name
AND b.Cluster_SqlServer_Error_LogDate = a.Cluster_SqlServer_Error_LogDate
AND b.IdCollectionDate = a.IdCollectionDate
AND b.Cluster_SqlServer_Error_ProcessInfo = a.Cluster_SqlServer_Error_ProcessInfo
/ comments
RofL,
Thanks for using the Redgate forums.
I have attached a script which might get you some of what you want.
You can add a line at the bottom
WHERE Cluster_SqlServer_Error_Text LIKE '%objectname%...
PDinCA,
Thanks for your forum post.
The current release of SQL Backup (v7.7) should work with CTP 2.4.
Are you attempting to install across the network? Are you able to run the server component installer on the machine locally?
To do a local install navigate to the install directory of SQL Backup where the UI is installed and copy the file SQBServerSetup.exe onto the server running SQL. You can then run this on the server where needed. Let me know how you get on with this and whether you are still having issues / comments
PDinCA,
Thanks for your forum post.
The current release of SQL Backup (v7.7) should work with CTP 2.4.
Are you attempting to install across the network? Are you able to run the server component in...
DJ Wilson,
Thanks for contacting Redgate.
You can find further information on your specific SQL Monitor error at the following link. http://documentation.red-gate.com/display/SM4/Monitoring+status+explained
As for the general uptime, this would really depend on the company and any contract's in place. When I was DBA'ing we had contracts with customers specifying 99.989% uptime. This would give you a 45-minute maintenance window each month. So you're probably correct that you want to be near 100% without maintenance or disaster recovery.
If you need further assistance diagnosing the SQL monitor issues please let me know. / comments
DJ Wilson,
Thanks for contacting Redgate.
You can find further information on your specific SQL Monitor error at the following link. http://documentation.red-gate.com/display/SM4/Monitoring+status+...
wullsy,
Did you edit the date range at the top of the script? -- SET THESE THINGS --
SET @startDateUtc = utils.DateTimeToTicks('2014-01-06');
SET @endDateUtc = utils.DateTimeToTicks('2014-01-07');
-- END SET THESE THINGS --
This should be edited to show the date range you would like to report on. This should be accurate to 5 seconds. Let me know how you get on when you try this.
Regards
Dan Bainbridge / comments
wullsy,
Did you edit the date range at the top of the script?-- SET THESE THINGS --
SET @startDateUtc = utils.DateTimeToTicks('2014-01-06');
SET @endDateUtc = utils.DateTimeToTicks('2014-01-07');
-...
Hi RVO,
I have passed on some troubleshooting steps via email. Please let me know if you don't receive this. / comments
Hi RVO,
I have passed on some troubleshooting steps via email. Please let me know if you don't receive this.
Hi mlukas,
This issue has been resolved since version 3.1.2.765 which was released this week.
This can be downloaded from the below link ftp://support.red-gate.com/patches/SQLD ... .2.765.zip / comments
Hi mlukas,
This issue has been resolved since version 3.1.2.765 which was released this week.
This can be downloaded from the below link ftp://support.red-gate.com/patches/SQLD ... .2.765.zip
Hi Blambers, Whilst we did create a feature request for this we have taken the decision not add this feature to the product. Work is continuing on issues but the decision has been made that this issue is not a necessary addition at this time and there isn't enough demand to add it.The feature request remains open so this can be reviewed in the future. / comments
Hi Blambers,Whilst we did create a feature request for this we have taken the decision not add this feature to the product. Work is continuing on issues but the decision has been made that this iss...