You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/sql-database/sql-database-release-notes.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,8 +44,6 @@ This article lists SQL Database features that are currently in public preview. F
44
44
| <ahref="https://aka.ms/managed-instance-aadlogins">Instance-level Azure AD server principals (logins)</a> | Create server-level logins using <ahref="https://docs.microsoft.com/sql/t-sql/statements/create-login-transact-sql?view=azuresqldb-mi-current">CREATE LOGIN FROM EXTERNAL PROVIDER</a> statement. |
45
45
|[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). |
46
46
| 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
-
| |
49
47
50
48
---
51
49
@@ -89,7 +87,7 @@ The following features are enabled in Managed instance deployment model in H1 20
89
87
|[Temporary database is used during RESTORE operation](#temporary-database-is-used-during-restore-operation)||Has Workaround||
90
88
|[TEMPDB structure and content is re-created](#tempdb-structure-and-content-is-re-created)||No Workaround||
91
89
|[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||
|[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||
95
93
|[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-
205
203
206
204
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.
207
205
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
+
208
214
### Error logs aren't persisted
209
215
210
216
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