Skip to content

Commit

Permalink
release of dbaTDPMon - v2022.02
Browse files Browse the repository at this point in the history
  • Loading branch information
rentadba committed Feb 20, 2022
1 parent 282f739 commit b610e63
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
Binary file added releases/dbaTDPMon_v2022_2.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion source/common/tables/dbo.appConfigurations.sql
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ GO
SET NOCOUNT ON
GO
INSERT INTO [dbo].[appConfigurations] ([module], [name], [value])
SELECT 'common' AS [module], 'Application Version' AS [name], N'2021.01.31' AS [value] UNION ALL
SELECT 'common' AS [module], 'Application Version' AS [name], N'2022.02.20' AS [value] UNION ALL
SELECT 'common' AS [module], 'Default project code' AS [name], '$(projectCode)' AS [value] UNION ALL
SELECT 'common' AS [module], 'Database Mail profile name to use for sending emails' AS [name], NULL AS [value] UNION ALL
SELECT 'common' AS [module], 'Default recipients list - Reports (semicolon separated)' AS [name], NULL AS [value] UNION ALL
Expand Down
8 changes: 8 additions & 0 deletions source/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -1056,3 +1056,11 @@
#### January 2022 new features & fixes
31.01.2021
* health-check: add more details for AlwaysOn Availability Group collected information

------------
#### February 2022 new features & fixes
20.02.2021
* health-check: add AlwaysOn Availability Group details into the health check report
* health-check: collect database backup information taken with other tools then dbaTDPMon (enhance Backup Size details in the HTML report)
* health-check: fixed minor bugs on data collection
* release of dbaTDPMon - v2022.02
2 changes: 1 addition & 1 deletion source/setup/install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ goto done


:done
sqlcmd.exe -S%server% %autentif% -Q "SET NOCOUNT ON; UPDATE [dbo].[appConfigurations] SET [value] = N'2021.02.22' WHERE [module] = 'common' AND [name] = 'Application Version'" -d %dbname% -b -r 1
sqlcmd.exe -S%server% %autentif% -Q "SET NOCOUNT ON; UPDATE [dbo].[appConfigurations] SET [value] = N'2022.02.20' WHERE [module] = 'common' AND [name] = 'Application Version'" -d %dbname% -b -r 1
if errorlevel 1 goto install_err

echo *-----------------------------------------------------------------------------*
Expand Down
2 changes: 1 addition & 1 deletion source/setup/update.bat
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ if errorlevel 1 goto install_err


:done
sqlcmd.exe -S%server% %autentif% -Q "SET NOCOUNT ON; UPDATE [dbo].[appConfigurations] SET [value] = N'2021.02.22' WHERE [module] = 'common' AND [name] = 'Application Version'" -d %dbname% -b -r 1
sqlcmd.exe -S%server% %autentif% -Q "SET NOCOUNT ON; UPDATE [dbo].[appConfigurations] SET [value] = N'2022.02.20' WHERE [module] = 'common' AND [name] = 'Application Version'" -d %dbname% -b -r 1
if errorlevel 1 goto install_err

echo *-----------------------------------------------------------------------------*
Expand Down

0 comments on commit b610e63

Please sign in to comment.