Skip to content

Commit 54ee89a

Browse files
Merge pull request #35904 from MicrosoftDocs/main
Auto Publish – main to live - 2025-11-21 18:30 UTC
2 parents 72a1eb8 + ab0dd01 commit 54ee89a

11 files changed

Lines changed: 362 additions & 367 deletions

.openpublishing.redirection.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10663,7 +10663,7 @@
1066310663
{
1066410664
"source_path": "docs/sql-server/ai-artificial-intelligence-intelligent-applications.md",
1066510665
"redirect_url": "/sql/sql-server/artificial-intelligence-intelligent-applications",
10666-
"redirect_document_id": false
10666+
"redirect_document_id": false
1066710667
},
1066810668
{
1066910669
"source_path": "docs/sql-server/sql-server-privacy-ver15.md",
@@ -48005,6 +48005,21 @@
4800548005
"redirect_url": "/previous-versions/sql/2014/tools/configuration-manager/sql-full-text-filter-daemon-launcher-sql-server-configuration-manager",
4800648006
"redirect_document_id": false
4800748007
},
48008+
{
48009+
"source_path": "docs/tools/configuration-manager/sql-full-text-filter-daemon-launcher-log-on-tab.md",
48010+
"redirect_url": "/sql/tools/configuration-manager/sql-full-text-filter-daemon-launcher-sql-server-configuration-manager",
48011+
"redirect_document_id": false
48012+
},
48013+
{
48014+
"source_path": "docs/tools/configuration-manager/sql-full-text-filter-daemon-launcher-service-tab.md",
48015+
"redirect_url": "/sql/tools/configuration-manager/sql-full-text-filter-daemon-launcher-sql-server-configuration-manager",
48016+
"redirect_document_id": false
48017+
},
48018+
{
48019+
"source_path": "docs/tools/configuration-manager/sql-full-text-filter-daemon-launcher-advanced.md",
48020+
"redirect_url": "/sql/tools/configuration-manager/sql-full-text-filter-daemon-launcher-sql-server-configuration-manager",
48021+
"redirect_document_id": false
48022+
},
4800848023
{
4800948024
"source_path": "docs/2014/tools/configuration-manager/sql-native-client-11-0-configuration.md",
4801048025
"redirect_url": "/previous-versions/sql/2014/tools/configuration-manager/sql-native-client-11-0-configuration",

docs/database-engine/install-windows/install-sql-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Beginning with [!INCLUDE [sssql16-md](../../includes/sssql16-md.md)], [!INCLUDE
5959
The download location for [!INCLUDE [ssnoversion](../../includes/ssnoversion-md.md)] depends on the edition:
6060

6161
- **[!INCLUDE [ssnoversion](../../includes/ssnoversion-md.md)] Enterprise, Standard, and Express editions** are licensed for production use. For the Enterprise and Standard Editions, contact your software vendor for the installation media. You can find purchasing information and a directory of Microsoft partners on the [Microsoft licensing page](https://www.microsoft.com/licensing/product-licensing/sql-server).
62-
- If you have a volume licensing agreement, for example an [Enterprise Agreement](https://www.microsoft.com/licensing/licensing-programs/enterprise), you can download software from the [Volume Licensing Service Center (VLSC)](https://www.microsoft.com/licensing/servicecenter/default.aspx).
62+
- If you have a volume licensing agreement, for example an [Enterprise Agreement](https://www.microsoft.com/licensing/licensing-programs/enterprise), you can download software from the [Microsoft 365 admin center](https://go.microsoft.com/fwlink/p/?linkid=2024339). The software's activation wizard automatically detects an embedded product key during installation.
6363
- [Free versions](https://www.microsoft.com/sql-server/sql-server-downloads).
6464

6565
Other [!INCLUDE [ssnoversion](../../includes/ssnoversion-md.md)] components can be found here:

docs/relational-databases/system-stored-procedures/sp-refreshview-transact-sql.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: sp_refreshview updates the metadata for the specified non-schema-bo
44
author: markingmyname
55
ms.author: maghan
66
ms.reviewer: randolphwest
7-
ms.date: 06/23/2025
7+
ms.date: 11/20/2025
88
ms.service: sql
99
ms.subservice: system-objects
1010
ms.topic: "reference"
@@ -46,20 +46,22 @@ The name of the view. *@viewname* is **nvarchar**, with no default. *@viewname*
4646

4747
## Remarks
4848

49-
If a view isn't created with SCHEMABINDING, `sp_refreshview` should be run when changes are made to the objects underlying the view, which affect the definition of the view. Otherwise, the view might produce unexpected results when it's queried.
49+
If a view isn't created with `SCHEMABINDING`, `sp_refreshview` should be run when changes are made to the objects underlying the view, which affects the definition of the view. Otherwise, the view could produce unexpected results when you query it.
5050

5151
## Permissions
5252

53-
Requires ALTER permission on the view and REFERENCES permission on common language runtime (CLR) user-defined types and XML schema collections that are referenced by the view columns.
53+
Requires `ALTER` permission on the view, and `REFERENCES` permission on common language runtime (CLR) user-defined types and XML schema collections that the view columns reference.
5454

5555
## Examples
5656

57+
[!INCLUDE [article-uses-adventureworks](../../includes/article-uses-adventureworks.md)]
58+
5759
### A. Update the metadata of a view
5860

5961
The following example refreshes the metadata for the view `Sales.vIndividualCustomer`.
6062

6163
```sql
62-
USE AdventureWorks2022;
64+
USE AdventureWorks2025;
6365
GO
6466

6567
EXECUTE sp_refreshview N'Sales.vIndividualCustomer';
@@ -70,7 +72,7 @@ EXECUTE sp_refreshview N'Sales.vIndividualCustomer';
7072
Assume that the table `Person.Person` was changed in a way that would affect the definition of any views that are created on it. The following example creates a script that refreshes the metadata for all views that have a dependency on table `Person.Person`.
7173

7274
```sql
73-
USE AdventureWorks2022;
75+
USE AdventureWorks2025;
7476
GO
7577

7678
SELECT DISTINCT 'EXECUTE sp_refreshview ''' + name + ''''
@@ -87,4 +89,3 @@ WHERE so.type = 'V'
8789
- [System stored procedures (Transact-SQL)](system-stored-procedures-transact-sql.md)
8890
- [sys.sql_expression_dependencies (Transact-SQL)](../system-catalog-views/sys-sql-expression-dependencies-transact-sql.md)
8991
- [sp_refreshsqlmodule (Transact-SQL)](sp-refreshsqlmodule-transact-sql.md)
90-

docs/t-sql/includes/alter-workload-group.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: rwestMSFT
33
ms.author: randolphwest
44
ms.reviewer: dfurman
5-
ms.date: 06/10/2025
5+
ms.date: 11/20/2025
66
ms.service: sql
77
ms.topic: include
88
ms.custom:
@@ -98,7 +98,7 @@ Specifies the maximum number of simultaneous requests that are allowed to execut
9898

9999
#### GROUP_MAX_TEMPDB_DATA_MB = *value*
100100

101-
Specifies the maximum amount of space that a workload group can consume in the `tempdb` data files, in megabytes. *value* must be 0 or a positive number. Fractional values are allowed.
101+
Specifies the maximum amount of space that a workload group can consume in the `tempdb` data files, in megabytes. *value* must be 0, a positive number, or NULL. Fractional values are allowed.
102102

103103
When the value is 0, `tempdb` space allocations by sessions in the workload group are not allowed. When a value isn't set, resource governor doesn't limit `tempdb` space consumption by the workload group.
104104

@@ -108,7 +108,7 @@ When a request running in a workload group attempts to increase `tempdb` data sp
108108

109109
#### GROUP_MAX_TEMPDB_DATA_PERCENT = *value*
110110

111-
Specifies the maximum amount of space that a workload group can consume in the `tempdb` data files, in percent of the maximum `tempdb` size. For the definition of the maximum `tempdb` size, see [Percent limit configuration](../../relational-databases/resource-governor/tempdb-space-resource-governance.md#percent-limit-configuration). *value* must be in the range from 0 to 100. Fractional values are allowed.
111+
Specifies the maximum amount of space that a workload group can consume in the `tempdb` data files, in percent of the maximum `tempdb` size. For the definition of the maximum `tempdb` size, see [Percent limit configuration](../../relational-databases/resource-governor/tempdb-space-resource-governance.md#percent-limit-configuration). *value* must be in the range from 0 to 100, or NULL. Fractional values are allowed.
112112

113113
When the value is 0, `tempdb` space allocations by sessions in the workload group are not allowed. When a value isn't set, resource governor doesn't limit `tempdb` space consumption by the workload group. When `GROUP_MAX_TEMPDB_DATA_MB` is set, or when `tempdb` maximum size isn't defined, `GROUP_MAX_TEMPDB_DATA_PERCENT` has no effect.
114114

docs/t-sql/includes/create-workload-group.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: rwestMSFT
33
ms.author: randolphwest
44
ms.reviewer: dfurman
5-
ms.date: 06/10/2025
5+
ms.date: 11/20/2025
66
ms.service: sql
77
ms.topic: include
88
ms.custom:
@@ -102,7 +102,7 @@ Specifies the maximum number of simultaneous requests that are allowed to execut
102102

103103
#### GROUP_MAX_TEMPDB_DATA_MB = *value*
104104

105-
Specifies the maximum amount of space that a workload group can consume in the `tempdb` data files, in megabytes. *value* must be 0 or a positive number. Fractional values are allowed.
105+
Specifies the maximum amount of space that a workload group can consume in the `tempdb` data files, in megabytes. *value* must be 0, a positive number, or NULL. Fractional values are allowed.
106106

107107
When the value is 0, `tempdb` space allocations by sessions in the workload group are not allowed. When a value isn't set, resource governor doesn't limit `tempdb` space consumption by the workload group.
108108

@@ -112,7 +112,7 @@ When a request running in a workload group attempts to increase `tempdb` data sp
112112

113113
#### GROUP_MAX_TEMPDB_DATA_PERCENT = *value*
114114

115-
Specifies the maximum amount of space that a workload group can consume in the `tempdb` data files, in percent of the maximum `tempdb` size. For the definition of the maximum `tempdb` size, see [Percent limit configuration](../../relational-databases/resource-governor/tempdb-space-resource-governance.md#percent-limit-configuration). *value* must be in the range from 0 to 100. Fractional values are allowed.
115+
Specifies the maximum amount of space that a workload group can consume in the `tempdb` data files, in percent of the maximum `tempdb` size. For the definition of the maximum `tempdb` size, see [Percent limit configuration](../../relational-databases/resource-governor/tempdb-space-resource-governance.md#percent-limit-configuration). *value* must be in the range from 0 to 100, or NULL. Fractional values are allowed.
116116

117117
When the value is 0, `tempdb` space allocations by sessions in the workload group are not allowed. When a value isn't set, resource governor doesn't limit `tempdb` space consumption by the workload group. When `GROUP_MAX_TEMPDB_DATA_MB` is set, or when `tempdb` maximum size isn't defined, `GROUP_MAX_TEMPDB_DATA_PERCENT` has no effect.
118118

0 commit comments

Comments
 (0)