Skip to main content
Solved

deconfigured SQL agent report

  • October 17, 2022
  • 1 reply
  • 89 views

Forum|alt.badge.img+9

What report can I run show deconfigured SQL agents from the java console ?

 

 

Best answer by christopherlecky

You may have to roll your own using a dataset.

The query would look something like so.

use commserv 
SELECT [cl].[ClientName] as 'clientName',
[cl].Id as 'clientId'
FROM [dbo].[CNClientInfoView] as cl WITH(NOLOCK)
INNER JOIN [dbo].[CNIDAInfoView]as iDa WITH(NOLOCK)
ON [cl].[ID] = [iDa].[ClientID]
Where [iDa].[AppTypeID] = 81 AND [iDa].[Status] = 2
ORDER by clientName;

 

Reference this post by @Amanda Tesla  for information on how to create your own report. 

1 reply

christopherlecky
Explorer
Forum|alt.badge.img+16

You may have to roll your own using a dataset.

The query would look something like so.

use commserv 
SELECT [cl].[ClientName] as 'clientName',
[cl].Id as 'clientId'
FROM [dbo].[CNClientInfoView] as cl WITH(NOLOCK)
INNER JOIN [dbo].[CNIDAInfoView]as iDa WITH(NOLOCK)
ON [cl].[ID] = [iDa].[ClientID]
Where [iDa].[AppTypeID] = 81 AND [iDa].[Status] = 2
ORDER by clientName;

 

Reference this post by @Amanda Tesla  for information on how to create your own report.