Skip to content

Commit

Permalink
utility release v2021.01
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-andreistefan committed Jan 31, 2021
1 parent e023323 commit ff553a7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
Binary file added releases/dbaTDPMon_v2021_1.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.10' AS [value] UNION ALL
SELECT 'common' AS [module], 'Application Version' AS [name], N'2021.01.31' 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
3 changes: 3 additions & 0 deletions source/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -1032,3 +1032,6 @@

14.01.2021
* maintenance-plan: fix backup directory creation when running under Linux

21.01.2021
* release of dbaTDPMon - v2021.01
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.01.14' 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'2021.01.31' 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 @@ -486,7 +486,7 @@ if errorlevel 1 goto install_err


:done
sqlcmd.exe -S%server% %autentif% -Q "SET NOCOUNT ON; UPDATE [dbo].[appConfigurations] SET [value] = N'2021.01.14' 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'2021.01.31' 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 ff553a7

Please sign in to comment.