Skip to content

Commit 00b0083

Browse files
authored
Small changes
1 parent d8106e3 commit 00b0083

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/sql-database/sql-database-release-notes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ The following features are enabled in Managed instance deployment model in H1 20
7474
|---------|---------|---------|---------|
7575
|[Limitation of manual failover via portal for failover groups](#limitation-of-manual-failover-via-portal-for-failover-groups)|Jan 2020|Has Workaround||
7676
|[SQL Agent roles need explicit EXECUTE permissions for non-sysadmin logins](#in-memory-oltp-memory-limits-are-not-applied)|Dec 2019|Has Workaround||
77-
|[SQL Agent jobs can be interrupted by Agent process restart](#sql-agent-jobs-can-be-interrupted-by-agent-process-restart)|Dec 2019|No Workaround||
77+
|[SQL Agent jobs can be interrupted by Agent process restart](#sql-agent-jobs-can-be-interrupted-by-agent-process-restart)|Dec 2019|No Workaround|Mar 2020|
7878
|[AAD logins and users are not supported in SSDT](#aad-logins-and-users-are-not-supported-in-ssdt)|Nov 2019|No Workaround||
7979
|[In-memory OLTP memory limits are not applied](#in-memory-oltp-memory-limits-are-not-applied)|Oct 2019|Has Workaround||
8080
|[Wrong error returned while trying to remove a file that is not empty](#wrong-error-returned-while-trying-to-remove-a-file-that-is-not-empty)|Oct 2019|Has Workaround||
@@ -203,10 +203,10 @@ You can [identify the number of remaining files](https://medium.com/azure-sqldb-
203203

204204
Several system views, performance counters, error messages, XEvents, and error log entries display GUID database identifiers instead of the actual database names. Don't rely on these GUID identifiers because they're replaced with actual database names in the future.
205205

206-
**Workaround**: Use sys.databases view to map physical to logical name
206+
**Workaround**: Use sys.databases view to resolve actual database name from the physical database name, specified in form of GUID database identifiers
207207

208208
```tsql
209-
SELECT name, physical_database_name, *
209+
SELECT name as ActualDatabaseName, physical_database_name as GUIDDatabaseIdentifier
210210
FROM sys.databases
211211
WHERE database_id > 4
212212
```

0 commit comments

Comments
 (0)