Skip to content

Commit 19f2faa

Browse files
committed
bulk fix multiple asterisks
1 parent e3e42c8 commit 19f2faa

23 files changed

Lines changed: 44 additions & 44 deletions

docs/2014/database-engine/configure-windows/register-a-service-principal-name-for-kerberos-connections.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ SELECT auth_scheme FROM sys.dm_exec_connections WHERE session_id = @@spid ;
6565

6666
**Named instance**
6767

68-
- *MSSQLSvc/FQDN*:[*port***|***instancename*], where:
68+
- *MSSQLSvc/FQDN*:[*port**_|_**instancename*], where:
6969

7070
- *MSSQLSvc* is the service that is being registered.
7171

@@ -77,7 +77,7 @@ SELECT auth_scheme FROM sys.dm_exec_connections WHERE session_id = @@spid ;
7777

7878
**Default instance**
7979

80-
- *MSSQLSvc/FQDN*:*port***|***MSSQLSvc/FQDN*, where:
80+
- *MSSQLSvc/FQDN*:*port**_|_**MSSQLSvc/FQDN*, where:
8181

8282
- *MSSQLSvc* is the service that is being registered.
8383

docs/2014/database-engine/configure-windows/remote-servers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ manager: craigg
5151
> When possible, use Windows Authentication.
5252
5353
### Remote Server Security Example
54-
Consider these [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] installations: **serverSend** and **serverReceive**. **serverReceive** is configured to map an incoming login from **serverSend**, called **Sales_Mary**, to a [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] authenticated login in **serverReceive**, called **Alice**. Another incoming login from **serverSend**, called **Joe**, is mapped to a [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] authenticated login in **serverReceive***,* called **Joe**.
54+
Consider these [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] installations: **serverSend** and **serverReceive**. **serverReceive** is configured to map an incoming login from **serverSend**, called **Sales_Mary**, to a [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] authenticated login in **serverReceive**, called **Alice**. Another incoming login from **serverSend**, called **Joe**, is mapped to a [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] authenticated login in **serverReceive**_,_ called **Joe**.
5555

5656
The following Transact-SQL code example configures `serverSend` to perform RPCs against `serverReceive`.
5757

docs/2014/database-engine/configure-windows/run-sql-server-with-or-without-a-network.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ manager: craigg
4343

4444
When connecting to an instance of a stand-alone [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] from a local client such as **sqlcmd**, you bypass the network and connect directly to the instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] by using a local pipe. The difference between a local pipe and a network pipe is whether you are using a network. Both local and network pipes establish a connection with an instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] by using the standard pipe (\\\\.\pipe\sql\query), unless otherwise directed.
4545

46-
When you connect to an instance of a local [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] without specifying a server name, you are using a local pipe. When you connect to an instance of a local [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] and specify a server name explicitly, you are using either a network pipe or another network interprocess communication (IPC) mechanism, such as Internetwork Packet Exchange/Sequenced Packet Exchange (IPX/SPX) (assuming you have configured [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] to use multiple networks). Because a stand-alone [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] does not support network pipes, you must omit the unnecessary **/***<Server_name>* argument when connecting to the instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] from a client. For example, to connect to a stand-alone instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] from **osql**, type:
46+
When you connect to an instance of a local [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] without specifying a server name, you are using a local pipe. When you connect to an instance of a local [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] and specify a server name explicitly, you are using either a network pipe or another network interprocess communication (IPC) mechanism, such as Internetwork Packet Exchange/Sequenced Packet Exchange (IPX/SPX) (assuming you have configured [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] to use multiple networks). Because a stand-alone [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] does not support network pipes, you must omit the unnecessary **/**_<Server_name>_ argument when connecting to the instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] from a client. For example, to connect to a stand-alone instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] from **osql**, type:
4747

4848
**osql /Usa /P** *\<saPassword>*
4949

docs/2014/database-engine/save-your-work-in-table-designer-visual-database-tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ manager: craigg
2222

2323
1. Click anywhere in the Table Designer.
2424

25-
2. From the **File** menu, choose **Save***tablename*.
25+
2. From the **File** menu, choose **Save**_tablename_.
2626

2727
3. In the **Save** dialog box, click **Yes** to update the database.
2828

docs/2014/relational-databases/backup-restore/recover-a-database-without-restoring-data-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ RESTORE DATABASE AdventureWorks2012
5757

5858
The [RESTORE](/sql/t-sql/statements/restore-statements-transact-sql) syntax for a recovery-only file restore is:
5959

