Skip to content

Commit ff75b23

Browse files
author
MightyPen
committed
Replace non-ASCII characters with their ASCII counterparts. Ellipsis, N-dash, M-dash. (metadata 1387353)
1 parent e546f5c commit ff75b23

2,095 files changed

Lines changed: 4824 additions & 4824 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/2014-toc/glossary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1461,7 +1461,7 @@ manager: craigg
14611461
|sliding window|A window of fixed length L that moves along a timeline according to the stream's events. With every event on the timeline, a new window is created, starting at the event's start time.|
14621462
|slipstream|To integrate updates, patches or service packs into the base installation files of the original software, so that the resulting files will allow a single step installation of the updated software.|
14631463
|slipstream installation|A type of installation that integrates the base installation files for an operating system or program with its service packs, updates or patches, and enables them to be installed in a single step.|
1464-
|smart card|A plastic (credit cardsized or smaller) device with an embedded microprocessor and a small amount of storage that is used, with an access code, to enable certificate-based authentication. Smart cards securely store certificates, public and private keys, passwords, and other types of personal information.|
1464+
|smart card|A plastic (credit card-sized or smaller) device with an embedded microprocessor and a small amount of storage that is used, with an access code, to enable certificate-based authentication. Smart cards securely store certificates, public and private keys, passwords, and other types of personal information.|
14651465
|Smart Card Personalization Control|An ActiveX control that performs all Certificate Lifecycle Manager (CLM) smart card application management activities on a client computer.|
14661466
|smart card profile|A Certificate Lifecycle Manager (CLM) profile created when a request is performed using a profile template that only includes smart card-based certificate templates.|
14671467
|smart card reader|A device that is installed in computers to enable the use of smart cards for enhanced security features.|

docs/2014/2014-toc/sql-server-transaction-locking-and-row-versioning-guide.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ manager: craigg
128128

129129
If a run-time statement error (such as a constraint violation) occurs in a batch, the default behavior in the [!INCLUDE[ssDE](../includes/ssde-md.md)] is to roll back only the statement that generated the error. You can change this behavior using the SET XACT_ABORT statement. After SET XACT_ABORT ON is executed, any run-time statement error causes an automatic rollback of the current transaction. Compile errors, such as syntax errors, are not affected by SET XACT_ABORT. For more information, see [SET XACT_ABORT (Transact-SQL)](/sql/t-sql/statements/set-xact-abort-transact-sql).
130130

131-
When errors occur, corrective action (COMMIT or ROLLBACK) should be included in application code. One effective tool for handling errors, including those in transactions, is the [!INCLUDE[tsql](../includes/tsql-md.md)] TRYCATCH construct. For more information with examples that include transactions, see [TRY...CATCH (Transact-SQL)](/sql/t-sql/language-elements/try-catch-transact-sql). Beginning with [!INCLUDE[ssSQL11](../includes/sssql11-md.md)], you can use the THROW statement to raise an exception and transfers execution to a CATCH block of a TRYCATCH construct. For more information, see [THROW (Transact-SQL)](/sql/t-sql/language-elements/throw-transact-sql).
131+
When errors occur, corrective action (COMMIT or ROLLBACK) should be included in application code. One effective tool for handling errors, including those in transactions, is the [!INCLUDE[tsql](../includes/tsql-md.md)] TRY...CATCH construct. For more information with examples that include transactions, see [TRY...CATCH (Transact-SQL)](/sql/t-sql/language-elements/try-catch-transact-sql). Beginning with [!INCLUDE[ssSQL11](../includes/sssql11-md.md)], you can use the THROW statement to raise an exception and transfers execution to a CATCH block of a TRY...CATCH construct. For more information, see [THROW (Transact-SQL)](/sql/t-sql/language-elements/throw-transact-sql).
132132

