Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit ccef79e

Browse files
committed
Bringing even with master.
2 parents 4b63ae9 + 41cd9d5 commit ccef79e

43 files changed

Lines changed: 72 additions & 73 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/analysis-services/languages-and-collations-analysis-services.md

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

6363
- 0x0416 or 1046 for **Portuguese (Brazil)**.
6464

65-
To view a longer list, see [Locale IDs Assigned by Microsoft](http://msdn.microsoft.com/goglobal/bb964664.aspx). For more background, see [Encoding and Code Pages](http://msdn.microsoft.com/goglobal/bb688114.aspx).
65+
To view a longer list, see [Locale IDs Assigned by Microsoft](http://msdn.microsoft.com/goglobal/bb964664.aspx). For more background, see [Encoding and Code Pages](/globalization/encoding/encoding-overview).
6666

6767
> [!NOTE]
6868
> The **Language** property does not determine the language for returning system messages, or which strings appear in the user interface. Errors, warnings, and messages are localized into all languages supported in Office and Office 365 and are used automatically when the client connection specifies one of the supported locales.

docs/connect/ado-net/step-3-proof-of-concept-connecting-to-sql-using-ado-net.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This C# code example should be considered a proof of concept only. The sample co
2525
The method **SqlConnection.Open** is used to connect to your SQL database.
2626

2727

28-
```CSharp
28+
```C#
2929
// C# , ADO.NET
3030
using System;
3131
using QC = System.Data.SqlClient; // System.Data.dll
@@ -68,7 +68,7 @@ The method SqlCommand.ExecuteReader:
6868

6969

7070

71-
```CSharp
71+
```C#
7272
using System; // C# , ADO.NET
7373
using DT = System.Data; // System.Data.dll
7474
using QC = System.Data.SqlClient; // System.Data.dll
@@ -156,7 +156,7 @@ This example demonstrates how to:
156156

157157

158158

159-
```CSharp
159+
```C#
160160
using System; // C# , ADO.NET
161161
using DT = System.Data; // System.Data.dll
162162
using QC = System.Data.SqlClient; // System.Data.dll

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Then you must edit the strings for server name, password, and so on. You can fin
6262
NOTE: The connection string for server name is geared toward Azure SQL Database, because it includes the four character prefix of **tcp:**. But you can adjust the server string to connect to your Microsoft SQL Server.
6363

6464

65-
```CSharp
65+
```C#
6666
using System; // C#
6767
using CG = System.Collections.Generic;
6868
using QC = System.Data.SqlClient;

docs/connect/jdbc/connecting-to-an-azure-sql-database.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This article discusses issues when using the [!INCLUDE[jdbcNoVersion](../../incl
2727
## Details
2828

2929
When connecting to a [!INCLUDE[ssAzure](../../includes/ssazure_md.md)], you should connect to the master database to call **SQLServerDatabaseMetaData.getCatalogs**.
30-
[!INCLUDE[ssAzure](../../includes/ssazure_md.md)] doesn't support returning the entire set of catalogs from a user database. **SQLServerDatabaseMetaData.getCatalogs** use the sys.databases view to get the catalogs. Please refer to the discussion of permissions in [sys.databases (SQL Azure Database)](https://go.microsoft.com/fwlink/?LinkId=217396) to understand **SQLServerDatabaseMetaData.getCatalogs** behavior on a [!INCLUDE[ssAzure](../../includes/ssazure_md.md)].
30+
[!INCLUDE[ssAzure](../../includes/ssazure_md.md)] doesn't support returning the entire set of catalogs from a user database. **SQLServerDatabaseMetaData.getCatalogs** use the sys.databases view to get the catalogs. Please refer to the discussion of permissions in [sys.databases (Transact-SQL)](../../relational-databases/system-catalog-views/sys-databases-transact-sql.md) to understand **SQLServerDatabaseMetaData.getCatalogs** behavior on a [!INCLUDE[ssAzure](../../includes/ssazure_md.md)].
3131

3232
## Connections Dropped
3333

docs/connect/jdbc/reference/getcatalogs-method-sqlserverdatabasemetadata.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public java.sql.ResultSet getCatalogs()
3939
This getCatalogs method is specified by the getCatalogs method in the java.sql.DatabaseMetaData interface.
4040

4141
> [!NOTE]
42-
> On SQL Azure, you should connect to the master database to call **SQLServerDatabaseMetaData.getCatalogs**. SQL Azure does not support returning the entire set of catalogs from a user database. **SQLServerDatabaseMetaData.getCatalogs** uses the sys.databases view to get the catalogs. Please refer to the discussion of permissions in [sys.databases (SQL Azure Database)](https://go.microsoft.com/fwlink/?LinkId=217396) to understand **SQLServerDatabaseMetaData.getCatalogs** behavior on SQL Azure.
42+
> On SQL Azure, you should connect to the master database to call **SQLServerDatabaseMetaData.getCatalogs**. SQL Azure does not support returning the entire set of catalogs from a user database. **SQLServerDatabaseMetaData.getCatalogs** uses the sys.databases view to get the catalogs. Please refer to the discussion of permissions in [sys.database_usage (Azure SQL Database)](../../../relational-databases/system-catalog-views/sys-database-usage-azure-sql-database.md) to understand **SQLServerDatabaseMetaData.getCatalogs** behavior on SQL Azure.
4343
4444
The result set returned by the getCatalogs method will contain the following information:
4545

docs/connect/odbc/linux-mac/data-access-tracing-with-the-odbc-driver-on-linux.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ SQLLEN Size........: 8
5959
SQLSETPOSIROW Size.: 8
6060
```
6161

62-
The [unixODBC documentation](https://www.unixodbc.org/doc/UserManual/) explains the differences between user and system DSNs. In summary:
62+
The [unixODBC documentation](http://www.unixodbc.org/doc/UserManual/) explains the differences between user and system DSNs. In summary:
6363

6464
- User DSNs --- these are DSNs which are only available to a specific user. Users can connect using, add, modify, and remove their own user DSNs. User DSNs are stored in a file in the user's home directory, or a subdirectory thereof.
6565

docs/connect/odbc/linux-mac/installing-the-driver-manager.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To install the driver manager:
4646

4747
5. When you are ready to install, and if your computer can access an external site via FTP, execute the following command: **./build_dm.sh**.
4848

49-
If your computer cannot access an external site via FTP, get `unixODBC-2.3.0.tar.gz`. You can get `unixODBC-2.3.0.tar.gz` from [https://www.unixodbc.org](https://www.unixodbc.org/). Click the **Download** link on the left side of the page to go to the download page. Then click the appropriate link to download unixODBC-2.3.0 (not unixODBC-2.3.1). unixODBC-2.3.1 is not supported with this release of the [!INCLUDE[msCoName](../../../includes/msconame_md.md)] ODBC Driver 11 for [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)]. Execute the following command to begin the unixODBC Driver Manager installation: **./build_dm.sh --download-url=file://unixODBC-2.3.0.tar.gz**.
49+
If your computer cannot access an external site via FTP, get `unixODBC-2.3.0.tar.gz`. You can get `unixODBC-2.3.0.tar.gz` from [http://www.unixodbc.org](http://www.unixodbc.org/). Click the **Download** link on the left side of the page to go to the download page. Then click the appropriate link to download unixODBC-2.3.0 (not unixODBC-2.3.1). unixODBC-2.3.1 is not supported with this release of the [!INCLUDE[msCoName](../../../includes/msconame_md.md)] ODBC Driver 11 for [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)]. Execute the following command to begin the unixODBC Driver Manager installation: **./build_dm.sh --download-url=file://unixODBC-2.3.0.tar.gz**.
5050

5151
6. Type **YES** to proceed with unpacking the files. This part of the process can take up to five minutes to complete.
5252

@@ -60,7 +60,7 @@ If the installation script is unable to complete, configure and build the proper
6060

6161
1. Remove any older installed version of unixODBC (for example, unixODBC 2.2.11). On Red Hat Enterprise Linux 5 or 6, execute the following command: **yum remove unixODBC**. On SUSE Linux Enterprise, **zypper remove unixODBC**.
6262

63-
2. Go to [https://www.unixodbc.org](https://www.unixodbc.org/). Click the **Download** link on the left side of the page to go to the download page. Then click the appropriate link to save the file unixODBC-2.3.0.tar.gz to your computer. UnixODBC-2.3.1 is not supported with this release of the [!INCLUDE[msCoName](../../../includes/msconame_md.md)] ODBC Driver 11 for [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)].
63+
2. Go to [http://www.unixodbc.org](http://www.unixodbc.org/). Click the **Download** link on the left side of the page to go to the download page. Then click the appropriate link to save the file unixODBC-2.3.0.tar.gz to your computer. UnixODBC-2.3.1 is not supported with this release of the [!INCLUDE[msCoName](../../../includes/msconame_md.md)] ODBC Driver 11 for [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)].
6464

6565
3. On your Linux computer, execute the command: **tar xvzf unixODBC-2.3.0.tar.gz**.
6666

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Logging in to [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] uses
6161

6262
To audit activities in [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] on behalf of users other than the system account, the application must use [!INCLUDE[tsql](../../../includes/tsql-md.md)] **EXECUTE AS**.
6363

64-
To improve application performance, an application can use connection pooling with Integrated Authentication and auditing. However, combining connection pooling, Integrated Authentication, and auditing creates a security risk because the unixODBC driver manager permits different users to reuse pooled connections. For more information, see [ODBC Connection Pooling](https://www.unixodbc.org/doc/conn_pool.html).
64+
To improve application performance, an application can use connection pooling with Integrated Authentication and auditing. However, combining connection pooling, Integrated Authentication, and auditing creates a security risk because the unixODBC driver manager permits different users to reuse pooled connections. For more information, see [ODBC Connection Pooling](http://www.unixodbc.org/doc/conn_pool.html).
6565

6666
Before reuse, an application must reset pooled connections by executing `sp_reset_connection`.
6767

docs/connect/php/connection-resiliency.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ manager: "v-hakaka"
1313
# Idle Connection Resiliency
1414
[!INCLUDE[Driver_PHP_Download](../../includes/driver_php_download.md)]
1515

16-
[Connection resiliency](https://msdn.microsoft.com/library/dn632678.aspx) is the principle that a broken idle connection can be reestablished, within certain constraints. If a connection to Microsoft SQL Server fails, connection resiliency allows the client to automatically attempt to reestablish the connection. Connection resiliency is a property of the data source; only SQL Server 2014 and later and Azure SQL Database support connection resiliency.
16+
[Connection resiliency](../odbc/windows/connection-resiliency-in-the-windows-odbc-driver.md) is the principle that a broken idle connection can be reestablished, within certain constraints. If a connection to Microsoft SQL Server fails, connection resiliency allows the client to automatically attempt to reestablish the connection. Connection resiliency is a property of the data source; only SQL Server 2014 and later and Azure SQL Database support connection resiliency.
1717

1818
Connection resiliency is implemented with two connection keywords that can be added to connection strings: **ConnectRetryCount** and **ConnectRetryInterval**.
1919

@@ -125,4 +125,4 @@ Statement 2 successful.
125125
```
126126

127127
## See Also
128-
[Connection Resiliency in the Windows ODBC Driver](https://docs.microsoft.com/sql/connect/odbc/windows/connection-resiliency-in-the-windows-odbc-driver)
128+
[Connection Resiliency in the Windows ODBC Driver](../odbc/windows/connection-resiliency-in-the-windows-odbc-driver.md)

docs/connect/php/support-resources-for-the-php-sql-driver.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ For peer-to-peer support, visit the [IIS Forums](https://forums.iis.net/).
4141
## PHP Support Resources
4242
[PHP for Windows Documentation](https://windows.php.net/)
4343

44-
For the latest information about PHP, visit [https://www.php.net/](https://www.php.net).
44+
For the latest information about PHP, visit [http://www.php.net/](http://www.php.net).
4545

46-
For PHP documentation, visit [https://www.php.net/docs.php](https://www.php.net/docs.php).
46+
For PHP documentation, visit [http://www.php.net/docs.php](http://www.php.net/docs.php).
4747

4848
## Microsoft Customer Support
4949
For support questions related to the [!INCLUDE[ssDriverPHP](../../includes/ssdriverphp_md.md)], you can contact [Microsoft Support](https://support.microsoft.com/contactus/), or ask on the [Github project page](https://github.com/Microsoft/msphpsql/issues).

0 commit comments

Comments
 (0)