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

Commit 3335fdc

Browse files
author
Bruce Hamilton
committed
Merge branch 'master' of https://github.com/Microsoft/sql-docs-pr into vbruham_sptopics_combine
2 parents 1ba0146 + 38e40c0 commit 3335fdc

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

docs/linux/sql-server-linux-security-get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ GRANT ALTER ANY USER TO Jerry;
6161
GO
6262
```
6363

64-
Now the login Jerry can create more logins, and the user Jerry can create more users.
64+
Now the login Larry can create more logins, and the user Jerry can create more users.
6565

6666

6767
## Granting access with least privileges

docs/t-sql/statements/alter-database-azure-sql-database.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -270,8 +270,8 @@ ALTER DATABASE current
270270
ADD SECONDARY ON SERVER \<partner_server_name>
271271
Creates a geo-replication secondary database with the same name on a partner server, making the local database into a geo-replication primary, and begins asynchronously replicating data from the primary to the new secondary. If a database with the same name already exists on the secondary, the command fails. The command is executed on the master database on the server hosting the local database that becomes the primary.
272272

273-
WITH ALLOW_CONNECTIONS { ALL | **NO** }
274-
When ALLOW_CONNECTIONS is not specified, it is set to NO by default. If it is set ALL, it is a read-only database that allows all logins with the appropriate permissions to connect.
273+
WITH ALLOW_CONNECTIONS { **ALL** | NO }
274+
When ALLOW_CONNECTIONS is not specified, it is set to ALL by default. If it is set ALL, it is a read-only database that allows all logins with the appropriate permissions to connect.
275275

276276
WITH SERVICE_OBJECTIVE { 'S0' | 'S1' | 'S2' | 'S3" | 'S4'| 'S6'| 'S7'| 'S9'| 'S12' | 'P1' | 'P2' | 'P4'| 'P6' | 'P11' | 'P15' }
277277
When SERVICE_OBJECTIVE is not specified, the secondary database is created at the same service level as the primary database. When SERVICE_OBJECTIVE is specified, the secondary database is created at the specified level. This option supports creating geo-replicated secondaries with less expensive service levels. The SERVICE_OBJECTIVE specified must be within the same edition as the source. For example, you cannot specify S0 if the edition is premium.
@@ -369,12 +369,12 @@ MODIFY ( SERVICE_OBJECTIVE = ELASTIC_POOL ( name = pool1 ) ) ;
369369
```
370370

371371
### C. Add a Geo-Replication Secondary
372-
Creates a non-readable secondary database db1 on server `secondaryserver` of the db1 on the local server.
372+
Creates a readable secondary database db1 on server `secondaryserver` of the db1 on the local server.
373373

374374
```
375375
ALTER DATABASE db1
376376
ADD SECONDARY ON SERVER secondaryserver
377-
WITH ( ALLOW_CONNECTIONS = NO )
377+
WITH ( ALLOW_CONNECTIONS = ALL )
378378
```
379379

380380
### D. Remove a Geo-Replication Secondary

docs/t-sql/statements/set-showplan-xml-transact-sql.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "SET SHOWPLAN_XML (Transact-SQL) | Microsoft Docs"
33
ms.custom: ""
4-
ms.date: "06/10/2016"
4+
ms.date: "02/22/2018"
55
ms.prod: "sql-non-specified"
66
ms.prod_service: "database-engine, sql-database"
77
ms.service: ""
@@ -33,13 +33,13 @@ manager: "craigg"
3333
ms.workload: "On Demand"
3434
---
3535
# SET SHOWPLAN_XML (Transact-SQL)
36-
[!INCLUDE[tsql-appliesto-ss2008-asdb-xxxx-xxx-md](../../includes/tsql-appliesto-ss2008-asdb-xxxx-xxx-md.md)]
36+
[!INCLUDE[tsql-appliesto-ss2008-asdb-asdw-xxx-md](../../includes/tsql-appliesto-ss2008-asdb-asdw-xxx-md.md)]
3737

3838
Causes [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] not to execute [!INCLUDE[tsql](../../includes/tsql-md.md)] statements. Instead, [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] returns detailed information about how the statements are going to be executed in the form of a well-defined XML document
3939

4040
![Topic link icon](../../database-engine/configure-windows/media/topic-link.gif "Topic link icon") [Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md)
4141

42-
## Syntax
42+
## Syntax
4343

4444
```
4545

0 commit comments

Comments
 (0)