Skip to content

Commit 7ee35c9

Browse files
authored
Merge pull request #6925 from MicrosoftDocs/FromPublicRepo
Confirm merge from FromPublicRepo to master to sync with https://github.com/MicrosoftDocs/sql-docs (branch live)
2 parents 2494bd9 + cb26b28 commit 7ee35c9

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/advanced-analytics/r/use-sqlbindr-exe-to-upgrade-an-instance-of-sql-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ OutputDataSet <- data.frame(Name, Version);'
158158
WITH RESULT SETS ((PackageName nvarchar(250), PackageVersion nvarchar(max) ))
159159
```
160160
161-
For SQL Server 2016 R Services bound to Machine Learning Server 9.3, R Base package should be 3.4.1, RevoScaleR should be 9.3, and you should also have MicrosoftML 9.3.
161+
For SQL Server 2016 R Services bound to Machine Learning Server 9.3, R Base package should be 3.4.3, RevoScaleR should be 9.3, and you should also have MicrosoftML 9.3.
162162
163163
If you added the pre-trained models, the models are embedded in the MicrosoftML library and you can call them through MicrosoftML functions. For more information, see [R samples for MicrosoftML](https://docs.microsoft.com/machine-learning-server/r/sample-microsoftml).
164164

docs/connect/ado-net/step-4-connect-resiliently-to-sql-with-ado-net.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ This topic provides a C# code sample that demonstrates custom retry logic. The r
2727
Sources of transient faults include:
2828

2929
- A brief failure of the networking that supports the Internet.
30-
- A cloud system might be load balancing its resources at the moment you query sent.
30+
- A cloud system might be load balancing its resources at the moment your query was sent.
3131

3232

3333
The ADO.NET classes for connecting to your local Microsoft SQL Server can also connect to Azure SQL Database. However, by themselves the ADO.NET classes cannot provide all the robustness and reliability necessary in production use. Your client program can encounter transient faults from which it should silently and gracefully recover and continue on its own.
3434

3535
## Step 1: Identify transient errors
3636

37-
Your program must distinguish between transient errors versus persistent errors. Transient faults are error conditions that may clear up within a short period of time, such as transient network problems. An example of a persistent error would be, if your program has a misspelling of the target database name - in this case, the "No such database found" error would persist, and has no chance of clearing up within a short period of time.
37+
Your program must distinguish between transient errors versus persistent errors. Transient errors are error conditions that may clear up within a short period of time, such as transient network problems. An example of a persistent error would be, if your program has a misspelling of the target database name - in this case, the "No such database found" error would persist, and has no chance of clearing up within a short period of time.
3838

3939
The list of error numbers that are categorized as transient faults is available at at [Error messages for SQL Database client applications](http://docs.microsoft.com/azure/sql-database/sql-database-develop-error-messages/)
4040

@@ -266,7 +266,7 @@ There are a variety of ways you can simulate a transient error to test your retr
266266

267267
The code sample includes:
268268

269-
- A small second class named **TestSqlException**, which a property named **Number**.
269+
- A small second class named **TestSqlException**, with a property named **Number**.
270270
- `//throw new TestSqlException(4060);` , which you can uncomment.
271271

272272
If you uncomment the throw statement, and recompile, the next run of **RetryAdo2.exe** outputs something similar to the following.
@@ -305,7 +305,7 @@ To prove the code handles persistent errors correctly, rerun the preceding test
305305

306306
1. Temporarily add 40615 as another error number to **TransientErrorNumbers**, and recompile.
307307
2. Set a breakpoint on the line: `new QC.SqlConnectionStringBuilder()`.
308-
3. Use the *Edit and Continue* feature to purposely misspell the server name, a couple lines below.
308+
3. Use the *Edit and Continue* feature to purposely misspell the server name, a couple of lines below.
309309
- Let the program run and come back to your breakpoint.
310310
- The error 40615 occurs.
311311
4. Fix the misspelling.

0 commit comments

Comments
 (0)