Skip to content

Commit

Permalink
Add connection status to config tool
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidWiseman committed Aug 12, 2024
1 parent 0fb6b78 commit 3685299
Show file tree
Hide file tree
Showing 5 changed files with 577 additions and 109 deletions.
1 change: 1 addition & 0 deletions DBADashDB/DBADashDB.sqlproj
Original file line number Diff line number Diff line change
Expand Up @@ -736,6 +736,7 @@
<Build Include="dbo\Stored Procedures\PlanForcingLog_Get.sql" />
<Build Include="Security\AllowPlanForcing.sql" />
<Build Include="dbo\Stored Procedures\PlanForcingLog_Upd.sql" />
<Build Include="dbo\Stored Procedures\MaxCollectionDateByInstance_Get.sql" />
</ItemGroup>
<ItemGroup>
<PostDeploy Include="Script.PostDeployment1.sql" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CREATE PROC dbo.MaxCollectionDateByInstance_Get
AS
SELECT I.ConnectionID,
MAX(CD.SnapshotDate) AS MaxSnapshotDate
FROM dbo.Instances I
JOIN dbo.CollectionDates CD ON I.InstanceID = CD.InstanceID
GROUP BY I.ConnectionID
19 changes: 17 additions & 2 deletions DBADashServiceConfig/ServiceConfig.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3685299

Please sign in to comment.