Skip to content

Commit 900c657

Browse files
authored
Remove 'preview' from RSC syntax descr and example
1 parent f0b4fe5 commit 900c657

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/t-sql/statements/alter-database-transact-sql-set-options.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4074,7 +4074,7 @@ Updates the timestamp for an existing warehouse snapshot in Fabric Data Warehous
40744074

40754075
#### RESULT_SET_CACHING
40764076

4077-
Enables or disables result set caching (preview) for the target item. During preview, the default setting of this feature is `OFF`. For more information, see [Result set caching](/fabric/data-warehouse/result-set-caching).
4077+
Enables or disables result set caching for the target item. The default setting of this feature is `ON`. For more information, see [Result set caching](/fabric/data-warehouse/result-set-caching).
40784078

40794079
#### PROACTIVE_STATISTICS_REFRESH
40804080

@@ -4102,15 +4102,15 @@ To check the current status of Delta Lake Log publishing on all warehouses, of y
41024102
SELECT [name], [DATA_LAKE_LOG_PUBLISHING_DESC] FROM sys.databases;
41034103
```
41044104

4105-
### B. Set and check result set caching (preview)
4105+
### B. Set and check result set caching
41064106

4107-
The following T-SQL command will enable the item `MyDataWarehouse` to begin creating and applying result set cache (preview) to applicable `SELECT` queries. For more information, see [Result set caching](/fabric/data-warehouse/result-set-caching).
4107+
The following T-SQL command will enable the item `MyDataWarehouse` to begin creating and applying result set cache to applicable `SELECT` queries. For more information, see [Result set caching](/fabric/data-warehouse/result-set-caching).
41084108

41094109
```sql
41104110
ALTER DATABASE [MyDataWarehouse] SET RESULT_SET_CACHING ON;
41114111
```
41124112

4113-
The column `is_result_set_caching_on` from [sys.databases](../../relational-databases/system-catalog-views/sys-databases-transact-sql.md?view=fabric&preserve-view=true) can then be checked to confirm that result set caching (preview) has been enabled.
4113+
The column `is_result_set_caching_on` from [sys.databases](../../relational-databases/system-catalog-views/sys-databases-transact-sql.md?view=fabric&preserve-view=true) can then be checked to confirm that result set caching has been enabled.
41144114

41154115
```sql
41164116
SELECT [name], [is_result_set_caching_on] FROM sys.databases;

0 commit comments

Comments
 (0)