60-
RESTORE DATABASE *database_name* { FILE **=***logical_file_name* | FILEGROUP **=***logical_filegroup_name* }[ **,**...*n* ] WITH RECOVERY
60+
RESTORE DATABASE *database_name* { FILE **=**_logical_file_name_ | FILEGROUP **=**_logical_filegroup_name_ }[ **,**...*n* ] WITH RECOVERY
6161

6262
**Example**
6363

docs/2014/relational-databases/backup-restore/recover-to-a-log-sequence-number-sql-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ manager: craigg
5858
## Transact-SQL Syntax for Restoring to an LSN
5959
By using a [RESTORE](/sql/t-sql/statements/restore-statements-transact-sql) statement, you can stop at or immediately before the LSN, as follows:
6060

61-
- Use the WITH STOPATMARK **='**lsn:*<lsn_number>***'** clause, where lsn:*\<lsnNumber>* is a string that specifies that the log record that contains the specified LSN is the recovery point.
61+
- Use the WITH STOPATMARK **='**lsn:_<lsn_number>_**'** clause, where lsn:*\<lsnNumber>* is a string that specifies that the log record that contains the specified LSN is the recovery point.
6262

6363
STOPATMARK roll forwards to the LSN and includes that log record in the roll forward.
6464

65-
- Use the WITH STOPBEFOREMARK **='**lsn:*<lsn_number>***'** clause, where lsn:*\<lsnNumber>* is a string that specifies that the log record immediately before the log record that contains the specified LSN number is the recovery point.
65+
- Use the WITH STOPBEFOREMARK **='**lsn:_<lsn_number>_**'** clause, where lsn:*\<lsnNumber>* is a string that specifies that the log record immediately before the log record that contains the specified LSN number is the recovery point.
6666

6767
STOPBEFOREMARK rolls forward to the LSN and excludes that log record from the roll forward.
6868

docs/2014/relational-databases/databases/revert-a-database-to-a-database-snapshot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ manager: craigg
9393

9494
A revert operation requires RESTORE DATABASE permissions on the source database. To revert the database, use the following Transact-SQL statement:
9595

96-
RESTORE DATABASE *database_name* FROM DATABASE_SNAPSHOT **=***database_snapshot_name*
96+
RESTORE DATABASE *database_name* FROM DATABASE_SNAPSHOT **=**_database_snapshot_name_
9797

9898
Where *database_name* is the source database and *database_snapshot_name* is the name of the snapshot to which you want to revert the database. Notice that in this statement, you must specify a snapshot name rather than a backup device.
9999

docs/2014/relational-databases/indexes/rename-indexes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ manager: craigg
6060

6161
7. Click **Close**.
6262

63-
8. On the **File** menu, click **Save***table_name*.
63+
8. On the **File** menu, click **Save**_table_name_.
6464

6565
#### To rename an index by using Object Explorer
6666

docs/2014/relational-databases/indexes/set-index-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ manager: craigg
7272

7373
7. Click **Close**.
7474

75-
8. On the **File** menu, select **Save***table_name*.
75+
8. On the **File** menu, select **Save**_table_name_.
7676

7777
#### To modify the properties of an index in Object Explorer
7878

docs/2014/relational-databases/replication/agents/replication-distribution-agent.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@ manager: craigg
8383
**-?**
8484
Prints all available parameters.
8585

86-
**-Publisher** *server_name*[**\\***i**nstance_name*]
87-
Is the name of the Publisher. Specify *server_name* for the default instance of [!INCLUDE[msCoName](../../../includes/msconame-md.md)] [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] on that server. Specify *server_name***\\***instance_name* for a named instance of [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] on that server.
86+
**-Publisher** *server_name*[**\\**_i_*nstance_name*]
87+
Is the name of the Publisher. Specify *server_name* for the default instance of [!INCLUDE[msCoName](../../../includes/msconame-md.md)] [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] on that server. Specify *server_name**_\\_**instance_name* for a named instance of [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] on that server.
8888

8989
**-PublisherDB** *publisher_database*
9090
Is the name of the Publisher database.
9191

92-
**-Subscriber** *server_name*[**\\***instance_name*]
93-
Is the name of the Subscriber. Specify *server_name* for the default instance of [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] on that server. Specify *server_name***\\***instance_name* for a named instance of [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] on that server.
92+
**-Subscriber** *server_name*[**\\**_instance_name_]
93+
Is the name of the Subscriber. Specify *server_name* for the default instance of [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] on that server. Specify *server_name**_\\_**instance_name* for a named instance of [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] on that server.
9494

9595
**-SubscriberDB** *subscriber_database*
9696
Is the name of the Subscriber database.

0 commit comments

Comments
 (0)