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

Commit 8fc981a

Browse files
committed
Fix more code blocks 2
1 parent 9bc11a1 commit 8fc981a

27 files changed

Lines changed: 34 additions & 39 deletions

File tree

docs/database-engine/service-broker/handling-service-broker-error-messages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Service Broker applications can communicate errors by using either system-define
2828

2929
Use the WITH ERROR clause of the END CONVERSATION statement to report application errors that are severe enough to require ending the conversation. For example:
3030

31-
```
31+
```sql
3232
END CONVERSATION @ConversationHandle
3333
WITH ERROR = 1234 DESCRIPTION = "The account specified in the invoice does not exist, verify the account number."
3434
```

docs/database-engine/service-broker/how-to-activate-service-broker-message-delivery-in-databases-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ By default, Service Broker message delivery is active in a database when the dat
2525

2626
## Example
2727

28-
```
28+
```sql
2929
USE master ;
3030
GO
3131

docs/database-engine/service-broker/how-to-activate-service-broker-message-forwarding-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Message forwarding allows an instance of SQL Server to accept messages from outs
2626

2727

2828

29-
```
29+
```sql
3030
USE master ;
3131
GO
3232

docs/database-engine/service-broker/how-to-activate-service-broker-networking-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Service Broker does not send or receive messages over the network by default. To
2929

3030

3131

32-
```
32+
```sql
3333
USE master;
3434
GO
3535

docs/database-engine/service-broker/how-to-allow-service-broker-network-access-by-using-certificates-transact-sql.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Once access is configured in each instance, then communications between the two
4646

4747

4848

49-
```
49+
```sql
5050
USE master ;
5151
GO
5252

@@ -79,7 +79,6 @@ Once access is configured in each instance, then communications between the two
7979
BACKUP CERTIFICATE TransportSecurity
8080
TO FILE = 'C:\Certificates\ThisInstanceCertificate.cer' ;
8181
GO
82-
```
8382

8483
## See Also
8584

docs/database-engine/service-broker/how-to-allow-service-broker-network-access-by-using-windows-authentication-transact-sql.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,9 @@ Once access is configured in each instance, then communications between the two
2727
> [!NOTE]
2828
> If both instances run as the same domain account, then the instances can always communicate using Windows Authentication for transport security. If the instances run as the **LocalSystem** account, the login name is MachineName$, and Kerberos must be available on the network to use the machine account.
2929
30-
3130
## Example
3231

33-
34-
35-
```
32+
```sql
3633
USE master ;
3734
GO
3835

@@ -49,5 +46,4 @@ Once access is configured in each instance, then communications between the two
4946

5047
[CREATE LOGIN (Transact-SQL)](../../t-sql/statements/create-login-transact-sql.md)
5148

52-
[CREATE USER (Transact-SQL)](../../t-sql/statements/create-user-transact-sql.md)
53-
49+
[CREATE USER (Transact-SQL)](../../t-sql/statements/create-user-transact-sql.md)

docs/database-engine/service-broker/how-to-configure-initiating-services-for-anonymous-dialog-security-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This example configures anonymous dialog security for conversations between the
3838

3939
[!INCLUDE [SQL Server Service Broker AdventureWorks2008R2](../../includes/service-broker-adventureworks-2008-r2.md)]
4040

41-
```
41+
```sql
4242
USE AdventureWorks2008R2 ;
4343
GO
4444

docs/database-engine/service-broker/how-to-configure-initiating-services-for-full-dialog-security-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ To make sure that an initiating service uses dialog security, you create a remot
5555

5656
[!INCLUDE [SQL Server Service Broker AdventureWorks2008R2](../../includes/service-broker-adventureworks-2008-r2.md)]
5757

58-
```
58+
```sql
5959
USE AdventureWorks2008R2 ;
6060
GO
6161

docs/database-engine/service-broker/how-to-configure-permissions-for-a-local-service-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This example configures permissions to allow BrokerApplicationUser to send messa
3232

3333
[!INCLUDE [SQL Server Service Broker AdventureWorks2008R2](../../includes/service-broker-adventureworks-2008-r2.md)]
3434

35-
```
35+
```sql
3636
USE AdventureWorks2008R2 ;
3737
GO
3838

docs/database-engine/service-broker/how-to-configure-target-services-for-anonymous-dialog-security-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ SQL Server uses dialog security for any conversation to a service for which a re
4040

4141
[!INCLUDE [SQL Server Service Broker AdventureWorks2008R2](../../includes/service-broker-adventureworks-2008-r2.md)]
4242

43-
```
43+
```sql
4444
USE AdventureWorks2008R2 ;
4545
GO
4646

0 commit comments

Comments
 (0)