Skip to content

Commit 09ffa97

Browse files
committed
Updated release notes and ruleset.json
1 parent f2b9a0c commit 09ffa97

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

6 KB
Binary file not shown.

samples/manage/sql-assessment-api/release-notes.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ Download: [SMO NuGet Package](https://www.nuget.org/packages/Microsoft.SqlServer
1414

1515
You can use GitHub issues to provide feedback to the product team.
1616

17+
## March 2021 - 1.0.305
18+
19+
Version: SqlServer PowerShell module wasn't updated, SqlManagementObjects (SMO) package wasn't updated
20+
21+
### Bug fixes and improvements
22+
23+
- Fixed an issue that may cause the 'ReplErrors24H' check to fail on case-sensitive SQL Server instances with Distributor databases
24+
1725
## March 2021 - 1.0.304
1826

1927
Version: SqlServer PowerShell module wasn't updated, SqlManagementObjects (SMO) package wasn't updated

samples/manage/sql-assessment-api/ruleset.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schemaVersion": "1.0",
33
"name": "Microsoft ruleset",
4-
"version": "1.0.304",
4+
"version": "1.0.305",
55
"rules": [
66
{
77
"id": "AutoCreateStats",
@@ -8871,7 +8871,7 @@
88718871
"version": "[11.0,)"
88728872
},
88738873
"implementation": {
8874-
"query": "DECLARE @cmd NVARCHAR(max) = N''; SELECT @cmd = @cmd + N' USE ' + QUOTENAME([name]) + N'; SELECT msa.publisher_db ,msa.publication FROM dbo.MSdistribution_history AS msh INNER JOIN dbo.MSrepl_errors AS mse ON mse.id = msh.error_id INNER JOIN dbo.MSdistribution_agents AS msa ON msh.agent_id = msa.id WHERE mse.TIME >= DATEADD(hh, - 24, GETDATE()) GROUP BY msa.publisher_db ,msa.publication;' FROM [master].sys.databases WHERE is_distributor = 1; EXEC (@cmd);"
8874+
"query": "DECLARE @cmd NVARCHAR(max) = N''; SELECT @cmd = @cmd + N' USE ' + QUOTENAME([name]) + N'; SELECT msa.publisher_db ,msa.publication FROM dbo.MSdistribution_history AS msh INNER JOIN dbo.MSrepl_errors AS mse ON mse.id = msh.error_id INNER JOIN dbo.MSdistribution_agents AS msa ON msh.agent_id = msa.id WHERE mse.time >= DATEADD(hh, - 24, GETDATE()) GROUP BY msa.publisher_db ,msa.publication;' FROM [master].sys.databases WHERE is_distributor = 1; EXEC (@cmd);"
88758875
}
88768876
}
88778877
],

0 commit comments

Comments
 (0)