Skip to content

Commit 5ee4781

Browse files
authored
Merge pull request #30436 from MicrosoftDocs/main
4/22/2024 AM Publish
2 parents a1e66cb + c090e56 commit 5ee4781

3 files changed

Lines changed: 12 additions & 10 deletions

File tree

azure-sql/database/sql-insights-troubleshoot.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Learn how to troubleshoot SQL Insights (preview) in Azure Monitor.
55
author: WilliamDAssafMSFT
66
ms.author: wiassaf
77
ms.reviewer: mathoma
8-
ms.date: 10/18/2022
8+
ms.date: 04/22/2024
99
ms.service: sql-db-mi
1010
ms.subservice: monitoring
1111
ms.topic: conceptual
@@ -194,8 +194,9 @@ During preview of SQL Insights, you may encounter the following known issues.
194194

195195
Using certain special characters in SQL authentication passwords saved in the monitoring VM configuration or in Key Vault may prevent the monitoring VM from connecting to a SQL server or database. This set of characters includes parentheses, square and curly brackets, the dollar sign, forward and back slashes, and dot (`[ { ( ) } ] $ \ / .`).
196196
* Spaces in the database connection string attributes may be replaced with special characters, leading to database connection failures. For example, if the space in the `User Id` attribute is replaced with a special character, connections will fail with the **Login failed for user ''** error. To resolve, edit the monitoring profile configuration, and delete every special character appearing in place of a space. Some special characters may look indistinguishable from a space, thus you may want to delete every space character, type it again, and save the configuration.
197-
* Data collection and visualization may not work if the OS computer name of the monitoring VM is different from the monitoring VM name.
197+
* Data collection and visualization might not work if the OS computer name of the monitoring VM is different from the monitoring VM name.
198198
* A message "WLI extension on this machine is below the recommended version [...]" may incorrectly appear even when the WLI extension is up to date.
199+
* Data collection and visualization might not work if the OS computer name of the VM where SQL Server is installed does not match the server name in the SQL Server metadata. For more information, see [Rename a computer that hosts a stand-alone instance of SQL Server](/sql/database-engine/install-windows/rename-a-computer-that-hosts-a-stand-alone-instance-of-sql-server).
199200

200201
## Best practices
201202

docs/relational-databases/system-tables/dbo-sysproxylogin-transact-sql.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "dbo.sysproxylogin (Transact-SQL)"
33
description: dbo.sysproxylogin (Transact-SQL)
44
author: VanMSFT
55
ms.author: vanto
6-
ms.date: "06/10/2016"
6+
ms.date: "04/19/2024"
77
ms.service: sql
88
ms.subservice: system-objects
99
ms.topic: "reference"
@@ -20,19 +20,19 @@ dev_langs:
2020
# dbo.sysproxylogin (Transact-SQL)
2121
[!INCLUDE [SQL Server](../../includes/applies-to-version/sqlserver.md)]
2222

23-
Records which [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] logins are associated with each SQL Server Agent proxy account. This table is stored in the **msdb** database.
23+
Shows which [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] logins are associated with each SQL Server Agent proxy account. This table is stored in the **msdb** database.
2424

2525
|Column name|Data type|Description|
2626
|-----------------|---------------|-----------------|
2727
|**proxy_id**|**int**|ID of the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Agent proxy account. This value corresponds to the **proxy_id** column in the **sysproxies** table.|
2828
|**sid**|**varbinary(85)**|Microsoft Windows *security_identifier* for the SQL Server login.|
29-
|**principal_id**|**int**|ID of the user or group that has permission to use the proxy account for a specified subsystem step.|
30-
|**flags**|**int**|Type of login:<br /><br /> **0** = Windows user or group, and [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] login.<br /><br /> **1** = [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] fixed system role<br /><br /> **2** = **msdb** database role|
29+
|**flags**|**int**|Type of `login`:<br /><br /> **0** = Windows user or group, and [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] login.<br /><br /> **1** = [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] fixed system role<br /><br /> **2** = **msdb** database role|
3130

3231
## Remarks
3332
Only members of the **sysadmin** fixed server role can access this table.
3433

35-
## See Also
36-
[dbo.sysproxies &#40;Transact-SQL&#41;](../../relational-databases/system-tables/dbo-sysproxies-transact-sql.md)
34+
## Related content
35+
36+
[dbo.sysproxies &#40;Transact-SQL&#41;](../../relational-databases/system-tables/dbo-sysproxies-transact-sql.md)
3737

3838

docs/relational-databases/tables/manage-retention-of-historical-data-in-system-versioned-temporal-tables.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ DECLARE @historyTableSchema SYSNAME
248248
DECLARE @periodColumnName SYSNAME
249249

250250
/*Generate script to discover history table name and end of period column for given temporal table name*/
251-
EXECUTE usp_executesql
251+
EXECUTE sp_executesql
252252
N'SELECT @hst_tbl_nm = t2.name,
253253
@hst_sch_nm = s2.name,
254254
@period_col_nm = c.name
@@ -263,7 +263,8 @@ N'@tblName sysname,
263263
@schName sysname,
264264
@hst_tbl_nm sysname OUTPUT,
265265
@hst_sch_nm sysname OUTPUT,
266-
@period_col_nm sysname OUTPUT' @tblName = @temporalTableName,
266+
@period_col_nm sysname OUTPUT',
267+
@tblName = @temporalTableName,
267268
@schName = @temporalTableSchema,
268269
@hst_tbl_nm = @historyTableName OUTPUT,
269270
@hst_sch_nm = @historyTableSchema OUTPUT,

0 commit comments

Comments
 (0)