133133
##### Compile and Run-time Errors in Autocommit mode
134134
In autocommit mode, it sometimes appears as if an instance of the [!INCLUDE[ssDE](../includes/ssde-md.md)] has rolled back an entire batch instead of just one SQL statement. This happens if the error encountered is a compile error, not a run-time error. A compile error prevents the [!INCLUDE[ssDE](../includes/ssde-md.md)] from building an execution plan, so nothing in the batch is executed. Although it appears that all of the statements before the one generating the error were rolled back, the error prevented anything in the batch from being executed. In the following example, none of the `INSERT` statements in the third batch are executed because of a compile error. It appears that the first two `INSERT` statements are rolled back when they are never executed.
@@ -432,7 +432,7 @@ GO
432432
- The **TABLOCK** hint is specified or the **table lock on bulk load** table option is set using **sp_tableoption**.
433433
434434
> [!TIP]
435-
> Unlike the BULK INSERT statement, which holds a less restrictive Bulk Update lock, INSERT INTOSELECT with the TABLOCK hint holds an exclusive (X) lock on the table. This means that you cannot insert rows using parallel insert operations.
435+
> Unlike the BULK INSERT statement, which holds a less restrictive Bulk Update lock, INSERT INTO...SELECT with the TABLOCK hint holds an exclusive (X) lock on the table. This means that you cannot insert rows using parallel insert operations.
436436
437437
#### Key-Range Locks
438438
Key-range locks protect a range of rows implicitly included in a record set being read by a [!INCLUDE[tsql](../includes/tsql-md.md)] statement while using the serializable transaction isolation level. Key-range locking prevents phantom reads. By protecting the ranges of keys between rows, it also prevents phantom insertions or deletions into a record set accessed by a transaction.
@@ -1831,7 +1831,7 @@ GO
18311831
18321832
A long running transaction can cause serious problems for a database, as follows:
18331833
1834-
- If a server instance is shut down after an active transaction has performed many uncommitted modifications, the recovery phase of the subsequent restart can take much longer than the time specified by the **recovery interval** server configuration option or by the ALTER DATABASE SET TARGET_RECOVERY_TIME option. These options control the frequency of active and indirect checkpoints, respectively. For more information about the types of checkpoints, see [Database Checkpoints (SQL Server)](../relational-databases/logs/database-checkpoints-sql-server.md).
1834+
- If a server instance is shut down after an active transaction has performed many uncommitted modifications, the recovery phase of the subsequent restart can take much longer than the time specified by the **recovery interval** server configuration option or by the ALTER DATABASE... SET TARGET_RECOVERY_TIME option. These options control the frequency of active and indirect checkpoints, respectively. For more information about the types of checkpoints, see [Database Checkpoints (SQL Server)](../relational-databases/logs/database-checkpoints-sql-server.md).
18351835
18361836
- More importantly, although a waiting transaction might generate very little log, it holds up log truncation indefinitely, causing the transaction log to grow and possibly fill up. If the transaction log fills up, the database cannot perform any more updates. For more information, see [Troubleshoot a Full Transaction Log (SQL Server Error 9002)](../relational-databases/logs/troubleshoot-a-full-transaction-log-sql-server-error-9002.md), and [The Transaction Log (SQL Server)](../relational-databases/logs/the-transaction-log-sql-server.md).
18371837

docs/2014/analysis-services/add-model-to-structure-data-mining-add-ins-for-excel.md

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

5454
- **Do not use**. Indicates that the data should not be used in the model, even if present in the structure.
5555

56-
7. Click the browse **()** button to open the **Set Column Model Flags** dialog box.
56+
7. Click the browse **(...)** button to open the **Set Column Model Flags** dialog box.
5757

5858
Take a minute to verify that the usage of each data column is appropriate for the model. This is an important step for preventing errors when you try to process the model.
5959

