Skip to content

Commit 1d98e04

Browse files
authored
Merge pull request #6523 from MicrosoftDocs/sai-removelocinfo0710-6
remove en-us in links part6
2 parents 4544388 + 06c7600 commit 1d98e04

41 files changed

Lines changed: 75 additions & 75 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/ado/guide/appendixes/using-visual-c-extensions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ manager: craigg
3131
## Binding Entries
3232
The Visual C++ Extensions for ADO map fields of a [Recordset](../../../ado/reference/ado-api/recordset-object-ado.md) object to C/C++ variables. The definition of a mapping between a field and a variable is called a *binding entry*. Macros provide binding entries for numeric, fixed-length, and variable-length data. The binding entries and C/C++ variables are declared in a class derived from the Visual C++ Extensions class, **CADORecordBinding**. The **CADORecordBinding** class is defined internally by the binding entry macros.
3333

34-
ADO internally maps the parameters in these macros to an OLE DB **DBBINDING** structure and creates an OLE DB **Accessor** object to manage the movement and conversion of data between fields and variables. OLE DB defines data as consisting of three parts: A *buffer* where the data is stored; a *status* that indicates whether a field was successfully stored in the buffer, or how the variable should be restored to the field; and the *length* of the data. (See [Getting and Setting Data (OLE DB)](http://msdn.microsoft.com/en-us/4369708b-c9fb-4d48-a321-bf949b41a369)in the OLE DB Programmer's Reference, for more information.)
34+
ADO internally maps the parameters in these macros to an OLE DB **DBBINDING** structure and creates an OLE DB **Accessor** object to manage the movement and conversion of data between fields and variables. OLE DB defines data as consisting of three parts: A *buffer* where the data is stored; a *status* that indicates whether a field was successfully stored in the buffer, or how the variable should be restored to the field; and the *length* of the data. (See [Getting and Setting Data (OLE DB)](http://msdn.microsoft.com/4369708b-c9fb-4d48-a321-bf949b41a369)in the OLE DB Programmer's Reference, for more information.)
3535

3636
## Header File
3737
Include the following file in your application in order to use the Visual C++ Extensions for ADO:
@@ -81,7 +81,7 @@ Update(CADORecordBinding *binding)
8181

8282
Families of macros are provided for fixed-length data, such as **adDate** or **adBoolean**; numeric data, such as **adTinyInt**, **adInteger**, or **adDouble**; and variable-length data, such as **adChar**, **adVarChar** or **adVarBinary**. All numeric types, except for **adVarNumeric**, are also fixed-length types. Each family has differing sets of parameters so that you can exclude binding information that is of no interest.
8383

84-
For more information, see [Appendix A: Data Types](http://msdn.microsoft.com/en-us/e3a0533a-2196-4eb0-a31e-92fe9556ada6), of the OLE DB Programmer's Reference.
84+
For more information, see [Appendix A: Data Types](http://msdn.microsoft.com/e3a0533a-2196-4eb0-a31e-92fe9556ada6), of the OLE DB Programmer's Reference.
8585

8686
### Begin Binding Entries
8787
**BEGIN_ADO_BINDING**(*Class*)

docs/ado/guide/data/using-a-connection-object.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ sConn = "Provider='SQLOLEDB';Data Source='MySqlServer';" & _
2727
```
2828

2929
> [!NOTE]
30-
> You can also specify an ODBC Data Source Name (DSN) or a Data Link (UDL) file in a connection string. For more information about DSNs, see [Managing Data Sources](../../../odbc/admin/managing-data-sources.md) in the ODBC Programmer's Reference. For more information about UDLs, see [Data Link API Overview](http://msdn.microsoft.com/en-us/95c180ea-bd4f-4dca-b95a-576afd135bbc) in the OLE DB Programmer's Reference.
30+
> You can also specify an ODBC Data Source Name (DSN) or a Data Link (UDL) file in a connection string. For more information about DSNs, see [Managing Data Sources](../../../odbc/admin/managing-data-sources.md) in the ODBC Programmer's Reference. For more information about UDLs, see [Data Link API Overview](http://msdn.microsoft.com/95c180ea-bd4f-4dca-b95a-576afd135bbc) in the OLE DB Programmer's Reference.
3131
3232
Typically, you establish a connection by calling the **Connection.Open** method with an appropriate a *connection string* as its parameter. An example is shown in the following Visual Basic code snippet:
3333

docs/advanced-analytics/using-the-microsoftml-package.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ In SQL Server 2017 CTP 2.0, support was added for the Python language. The **mic
1818

1919
+ **MicrosoftML for R**
2020

21-
Introduction and package reference: [MicrosoftML: machine learning R algorithms](https://docs.microsoft.com/en-us/r-server/r-reference/microsoftml/microsoftml-package)
21+
Introduction and package reference: [MicrosoftML: machine learning R algorithms](https://docs.microsoft.com/r-server/r-reference/microsoftml/microsoftml-package)
2222

2323
Because R is case-sensitive, make sure that you reference the name correctly when loading the package.
2424

@@ -110,4 +110,4 @@ For more information about revoscalepy, see:
110110

111111
+ [What is revoscalepy](python/what-is-revoscalepy.md)
112112

113-
+ [revoscalepy function library](https://docs.microsoft.com/en-us/r-server/python-reference/revoscalepy/revoscalepy-package)
113+
+ [revoscalepy function library](https://docs.microsoft.com/r-server/python-reference/revoscalepy/revoscalepy-package)

docs/analysis-services/instances/use-analysis-services-templates-in-sql-server-management-studio.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ manager: kfile
4242
This example shows you how to create an MDX query in SQL Server Management Studio, using a tabular model database as the data source. To repeat this example on your computer, you can [download the Adventureworks tabular model sample project](http://go.microsoft.com/fwlink/?LinkId=231183).
4343

4444
> [!WARNING]
45-
> You cannot use MDX queries against tabular models that have been deployed in Direct Query mode. You can, however, send equivalent queries by using the DAX table queries with the EVALUATE command. For more information, see [DAX Query Parameters](http://msdn.microsoft.com/en-us/c5841b4e-3395-4237-815b-9822a691e544).
45+
> You cannot use MDX queries against tabular models that have been deployed in Direct Query mode. You can, however, send equivalent queries by using the DAX table queries with the EVALUATE command. For more information, see [DAX Query Parameters](http://msdn.microsoft.com/c5841b4e-3395-4237-815b-9822a691e544).
4646
4747
#### Create an MDX query from a template
4848

docs/analysis-services/power-pivot-sharepoint/unable-to-refresh-data-for-a-data-connection-in-the-workbook.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ manager: kfile
3838

3939
To determine the version of the workbook, open it in Excel and check which data provider is specified in the connection string. A SQL Server 2008 R2 workbook uses MSOLAP.4 as its data provider.
4040

41-
To work around this issue, you can upgrade the workbook. Alternatively, you can install client libraries from the SQL Server 2008 R2 version of Analysis Services on the physical computers running [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] for SharePoint or Excel Services, [Install the Analysis Services OLE DB Provider on SharePoint Servers](http://msdn.microsoft.com/en-us/2c62daf9-1f2d-4508-a497-af62360ee859).
41+
To work around this issue, you can upgrade the workbook. Alternatively, you can install client libraries from the SQL Server 2008 R2 version of Analysis Services on the physical computers running [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] for SharePoint or Excel Services, [Install the Analysis Services OLE DB Provider on SharePoint Servers](http://msdn.microsoft.com/2c62daf9-1f2d-4508-a497-af62360ee859).
4242

4343
**Scenario 2b: Excel Services is running on an application server that has the wrong version of the client libraries**
4444

4545
By default, SharePoint Server 2010 installs the SQL Server 2008 version of the Analysis Services OLE DB provider on application servers that run Excel Services. In a farm that supports [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] data access, all physical servers running applications that request [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] data, such as Excel Services and [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] for SharePoint, must use a later version of the data provider.
4646

47-
Servers that run [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] for SharePoint get the updated OLE DB data provider automatically. Other servers, such as those running a standalone instance Excel Services without [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] for SharePoint on the same computer, must be patched to use the newer client libraries. For more information, see [Install the Analysis Services OLE DB Provider on SharePoint Servers](http://msdn.microsoft.com/en-us/2c62daf9-1f2d-4508-a497-af62360ee859).
47+
Servers that run [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] for SharePoint get the updated OLE DB data provider automatically. Other servers, such as those running a standalone instance Excel Services without [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] for SharePoint on the same computer, must be patched to use the newer client libraries. For more information, see [Install the Analysis Services OLE DB Provider on SharePoint Servers](http://msdn.microsoft.com/2c62daf9-1f2d-4508-a497-af62360ee859).
4848

4949
**Scenario 3: Domain controller is unavailable**
5050

docs/analysis-services/power-pivot-sharepoint/use-data-feeds-power-pivot-for-sharepoint.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ manager: kfile
3333

3434
You must have a Web service or a data service that provides data in the Atom 1.0 format. Both [!INCLUDE[ssKilimanjaro](../../includes/sskilimanjaro-md.md)] [!INCLUDE[ssRSnoversion](../../includes/ssrsnoversion-md.md)] and SharePoint 2010 can provide data in this format.
3535

36-
Before you can export a SharePoint list as a data feed, you must install ADO.NET Data Services on the SharePoint server. For more information, see [Install ADO.NET Data Services to support data feed exports of SharePoint lists](http://msdn.microsoft.com/en-us/f32527ae-f623-4e08-adfb-6d3262f5c2ac).
36+
Before you can export a SharePoint list as a data feed, you must install ADO.NET Data Services on the SharePoint server. For more information, see [Install ADO.NET Data Services to support data feed exports of SharePoint lists](http://msdn.microsoft.com/f32527ae-f623-4e08-adfb-6d3262f5c2ac).
3737

3838
## <a name="sharepointlist"></a> Create a Data Feed from a SharePoint List
3939
In a SharePoint 2010 farm, a SharePoint list has an Export as Data Feed button on the List ribbon. You can click this button to export the list as a feed. For best results, you should have Excel 2010 with the [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] client application on your workstation. The [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] client application will launch in response to the data feed export, creating a new [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] table that contains the list.
@@ -51,7 +51,7 @@ manager: kfile
5151

5252
5. If you chose **Open**, use the Table Import Wizard to import the data feed to a worksheet. The data feed will be added as a new table in the [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] window.
5353

54-
An error will occur if ADO.NET Data Services 3.5.1 is not installed on the SharePoint server. For more information about the error and how to resolve it, see [Install ADO.NET Data Services to support data feed exports of SharePoint lists](http://msdn.microsoft.com/en-us/f32527ae-f623-4e08-adfb-6d3262f5c2ac).
54+
An error will occur if ADO.NET Data Services 3.5.1 is not installed on the SharePoint server. For more information about the error and how to resolve it, see [Install ADO.NET Data Services to support data feed exports of SharePoint lists](http://msdn.microsoft.com/f32527ae-f623-4e08-adfb-6d3262f5c2ac).
5555

5656
## <a name="rsreport"></a> Create a Data Feed from a Reporting Services Report
5757
If you have a deployment of SQL Server 2008 R2 Reporting Services, you can use the new Atom rendering extension to generate a data feed from an existing report. For best results, you should have Excel 2010 with the [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] for Excel on your workstation. The [!INCLUDE[ssGemini](../../includes/ssgemini-md.md)] client application will launch in response to the data feed export, automatically adding and relating the tables and columns as they are streamed in.

docs/analysis-services/power-pivot-sharepoint/use-power-pivot-gallery.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ manager: kfile
116116

117117
|||
118118
|-|-|
119-
|![GMNI_btn_NewDataRefreshReportGallery](../../analysis-services/power-pivot-sharepoint/media/gmni-btn-newdatarefreshreportgallery.gif "GMNI_btn_NewDataRefreshReportGallery")|Click the Manage Data refresh button to create or view a schedule that retrieves updated data from connected data sources. For instructions on how to create a schedule, see [Schedule a Data Refresh (Power Pivot for SharePoint)](http://msdn.microsoft.com/en-us/8571208f-6aae-4058-83c6-9f916f5e2f9b).|
119+
|![GMNI_btn_NewDataRefreshReportGallery](../../analysis-services/power-pivot-sharepoint/media/gmni-btn-newdatarefreshreportgallery.gif "GMNI_btn_NewDataRefreshReportGallery")|Click the Manage Data refresh button to create or view a schedule that retrieves updated data from connected data sources. For instructions on how to create a schedule, see [Schedule a Data Refresh (Power Pivot for SharePoint)](http://msdn.microsoft.com/8571208f-6aae-4058-83c6-9f916f5e2f9b).|
120120

121121
## <a name="delete"></a> Delete a workbook or report in Power Pivot Gallery
122122
To delete a document from the library, switch to the All Documents view first.
@@ -157,6 +157,6 @@ manager: kfile
157157
[Create a trusted location for Power Pivot sites in Central Administration](../../analysis-services/power-pivot-sharepoint/create-a-trusted-location-for-power-pivot-sites-in-central-administration.md)
158158
[Delete Power Pivot Gallery](../../analysis-services/power-pivot-sharepoint/delete-power-pivot-gallery.md)
159159
[Create and Customize Power Pivot Gallery](../../analysis-services/power-pivot-sharepoint/create-and-customize-power-pivot-gallery.md)
160-
[Schedule a Data Refresh (Power Pivot for SharePoint)](http://msdn.microsoft.com/en-us/8571208f-6aae-4058-83c6-9f916f5e2f9b)
160+
[Schedule a Data Refresh (Power Pivot for SharePoint)](http://msdn.microsoft.com/8571208f-6aae-4058-83c6-9f916f5e2f9b)
161161

162162

docs/connect/odbc/linux-mac/using-integrated-authentication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Before reuse, an application must reset pooled connections by executing `sp_rese
7070

7171
## Using Active Directory to Manage User Identities
7272

73-
An application system administrator does not have to manage separate sets of login credentials for [!INCLUDE[ssNoVersion](../../../includes/ssnoversion_md.md)]. It is possible to configure Active Directory as a key distribution center (KDC) for Integrated Authentication. See [Microsoft Kerberos](https://msdn.microsoft.com/en-us/library/windows/desktop/aa378747(v=vs.85).aspx) for more information.
73+
An application system administrator does not have to manage separate sets of login credentials for [!INCLUDE[ssNoVersion](../../../includes/ssnoversion_md.md)]. It is possible to configure Active Directory as a key distribution center (KDC) for Integrated Authentication. See [Microsoft Kerberos](https://msdn.microsoft.com/library/windows/desktop/aa378747(v=vs.85).aspx) for more information.
7474

7575
## Using Linked Server and Distributed Queries
7676

docs/connect/odbc/using-always-encrypted-with-the-odbc-driver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ No other ODBC application changes are required to use AKV for CMK storage.
395395

396396
### Using the Windows Certificate Store Provider
397397

398-
The ODBC Driver for SQL Server on Windows includes a built-in column master key store provider for the Windows Certificate Store, named `MSSQL_CERTIFICATE_STORE`. (This provider is not available on macOS or Linux.) With this provider, the CMK is stored locally on the client machine and no additional configuration by the application is necessary to use it with the driver. However, the application must have access to the certificate and its private key in the store. See [Create and Store Column Master Keys (Always Encrypted)](https://docs.microsoft.com/en-us/sql/relational-databases/security/encryption/create-and-store-column-master-keys-always-encrypted) for more information.
398+
The ODBC Driver for SQL Server on Windows includes a built-in column master key store provider for the Windows Certificate Store, named `MSSQL_CERTIFICATE_STORE`. (This provider is not available on macOS or Linux.) With this provider, the CMK is stored locally on the client machine and no additional configuration by the application is necessary to use it with the driver. However, the application must have access to the certificate and its private key in the store. See [Create and Store Column Master Keys (Always Encrypted)](https://docs.microsoft.com/sql/relational-databases/security/encryption/create-and-store-column-master-keys-always-encrypted) for more information.
399399

400400
### Using Custom Keystore Providers
401401

0 commit comments

Comments
 (0)