Skip to content

Commit d8106e3

Browse files
authored
Small improvement
1 parent 9e761f9 commit d8106e3

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ This article lists SQL Database features that are currently in public preview. F
4444
| <a href="https://aka.ms/managed-instance-aadlogins">Instance-level Azure AD server principals (logins)</a> | Create server-level logins using <a href="https://docs.microsoft.com/sql/t-sql/statements/create-login-transact-sql?view=azuresqldb-mi-current">CREATE LOGIN FROM EXTERNAL PROVIDER</a> statement. |
4545
| [Transactional Replication](sql-database-managed-instance-transactional-replication.md) | Replicate the changes from your tables into other databases placed on Managed Instances, Single Databases, or SQL Server instances, or update your tables when some rows are changed in other Managed Instances or SQL Server instance. For information, see [Configure replication in an Azure SQL Database managed instance database](replication-with-sql-database-managed-instance.md). |
4646
| Threat detection |For information, see [Configure threat detection in Azure SQL Database managed instance](sql-database-managed-instance-threat-detection.md).|
47-
| Recreate dropped databases with managed instances |For information, see [Re-create dropped databases in Azure SQL Managed Instance](https://medium.com/azure-sqldb-managed-instance/re-create-dropped-databases-in-azure-sql-managed-instance-dc369ed60266).|
48-
| &nbsp; |
4947

5048
---
5149

@@ -89,7 +87,7 @@ The following features are enabled in Managed instance deployment model in H1 20
8987
|[Temporary database is used during RESTORE operation](#temporary-database-is-used-during-restore-operation)||Has Workaround||
9088
|[TEMPDB structure and content is re-created](#tempdb-structure-and-content-is-re-created)||No Workaround||
9189
|[Exceeding storage space with small database files](#exceeding-storage-space-with-small-database-files)||Has Workaround||
92-
|[GUID values shown instead of database names](#guid-values-shown-instead-of-database-names)||No Workaround||
90+
|[GUID values shown instead of database names](#guid-values-shown-instead-of-database-names)||Has Workaround||
9391
|[Error logs aren't persisted](#error-logs-arent-persisted)||No Workaround||
9492
|[Transaction scope on two databases within the same instance isn't supported](#transaction-scope-on-two-databases-within-the-same-instance-isnt-supported)||Has Workaround||
9593
|[CLR modules and linked servers sometimes can't reference a local IP address](#clr-modules-and-linked-servers-sometimes-cant-reference-a-local-ip-address)||Has Workaround||
@@ -205,6 +203,14 @@ You can [identify the number of remaining files](https://medium.com/azure-sqldb-
205203

206204
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.
207205

206+
**Workaround**: Use sys.databases view to map physical to logical name
207+
208+
```tsql
209+
SELECT name, physical_database_name, *
210+
FROM sys.databases
211+
WHERE database_id > 4
212+
```
213+
208214
### Error logs aren't persisted
209215

210216
Error logs that are available in managed instance aren't persisted, and their size isn't included in the maximum storage limit. Error logs might be automatically erased if failover occurs. There might be gaps in the error log history because Managed Instance was moved several times on several virtual machines.

0 commit comments

Comments
 (0)