Skip to content

Commit 41533ed

Browse files
committed
bulk fix multiple asterisk issues
1 parent f41bea4 commit 41533ed

50 files changed

Lines changed: 87 additions & 87 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/2014/database-engine/database-mirroring/add-a-database-mirroring-witness-using-windows-authentication-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ manager: craigg
4646
4747
3. Connect to the principal server and issue the following statement:
4848
49-
ALTER DATABASE *<database_name>* SET WITNESS **=***<server_network_address>*
49+
ALTER DATABASE *<database_name>* SET WITNESS **=**_<server_network_address>_
5050
5151
where *<database_name>* is the name of the database to be mirrored (this name is the same on both partners), and *<server_network_address>* is the server network address of the witness server instance.
5252

docs/2014/relational-databases/backup-restore/back-up-files-and-filegroups-sql-server.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ manager: craigg
145145

146146
BACKUP DATABASE *database*
147147

148-
{ FILE **=***logical_file_name* | FILEGROUP **=***logical_filegroup_name* } [ **,**...*f* ]
148+
{ FILE **=**_logical_file_name_ | FILEGROUP **=**_logical_filegroup_name_ } [ **,**...*f* ]
149149

150150
TO *backup_device* [ **,**...*n* ]
151151

@@ -154,10 +154,10 @@ manager: craigg
154154
|Option|Description|
155155
|------------|-----------------|
156156
|*database*|Is the database from which the transaction log, partial database, or complete database is backed up.|
157-
|FILE **=***logical_file_name*|Specifies the logical name of a file to include in the file backup.|
158-
|FILEGROUP **=***logical_filegroup_name*|Specifies the logical name of a filegroup to include in the file backup. Under the simple recovery model, a filegroup backup is allowed only for a read-only filegroup.|
157+
|FILE **=**_logical_file_name_|Specifies the logical name of a file to include in the file backup.|
158+
|FILEGROUP **=**_logical_filegroup_name_|Specifies the logical name of a filegroup to include in the file backup. Under the simple recovery model, a filegroup backup is allowed only for a read-only filegroup.|
159159
|[ **,**...*f* ]|Is a placeholder that indicates that multiple files and filegroups may be specified. The number of files or filegroups is unlimited.|
160-
|*backup_device* [ **,**...*n* ]|Specifies a list of from 1 to 64 backup devices to use for the backup operation. You can specify a physical backup device, or you can specify a corresponding logical backup device, if already defined. To specify a physical backup device, use the DISK or TAPE option:<br /><br /> { DISK &#124; TAPE } **=***physical_backup_device_name*<br /><br /> For more information, see [Backup Devices &#40;SQL Server&#41;](backup-devices-sql-server.md).|
160+
|*backup_device* [ **,**...*n* ]|Specifies a list of from 1 to 64 backup devices to use for the backup operation. You can specify a physical backup device, or you can specify a corresponding logical backup device, if already defined. To specify a physical backup device, use the DISK or TAPE option:<br /><br /> { DISK &#124; TAPE } **=**_physical_backup_device_name_<br /><br /> For more information, see [Backup Devices &#40;SQL Server&#41;](backup-devices-sql-server.md).|
161161
|WITH *with_options* [ **,**...*o* ]|Optionally, specifies one or more additional options, such as DIFFERENTIAL.<br /><br /> Note: A differential file backup requires a full file backup as a base. For more information, see [Create a Differential Database Backup &#40;SQL Server&#41;](create-a-differential-database-backup-sql-server.md).|
162162

163163
2. Under the full recovery model, you must also back up the transaction log. To use a complete set of full file backups to restore a database, you must also have enough log backups to span all the file backups, from the start of the first file backup. For more information, see [Back Up a Transaction Log &#40;SQL Server&#41;](back-up-a-transaction-log-sql-server.md).

docs/2014/relational-databases/backup-restore/backup-devices-sql-server.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ manager: craigg
8080

8181
BACKUP DATABASE *database_name*
8282

83-
TO DISK **=** { **'***physical_backup_device_name***'** | **@***physical_backup_device_name_var* }
83+
TO DISK **=** { **'**_physical_backup_device_name_**'** | **@**_physical_backup_device_name_var_ }
8484

8585
For example:
8686

@@ -94,7 +94,7 @@ GO
9494

9595
RESTORE { DATABASE | LOG } *database_name*
9696

97-
FROM DISK **=** { **'***physical_backup_device_name***'** | **@***physical_backup_device_name_var* }
97+
FROM DISK **=** { **'**_physical_backup_device_name_**'** | **@**_physical_backup_device_name_var_ }
9898

9999
For example,
100100

@@ -130,7 +130,7 @@ GO
130130
> Backing up data over a network can be subject to network errors; therefore, we recommend that when you are using a remote disk you verify the backup operation after it finishes. For more information, see [RESTORE VERIFYONLY &#40;Transact-SQL&#41;](/sql/t-sql/statements/restore-statements-verifyonly-transact-sql).
131131
132132
#### Specifying a Universal Naming Convention (UNC) Name
133-
To specify a network share in a backup or restore command, you should use the fully qualified universal naming convention (UNC) name of the file for the backup device. A UNC name has the form **\\\\***Systemname***\\***ShareName***\\***Path***\\***FileName*.
133+
To specify a network share in a backup or restore command, you should use the fully qualified universal naming convention (UNC) name of the file for the backup device. A UNC name has the form **\\\\**_Systemname_**\\**_ShareName_**\\**_Path_**\\**_FileName_.
134134

135135
For example:
136136

@@ -168,7 +168,7 @@ GO
168168

169169
BACKUP { DATABASE | LOG } *database_name*
170170

171-
TO TAPE **=** { **'***physical_backup_device_name***'** | **@***physical_backup_device_name_var* }
171+
TO TAPE **=** { **'**_physical_backup_device_name_**'** | **@**_physical_backup_device_name_var_ }
172172

173173
For example:
174174

@@ -182,7 +182,7 @@ GO
182182

183183
RESTORE { DATABASE | LOG } *database_name*
184184

185-
FROM TAPE **=** { **'***physical_backup_device_name***'** | **@***physical_backup_device_name_var* }
185+
FROM TAPE **=** { **'**_physical_backup_device_name_**'** | **@**_physical_backup_device_name_var_ }
186186

187187
### <a name="TapeOptions"></a> Tape-Specific BACKUP and RESTORE Options (Transact-SQL)
188188
To facilitate tape management, the BACKUP statement provides the following tape-specific options:
@@ -201,7 +201,7 @@ GO
201201
### <a name="OpenTapes"></a> Managing Open Tapes
202202
To view a list of open tape devices and the status of mount requests, query the [sys.dm_io_backup_tapes](/sql/relational-databases/system-dynamic-management-views/sys-dm-io-backup-tapes-transact-sql) dynamic management view. This view shows all the open tapes. These include in-use tapes that are temporarily idle while they wait for the next BACKUP or RESTORE operation.
203203

204-
If a tape has been accidentally left open, the fastest way to release the tape is by using the following command: RESTORE REWINDONLY FROM TAPE **=***backup_device_name*. For more information, see [RESTORE REWINDONLY &#40;Transact-SQL&#41;](/sql/t-sql/statements/restore-statements-rewindonly-transact-sql).
204+
If a tape has been accidentally left open, the fastest way to release the tape is by using the following command: RESTORE REWINDONLY FROM TAPE **=**_backup_device_name_. For more information, see [RESTORE REWINDONLY &#40;Transact-SQL&#41;](/sql/t-sql/statements/restore-statements-rewindonly-transact-sql).
205205

206206
## Using the Windows Azure Blob Storage Service
207207
SQL Server Backups can be written to the Windows Azure Blob Storage Service. For more information on how to use the Windows Azure Blob storage service for your backups, see [SQL Server Backup and Restore with Windows Azure Blob Storage Service](sql-server-backup-and-restore-with-microsoft-azure-blob-storage-service.md).

docs/2014/relational-databases/native-client-odbc-extensions-bulk-copy-functions/bcp-bind.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ bcp_bind(hdbc, szName, 0,
140140
## Remarks
141141
Use **bcp_bind** for a fast, efficient way to copy data from a program variable into a table in [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)].
142142

143-
Call [bcp_init](bcp-init.md) before calling this or any other bulk-copy function. Calling **bcp_init** sets the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] target table for bulk copy. When calling **bcp_init** for use with **bcp_bind** and [bcp_sendrow](bcp-sendrow.md), the **bcp_init** *szDataFile* parameter, indicating the data file, is set to NULL; the **bcp_init***eDirection* parameter is set to DB_IN.
143+
Call [bcp_init](bcp-init.md) before calling this or any other bulk-copy function. Calling **bcp_init** sets the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] target table for bulk copy. When calling **bcp_init** for use with **bcp_bind** and [bcp_sendrow](bcp-sendrow.md), the **bcp_init** *szDataFile* parameter, indicating the data file, is set to NULL; the **bcp_init**_eDirection_ parameter is set to DB_IN.
144144

145145
Make a separate **bcp_bind** call for every column in the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] table into which you want to copy. After the necessary **bcp_bind** calls have been made, then call **bcp_sendrow** to send a row of data from your program variables to [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)]. Rebinding a column is not supported.
146146

docs/2014/relational-databases/tables/add-columns-to-a-table-database-engine.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ manager: craigg
6363
> [!NOTE]
6464
> The default values for your column properties are added when you create a new column, but you can change them in the **Column Properties** tab.
6565
66-
6. When you are finished adding columns, from the **File** menu, choose **Save***table name*.
66+
6. When you are finished adding columns, from the **File** menu, choose **Save**_table name_.
6767

6868
## <a name="TsqlProcedure"></a> Using Transact-SQL
6969

docs/2014/reporting-services/report-design/add-a-filter-report-builder-and-ssrs.md

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

2929
1. Open a report in **Design** view.
3030

31-
2. Select the data region on the design surface, and then right-click *\<data region>***Properties**. For a gauge, select **Gauge Panel Properties**. The *\<data region>***Properties** dialog box opens.
31+
2. Select the data region on the design surface, and then right-click _\<data region>_**Properties**. For a gauge, select **Gauge Panel Properties**. The _\<data region>_**Properties** dialog box opens.
3232

3333
> [!NOTE]
3434
> On a Tablix data region, right-click the corner cell or a row or column handle, and then click **Tablix Properties**.

docs/2014/ssms/agent/assign-a-job-to-a-job-category.md

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

4444
4. Right-click the job you want to edit and select **Properties**.
4545

46-
5. In the **Job Properties -***job_name* dialog box, in the **Category** list, select the job category you want to assign to the job.
46+
5. In the **Job Properties -**_job_name_ dialog box, in the **Category** list, select the job category you want to assign to the job.
4747

4848
6. Click **OK**.
4949

docs/2014/ssms/agent/assign-alerts-to-an-operator.md

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

6363
4. Right-click the operator to which you want to assign an alert and select **Properties**, and select the **Notifications** page.
6464

65-
5. In the *operator_name***Properties** dialog box, under **Select a page**, select **Notifications**.
65+
5. In the _operator_name_**Properties** dialog box, under **Select a page**, select **Notifications**.
6666

6767
6. Under **View notifications sent to this user by**, select **Alerts** to view a list of alerts sent to this operator or select **Jobs** to view a list of jobs that send notifications to this operator. Select one or more of the following checkboxes to define the notification method for each notification as necessary: **E-mail**, **Pager**, or **Net send**.
6868

docs/2014/ssms/agent/designate-a-fail-safe-operator.md

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

5555
2. Right-click **SQL Server Agent** and select **Properties**.
5656

57-
3. In the **SQL Server Agent Properties –***server_name* dialog box, under **Select a page**, select **Alert System**.
57+
3. In the **SQL Server Agent Properties –**_server_name_ dialog box, under **Select a page**, select **Alert System**.
5858

5959
4. Under **Fail-safe operator**, select **Enable fail-safe operator**.
6060

docs/2014/ssms/agent/designate-an-events-forwarding-server-sql-server-management-studio.md

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

4444
2. Right-click **SQL Server Agent** and select **Properties**.
4545

46-
3. In the **SQL Server Agent Properties –***server_name* dialog box, under **Select a page**, select **Advanced**.
46+
3. In the **SQL Server Agent Properties –**_server_name_ dialog box, under **Select a page**, select **Advanced**.
4747

4848
4. Under **SQL Server event forwarding**, select the **Forward events to a different server** check box.
4949

0 commit comments

Comments
 (0)