Skip to content

Commit 7d09688

Browse files
v2.7.6
1 parent cf59f62 commit 7d09688

File tree

9 files changed

+28
-13
lines changed

9 files changed

+28
-13
lines changed

.github/workflows/gallery.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Test version in Gallery
22
on:
33
workflow_dispatch:
44
push:
5-
# branches: # Removed to apply to all branches
6-
# - master
5+
branches-ignore:
6+
- master
77
tags-ignore:
88
- '**'
99
paths-ignore:

.github/workflows/integration-tests-repl.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Run Replication Tests
22
on:
33
push:
4+
branches-ignore:
5+
- master
46
tags-ignore:
57
- '**'
68
paths-ignore:

.github/workflows/integration-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Run Cross Platform Tests
22
on:
33
push:
4+
branches-ignore:
5+
- master
46
tags-ignore:
57
- '**'
68
paths-ignore:

.github/workflows/xplat-import.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Cross Platform Import
22
on:
33
push:
4+
branches-ignore:
5+
- master
46
tags-ignore:
57
- '**'
68
paths-ignore:

appveyor.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ configuration: "Debug"
55
# skip PR builds when there's already a push build
66
skip_branch_with_pr: true
77

8+
# skip builds on master branch (archival branch)
9+
branches:
10+
except:
11+
- master
12+
813
# skip tag commits entirely
914
skip_tags: true
1015

bin/dbatools-index.json

5.54 KB
Binary file not shown.

bin/diagnosticquery/SQLServerDiagnosticQueries_2025.sql

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
-- SQL Server 2025 Diagnostic Information Queries
33
-- Glenn Berry
4-
-- Last Modified: September 10, 2025
4+
-- Last Modified: September 17, 2025
55
-- https://glennsqlperformance.com/
66
-- https://sqlserverperformance.wordpress.com/
77
-- YouTube: https://bit.ly/2PkoAM1
@@ -61,6 +61,7 @@ SELECT @@SERVERNAME AS [Server Name], @@VERSION AS [SQL Server and OS Version In
6161
-- 17.0.700.9 CTP 2.0 5-19-2025
6262
-- 17.0.800.9 CTP 2.1 6-12-2025
6363
-- 17.0.900.7 RC0 8-22-2025
64+
-- 17.0.925.4 RC1 9-16-2025
6465

6566

6667
-- How to determine the version, edition and update level of SQL Server and its components
@@ -979,15 +980,12 @@ CONVERT(DECIMAL(18,2), ds.cntr_value/1024.0) AS [Total Data File Size on Disk (M
979980
CONVERT(DECIMAL(18,2), ls.cntr_value/1024.0) AS [Total Log File Size on Disk (MB)],
980981
CONVERT(DECIMAL(18,2), lu.cntr_value/1024.0) AS [Log File Used (MB)],
981982
CAST(CAST(lu.cntr_value AS FLOAT) / CAST(ls.cntr_value AS FLOAT)AS DECIMAL(18,2)) * 100 AS [Log Used %],
982-
db.page_verify_option_desc AS [Page Verify Option], db.user_access_desc, db.state_desc, db.containment_desc,
983-
db.is_mixed_page_allocation_on,
983+
db.page_verify_option_desc AS [Page Verify Option], db.user_access_desc, db.state_desc, db.containment_desc, db.is_mixed_page_allocation_on,
984984
db.is_auto_create_stats_on, db.is_auto_update_stats_on, db.is_auto_update_stats_async_on, db.is_parameterization_forced,
985-
db.snapshot_isolation_state_desc, db.is_read_committed_snapshot_on, db.is_accelerated_database_recovery_on,
986-
db.is_auto_close_on, db.is_auto_shrink_on, db.target_recovery_time_in_seconds, db.is_cdc_enabled,
987-
db.is_published, db.is_distributor, db.is_sync_with_backup,
985+
db.snapshot_isolation_state_desc, db.is_read_committed_snapshot_on, db.is_accelerated_database_recovery_on, db.is_optimized_locking_on,
986+
db.is_query_store_on, db.target_recovery_time_in_seconds, db.is_cdc_enabled, db.is_published, db.is_distributor, db.is_sync_with_backup,
988987
db.group_database_id, db.replica_id, db.is_memory_optimized_enabled, db.is_memory_optimized_elevate_to_snapshot_on,
989-
db.delayed_durability_desc, db.is_query_store_on,
990-
db.is_temporal_history_retention_enabled, db.is_optimized_locking_on,
988+
db.delayed_durability_desc, db.is_temporal_history_retention_enabled, db.is_auto_close_on, db.is_auto_shrink_on,
991989
db.is_data_retention_enabled, db.is_ledger_on, db.is_change_feed_enabled,
992990
db.is_master_key_encrypted_by_server, db.is_encrypted, de.encryption_state, de.percent_complete, de.key_algorithm, de.key_length
993991
FROM sys.databases AS db WITH (NOLOCK)
@@ -1677,6 +1675,12 @@ FROM sys.database_scoped_configurations WITH (NOLOCK) OPTION (RECOMPILE);
16771675
-- https://bit.ly/2sOH7nb
16781676

16791677
-- New in SQL Server 2025
1678+
-- READABLE_SECONDARY_TEMPORARY_STATS_AUTO_CREATE
1679+
-- READABLE_SECONDARY_TEMPORARY_STATS_AUTO_UPDATE
1680+
-- OPTIMIZED_SP_EXECUTESQL
1681+
-- FULLTEXT_INDEX_VERSION
1682+
-- CE_FEEDBACK_FOR_EXPRESSIONS
1683+
-- OPTIONAL_PARAMETER_OPTIMIZATION
16801684

16811685

16821686

dbatools.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
RootModule = 'dbatools.psm1'
1212

1313
# Version number of this module.
14-
ModuleVersion = '2.7.5'
14+
ModuleVersion = '2.7.6'
1515

1616
# ID used to uniquely identify this module
1717
GUID = '9d139310-ce45-41ce-8e8b-d76335aa1789'

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ For more troubleshooting help, visit our [troubleshooting guide](https://dbatool
281281
- ⭐ Star this repository
282282
- 🐛 [Report issues](https://github.com/dataplat/dbatools/issues)
283283
- 💡 [Request features](https://github.com/dataplat/dbatools/issues)
284-
- 🤝 [Contribute code](CONTRIBUTING.md)
284+
- 🤝 [Contribute code](contributing.md)
285285

286286
**Community Channels:**
287287
- [#dbatools on SQL Community Slack](https://sqlcommunity.slack.com/messages/C1M2WEASG/)
@@ -296,7 +296,7 @@ For more troubleshooting help, visit our [troubleshooting guide](https://dbatool
296296

297297
## Contributing
298298

299-
We'd love to have you join us! Check out our [Contributing Guide](CONTRIBUTING.md) and the [dbatools-dev Slack channel](https://sqlcommunity.slack.com/messages/C3EJ852JD/).
299+
We'd love to have you join us! Check out our [Contributing Guide](contributing.md) and the [dbatools-dev Slack channel](https://sqlcommunity.slack.com/messages/C3EJ852JD/).
300300

301301
## License
302302

0 commit comments

Comments
 (0)