Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit 95821ea

Browse files
Fix markdown formatting (#9953)
* Fix heading formatting on Performance (Service Broker) * Fix #ordered-columnstore-index-availability link
1 parent 43ed11e commit 95821ea

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

docs/database-engine/service-broker/performance.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ Service Broker provides a set of performance counters that provide information o
2626

2727
- [Service Broker Related Dynamic Management Views (Transact-SQL)](../../relational-databases/system-dynamic-management-views/service-broker-related-dynamic-management-views-transact-sql.md)
2828
- [SQL Server, Broker Statistics object](../../relational-databases/performance-monitor/sql-server-broker-statistics-object.md)
29-
- [Broker Event Category](../../relational-databases/event-classes/broker-event-category.md)## Tuning a Service Broker Stored Procedure
29+
- [Broker Event Category](../../relational-databases/event-classes/broker-event-category.md)
30+
31+
## Tuning a Service Broker Stored Procedure
32+
3033
For the most part, tuning a stored procedure that uses Service Broker is no different from tuning any other stored procedure. However, there are a few additional considerations.
3134

3235
First, use the WAITFOR clause. Messages seldom arrive at predictable intervals. Even in a service where messages arrive at roughly the same rate that the stored procedure processes the messages, there may be times when no messages are available. Therefore, the procedure should use a WAITFOR clause with a RECEIVE statement or with a GET CONVERSATION GROUP statement. Without WAITFOR, these statements return immediately when there are no available messages on the queue. Depending on the implementation of the stored procedure, the procedure may then loop back through the statement, consuming resources needlessly, or the procedure may exit only to be reactivated shortly thereafter, consuming more resources than simply continuing to run.

docs/relational-databases/indexes/columnstore-indexes-design-guidance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ For more information, see [Columnstore indexes in data warehousing](columnstore-
6868

6969
## Use an ordered clustered columnstore index for large data warehouse tables
7070

71-
For ordered columnstore index availability, see [Columnstore indexes: Overview](columnstore-indexes-overview.md)#ordered-columnstore-index-availability).
71+
For ordered columnstore index availability, see [Columnstore indexes: Overview](columnstore-indexes-overview.md#ordered-columnstore-index-availability).
7272

7373
Consider using an ordered clustered columnstore index in the following scenarios:
7474

0 commit comments

Comments
 (0)