docs/2014/analysis-services/analysis-services-powershell.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ For more information about syntax and examples, see [Analysis Services PowerShel
6565

6666
Connections to Analysis Services are characterized as either native connections or HTTP connections. A native connection is a direct connection from a client application to the server. In a PowerShell session, the PowerShell client uses the OLE DB provider for Analysis Services to connect directly to an Analysis Services instance. A native connection is always made using Windows integrated security, where Analysis Services PowerShell executes as the current user. Analysis Services does not support impersonation. If you want to perform an operation as a specific user, you must start the PowerShell session as that user.
6767

68-
HTTP connections are made indirectly through IIS, allowing for additional authentication options, such as Basic authentication, to connect to an Analysis Services instance. Because IIS supports impersonation, you can provide a connection string that includes credentials IIS will use to impersonate when making a connection. To provide credentials, you can use the Credential parameter.
68+
HTTP connections are made indirectly through IIS, allowing for additional authentication options, such as Basic authentication, to connect to an Analysis Services instance. Because IIS supports impersonation, you can provide a connection string that includes credentials IIS will use to impersonate when making a connection. To provide credentials, you can use the -Credential parameter.
6969

70-
**Using the Credential Parameter in PowerShell**
70+
**Using the -Credential Parameter in PowerShell**
7171

72-
The Credential parameter takes a PSCredential object that specifies a user name and password. In Analysis Services PowerShell, the Credential parameter is available for cmdlets that make a connection request to Analysis Services, as opposed to cmdlets that run within the context of an existing connection. Cmdlets that make a connection request include Invoke-ASCmd, Backup-ASDatabase, and Restore-ASDatabase. For these cmdlets, the Credential parameter can be used, assuming the following criteria are met:
72+
The -Credential parameter takes a PSCredential object that specifies a user name and password. In Analysis Services PowerShell, the -Credential parameter is available for cmdlets that make a connection request to Analysis Services, as opposed to cmdlets that run within the context of an existing connection. Cmdlets that make a connection request include Invoke-ASCmd, Backup-ASDatabase, and Restore-ASDatabase. For these cmdlets, the -Credential parameter can be used, assuming the following criteria are met:
7373

7474
1. The server is configured for HTTP access, which means that IIS handles the connection, reads the user name and password, and impersonates that user identity when connecting to Analysis Services. For more information, see [Configure HTTP Access to Analysis Services on Internet Information Services (IIS) 8.0](instances/configure-http-access-to-analysis-services-on-iis-8-0.md).
7575

@@ -81,7 +81,7 @@ For more information about syntax and examples, see [Analysis Services PowerShel
8181

8282
```
8383
PS SQLSERVER:\SQLAS\HTTP_DS> $cred = Get-credential adventureworks\dbadmin
84-
PS SQLSERVER:\SQLAS\HTTP_DS> Invoke-ASCmd Inputfile:"c:\discoverconnections.xmla" Credential:$cred
84+
PS SQLSERVER:\SQLAS\HTTP_DS> Invoke-ASCmd -Inputfile:"c:\discoverconnections.xmla" -Credential:$cred
8585
```
8686

8787
When using Basic authentication, you should always use HTTPS with SSL so that username and passwords are sent over an encrypted connection. For more information, see [Configure Secure Sockets Layer in IIS 7.0](http://go.microsoft.com/fwlink/?linkID=184299) and [Configure Basic Authentication (IIS 7)](http://go.microsoft.com/fwlink/?LinkId=230776).
@@ -132,7 +132,7 @@ PS SQLSERVER:\SQLAS\Localhost\default> Remove-Variable -Name pwd
132132
Import-module "sqlps"
133133
```
134134
135-
Alternatively, use `import-module "sqlps" disablenamechecking` to suppress the warning about unapproved verb names.
135+
Alternatively, use `import-module "sqlps" -disablenamechecking` to suppress the warning about unapproved verb names.
136136
137137
- To load just the task-specific Analysis Services cmdlets, without the Analysis Services provider or the Invoke-ASCmd cmdlet, you can load the SQLASCmdlets module as an independent operation.
138138
@@ -240,28 +240,28 @@ Restart-service mssqlserverolapservice
240240
2. `Get-command` returns a list of the eleven Analysis Services PowerShell cmdlets:
241241
242242
```
243-
get-command module SQLASCmdlets
243+
get-command -module SQLASCmdlets
244244
```
245245
246246
3. `Get-member` returns properties or methods of a service or process.
247247
248248
```
249-
Get-service mssqlserverolapservice | get-member type Property
249+
Get-service mssqlserverolapservice | get-member -type Property
250250
```
251251
252252
```
253-
Get-service mssqlserverolapservice | get-member type Method
253+
Get-service mssqlserverolapservice | get-member -type Method
254254
```
255255
256256
```
257-
Get-process msmdsrv | get-member type Property
257+
Get-process msmdsrv | get-member -type Property
258258
```
259259
260260
4. `Get-member` can also be used to return properties or methods of an object (for example, AMO methods on the server object) using the SQLAS provider to specify the server instance.
261261
262262
```
263263
PS SQLSERVER:\sqlas\localhost\default > $serverObj = New-Object Microsoft.AnalysisServices.Server
264-
PS SQLSERVER:\sqlas\localhost\default > $serverObj = | get-member type Method
264+
PS SQLSERVER:\sqlas\localhost\default > $serverObj = | get-member -type Method
265265
```
266266
267267
5. `Get-PSdrive` returns a list of the providers that are currently installed. If you imported the SQLPS module, you will see the `SQLServer` provider in the list (SQLAS is part of the SQLServer provider and never appears separately in the list):

docs/2014/analysis-services/attribute-discrimination-tab-mining-model-viewer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ manager: craigg
3636
Choose a state of the predictable attribute to compare to the state that is contained in **Value 2**.
3737

3838
**Value 2**
39-
Select a state of the predictable attribute to compare to the state that is contained in **Value 1**. You can also select **All Other States** to compare the value in **Value 1** with its complementthat is, all other values except Value 1.
39+
Select a state of the predictable attribute to compare to the state that is contained in **Value 1**. You can also select **All Other States** to compare the value in **Value 1** with its complement-that is, all other values except Value 1.
4040

4141
**Discrimination scores for \<Value 1> and \<Value 2>**
4242
The graph contains the following columns, which describe how the target attribute is related to specific states of the input attribute.

docs/2014/analysis-services/browsing-a-clustering-model.md

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

200200
Note that, under the covers, the **Cluster Discrimination** viewer sends complex queries to the data mining server, to extract the attributes that are most important in distinguishing between the two groups, making it easier to compare two sets of customers.
201201

202-
2. Click either of the **Favors** columns.
202+
2. Click either of the **Favors...** columns.
203203

204204
The bar to the right of the attribute and value list shows which features or values are most important as a characteristic of the selected cluster.
205205

docs/2014/analysis-services/browsing-a-decision-trees-model.md

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

103103
- If your data can be divided into multiple series, a different model is built for each set of data that you want to model.
104104

105-
- In the sample data model, there is only one predictable outcome Bike Buyer but suppose you had information about whether the customer purchased a service plan and wanted to predict that as well. In that case you would have that data in a separate column, and include two predictable attributes in the model.
105+
- In the sample data model, there is only one predictable outcome - Bike Buyer - but suppose you had information about whether the customer purchased a service plan and wanted to predict that as well. In that case you would have that data in a separate column, and include two predictable attributes in the model.
106106

107107
Click the **Histogram** option, in the upper left corner of the Decision Tree pane, to change the maximum number of states that can appear in the histograms in the tree. This is useful if the predictable attribute has many states. The states appear in a histogram in order of popularity from left to right.
108108

docs/2014/analysis-services/browsing-an-association-rules-model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ manager: craigg
9191

9292
##### Explore the rules list
9393

94-
1. Try clicking the column headings **Probability**, **Importance**, and **Rule** to see how the data changes.
94+
1. Try clicking the column headings - **Probability**, **Importance**, and **Rule** - to see how the data changes.
9595

9696
2. Use the **Filter Rule** option to type in values and focus on targeted rules.
9797

@@ -124,7 +124,7 @@ manager: craigg
124124

125125
The direction of the arrow tells you the direction of the rule. For example, if someone who buys gloves is also likely to buy a vest, the arrow will start from the "glove" node and terminate on the "vest" node.
126126

127-
To get additional statistics about this rule, you can click the **Rules** tab and look for a rule with the description, "Glove - Existing" -> "Vest Existing.")
127+
To get additional statistics about this rule, you can click the **Rules** tab and look for a rule with the description, "Glove - Existing" -> "Vest - Existing.")
128128

129129
2. Click and drag the slider at the left of the viewer.
130130

docs/2014/analysis-services/calculated-member-builder-dialog-box-analysis-services-multidimensional-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ manager: craigg
2323
|----------|----------------|
2424
|**Name**|Type the name of the calculated member.|
2525
|**Parent Hierarchy**|Select the hierarchy in which to create the calculated member.|
26-
|**Parent Member**|This option is enabled if you select a parent hierarchy (other than the `Measures` dimension) that has more than one level. Click the ellipsis (****) button to select a parent member. The parent member determines the location of the calculated member in the dimension structure.|
26+
|**Parent Member**|This option is enabled if you select a parent hierarchy (other than the `Measures` dimension) that has more than one level. Click the ellipsis (**...**) button to select a parent member. The parent member determines the location of the calculated member in the dimension structure.|
2727
|**Expression**|Type the MDX expression that will be used.|
2828
|**Check**|Click **Check** to test the MDX expression defined in **Expression**.|
2929
|**Metadata**|Displays metadata for the current [!INCLUDE[ssASnoversion](../includes/ssasnoversion-md.md)] object that can be included in the MDX expression defined in **Expression**.<br /><br /> You can copy the MDX syntax for the selected item by right-clicking the item and selecting **Copy**, or by dragging the selected item to **Expression**.|

0 commit comments

Comments
 (0)