Skip to content

Commit 7247a68

Browse files
committed
Fixing asterisk and character issues for LOC
1 parent 5a6ec6f commit 7247a68

89 files changed

Lines changed: 159 additions & 159 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/instances/configure-service-accounts-analysis-services.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ manager: kfile
2727
## Logon account recommendations
2828
In a failover cluster, all instances of Analysis Services should be configured to use a Windows domain user account. Assign the same account to all instances. See [How to Cluster Analysis Services](http://msdn.microsoft.com/library/dn736073.aspx) for details.
2929

30-
Standalone instances should use the default virtual account, **NT Service\MSSQLServerOLAPService** for the default instance, or **NT Service\MSOLAP$***instance-name* for a named instance. This recommendation applies to Analysis Services instances in all server modes, assuming Windows Server 2008 R2 and later for the operating system, and SQL Server 2012 and later for Analysis Services.
30+
Standalone instances should use the default virtual account, **NT Service\MSSQLServerOLAPService** for the default instance, or **NT Service\MSOLAP$**_instance-name_ for a named instance. This recommendation applies to Analysis Services instances in all server modes, assuming Windows Server 2008 R2 and later for the operating system, and SQL Server 2012 and later for Analysis Services.
3131

3232
## Granting permissions to Analysis Services
3333
This section explains the permissions that Analysis Services requires for local, internal operations, such as starting the executable, reading the configuration file, and loading databases from the data directory. If instead you're looking for guidance on setting permissions for external data access and interoperability with other services and applications, see [Granting additional permissions for specific server operations](#bkmk_tasks) further on in this topic.

docs/connect/jdbc/understanding-ssl-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ During SSL handshake, the server sends its public key certificate to the client.
7676

7777
- The Common Name (CN) in the Subject or a DNS name in the Subject Alternate Name (SAN) of the certificate exactly matches the **serverName** value specified in the connection string or, if specified, the **hostNameInCertificate** property value.
7878

79-
- A DNS name can include wild card characters. But the [!INCLUDE[jdbcNoVersion](../../includes/jdbcnoversion_md.md)] does not support wild card matching. That is, abc.com will not match *.com but \*.com will match \*.com.
79+
- A DNS name can include wild card characters. But the [!INCLUDE[jdbcNoVersion](../../includes/jdbcnoversion_md.md)] does not support wild card matching. That is, abc.com will not match \*.com but \*.com will match \*.com.
8080

8181
## See Also
8282

docs/connect/odbc/linux-mac/connecting-with-bcp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ bcp AdventureWorks2008R2.Person.Address out test.dat -Usa -Pxxxx -Sxxx.xxx.xxx.x
4444
## Available Options
4545
In the current release, the following syntax and options are available:
4646

47-
[*database***.**]*schema***.***table* **in** *data_file* | **out** *data_file*
47+
[_database_**.**]_schema_**.**_table_ **in** _data_file_ | **out** _data_file_
4848

4949
- -a *packet_size*
5050
Specifies the number of bytes, per network packet, sent to and from the server.

docs/connect/odbc/linux-mac/connecting-with-sqlcmd.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ In the current release, the following options are available:
6161

6262
- -k Remove or replace control characters.
6363

64-
- **-K***application_intent*
64+
- **-K**_application\_intent_
6565
Declares the application workload type when connecting to a server. The only currently supported value is **ReadOnly**. If **-K** is not specified, `sqlcmd` does not support connectivity to a secondary replica in an AlwaysOn availability group. For more information, see [ODBC Driver on Linux and macOS - High Availability and Disaster Recovery](../../../connect/odbc/linux-mac/odbc-driver-on-linux-support-for-high-availability-disaster-recovery.md).
6666

6767
> [!NOTE]
@@ -71,7 +71,7 @@ Declares the application workload type when connecting to a server. The only cur
7171

7272
- -m *error_level* Control which error messages are sent to stdout.
7373

74-
- **-M***multisubnet_failover*
74+
- **-M**_multisubnet_failover_
7575
Always specify **-M** when connecting to the availability group listener of a [!INCLUDE[ssSQL11](../../../includes/sssql11-md.md)] availability group or a [!INCLUDE[ssSQL11](../../../includes/sssql11-md.md)] Failover Cluster Instance. **-M** provides for faster detection of failovers and connection to the (currently) active server. If **–M** is not specified, **-M** is off. For more information about [!INCLUDE[ssHADR](../../../includes/sshadr_md.md)], see [ODBC Driver on Linux and macOS - High Availability and Disaster Recovery](../../../connect/odbc/linux-mac/odbc-driver-on-linux-support-for-high-availability-disaster-recovery.md).
7676

7777
> [!NOTE]
@@ -95,7 +95,7 @@ Always specify **-M** when connecting to the availability group listener of a [!
9595

9696
- -s *column_separator_char* Specify the column-separator character.
9797

98-
- -S [*protocol*:] *server*[**,***port*]
98+
- -S [*protocol*:] *server*[**,**_port_]
9999
Specify the instance of [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] to connect to, or if -D is used, a DSN. The ODBC driver on Linux and macOS requires -S. Note that **tcp** is the only valid protocol.
100100

101101
- -t *query_timeout* Specify the number of seconds before a command (or SQL statement) times out.
@@ -207,13 +207,13 @@ The following entries are supported in a DSN on Linux or macOS:
207207

208208
- **ApplicationIntent=ReadOnly**
209209

210-
- **Database=***database_name*
210+
- **Database=**_database_name_
211211

212212
- **Driver=ODBC Driver 11 for SQL Server** or **Driver=ODBC Driver 13 for SQL Server**
213213

214214
- **MultiSubnetFailover=Yes**
215215

216-
- **Server=***server_name_or_IP_address*
216+
- **Server=**_server_name_or_IP_address_
217217

218218
- **Trusted_Connection=yes**|**no**
219219

docs/connect/oledb/applications/using-connection-string-keywords-with-oledb-driver-for-sql-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ manager: craigg
7676
|Keyword|Initialization property|Description|
7777
|-------------|-----------------------------|-----------------|
7878
|**Addr**|SSPROP_INIT_NETWORKADDRESS|Synonym for "Address".|
79-
|**Address**|SSPROP_INIT_NETWORKADDRESS|The network address of the server running an instance of [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)]. **Address** is usually the network name of the server, but can be other names such as a pipe, an IP address, or a TCP/IP port and socket address.<br /><br /> If you specify an IP address, make sure that the TCP/IP or named pipes protocols are enabled in [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Configuration Manager.<br /><br /> The value of **Address** takes precedence over the value passed to **Server** in connection strings when using OLE DB Driver for SQL Server. Also note that `Address=;` will connect to the server specified in the **Server** keyword, whereas `Address= ;, Address=.;`, `Address=localhost;`, and `Address=(local);` all cause a connection to the local server.<br /><br /> The complete syntax for the **Address** keyword is as follows:<br /><br /> [*protocol***:**]*Address*[**,***port &#124;\pipe\pipename*]<br /><br /> *protocol* can be **tcp** (TCP/IP), **lpc** (shared memory), or **np** (named pipes). For more information about protocols, see [Configure Client Protocols](../../../database-engine/configure-windows/configure-client-protocols.md).<br /><br /> If neither *protocol* nor the **Network** keyword is specified, OLE DB Driver for SQL Server will use the protocol order specified in [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Configuration Manager.<br /><br /> *port* is the port to connect to, on the specified server. By default, [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] uses port 1433.|
79+
|**Address**|SSPROP_INIT_NETWORKADDRESS|The network address of the server running an instance of [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)]. **Address** is usually the network name of the server, but can be other names such as a pipe, an IP address, or a TCP/IP port and socket address.<br /><br /> If you specify an IP address, make sure that the TCP/IP or named pipes protocols are enabled in [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Configuration Manager.<br /><br /> The value of **Address** takes precedence over the value passed to **Server** in connection strings when using OLE DB Driver for SQL Server. Also note that `Address=;` will connect to the server specified in the **Server** keyword, whereas `Address= ;, Address=.;`, `Address=localhost;`, and `Address=(local);` all cause a connection to the local server.<br /><br /> The complete syntax for the **Address** keyword is as follows:<br /><br /> [_protocol_**:**]_Address_[**,**_port &#124;\pipe\pipename_]<br /><br /> _protocol_ can be **tcp** (TCP/IP), **lpc** (shared memory), or **np** (named pipes). For more information about protocols, see [Configure Client Protocols](../../../database-engine/configure-windows/configure-client-protocols.md).<br /><br /> If neither _protocol_ nor the **Network** keyword is specified, OLE DB Driver for SQL Server will use the protocol order specified in [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Configuration Manager.<br /><br /> *port* is the port to connect to, on the specified server. By default, [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] uses port 1433.|
8080
|**APP**|SSPROP_INIT_APPNAME|The string identifying the application.|
8181
|**ApplicationIntent**|SSPROP_INIT_APPLICATIONINTENT|Declares the application workload type when connecting to a server. Possible values are **ReadOnly** and **ReadWrite**.<br /><br /> The default is **ReadWrite**. For more information about OLE DB Driver for SQL Server's support for [!INCLUDE[ssHADR](../../../includes/sshadr-md.md)], see [OLE DB Driver for SQL Server Support for High Availability, Disaster Recovery](../../oledb/features/oledb-driver-for-sql-server-support-for-high-availability-disaster-recovery.md).|
8282
|**AttachDBFileName**|SSPROP_INIT_FILENAME|The name of the primary file (include the full path name) of an attachable database. To use **AttachDBFileName**, you must also specify the database name with the provider string Database keyword. If the database was previously attached, [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] does not reattach it (it uses the attached database as the default for the connection).|
@@ -96,7 +96,7 @@ manager: craigg
9696
|**PacketSize**|SSPROP_INIT_PACKETSIZE|Network packet size. The default is 4096.|
9797
|**PersistSensitive**|DBPROP_AUTH_PERSIST_SENSITIVE_AUTHINFO|Accepts the strings "yes" and "no" as values. When "no", the data source object is not allowed to persist sensitive authentication information|
9898
|**PWD**|DBPROP_AUTH_PASSWORD|The [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] login password.|
99-
|**Server**|DBPROP_INIT_DATASOURCE|The name of a [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] instance. The value must be either the name of a server on the network, an IP address, or the name of a [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Configuration Manager alias.<br /><br /> When not specified, a connection is made to the default instance on the local computer.<br /><br /> The **Address** keyword overrides the **Server** keyword.<br /><br /> You can connect to the default instance on the local server by specifying one of the following:<br /><br /> **Server=;**<br /><br /> **Server=.;**<br /><br /> **Server=(local);**<br /><br /> **Server=(local);**<br /><br /> **Server=(localhost);**<br /><br /> **Server=(localdb)\\** *instancename* **;**<br /><br /> For more information about LocalDB support, see [OLE DB Driver for SQL Server Support for LocalDB](../../oledb/features/oledb-driver-for-sql-server-support-for-localdb.md).<br /><br /> To specify a named instance of [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)], append **\\***InstanceName*.<br /><br /> When no server is specified, a connection is made to the default instance on the local computer.<br /><br /> If you specify an IP address, make sure that the TCP/IP or named pipes protocols are enabled in [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Configuration Manager.<br /><br /> The complete syntax for the **Server** keyword is as follows:<br /><br /> **Server=**[*protocol***:**]*Server*[**,***port*]<br /><br /> *protocol* can be **tcp** (TCP/IP), **lpc** (shared memory), or **np** (named pipes).<br /><br /> The following is an example of specifying a named pipe:<br /><br /> `np:\\.\pipe\MSSQL$MYINST01\sql\query`<br /><br /> This line specifies named pipe protocol, a named pipe on the local machine (`\\.\pipe`), the name of the [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] instance (`MSSQL$MYINST01`), and the default name of the named pipe (`sql/query`).<br /><br /> If neither a *protocol* nor the **Network** keyword is specified, OLE DB Driver for SQL Server will use the protocol order specified in [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Configuration Manager.<br /><br /> *port* is the port to connect to, on the specified server. By default, [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] uses port 1433.<br /><br /> Spaces are ignored at the beginning of the value passed to **Server** in connection strings when using OLE DB Driver for SQL Server.|
99+
|**Server**|DBPROP_INIT_DATASOURCE|The name of a [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] instance. The value must be either the name of a server on the network, an IP address, or the name of a [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Configuration Manager alias.<br /><br /> When not specified, a connection is made to the default instance on the local computer.<br /><br /> The **Address** keyword overrides the **Server** keyword.<br /><br /> You can connect to the default instance on the local server by specifying one of the following:<br /><br /> **Server=;**<br /><br /> **Server=.;**<br /><br /> **Server=(local);**<br /><br /> **Server=(local);**<br /><br /> **Server=(localhost);**<br /><br /> **Server=(localdb)\\** *instancename* **;**<br /><br /> For more information about LocalDB support, see [OLE DB Driver for SQL Server Support for LocalDB](../../oledb/features/oledb-driver-for-sql-server-support-for-localdb.md).<br /><br /> To specify a named instance of [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)], append **\\**_InstanceName_.<br /><br /> When no server is specified, a connection is made to the default instance on the local computer.<br /><br /> If you specify an IP address, make sure that the TCP/IP or named pipes protocols are enabled in [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Configuration Manager.<br /><br /> The complete syntax for the **Server** keyword is as follows:<br /><br /> **Server=**[_protocol_**:**]*Server*[**,**_port_]<br /><br /> _protocol_ can be **tcp** (TCP/IP), **lpc** (shared memory), or **np** (named pipes).<br /><br /> The following is an example of specifying a named pipe:<br /><br /> `np:\\.\pipe\MSSQL$MYINST01\sql\query`<br /><br /> This line specifies named pipe protocol, a named pipe on the local machine (`\\.\pipe`), the name of the [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] instance (`MSSQL$MYINST01`), and the default name of the named pipe (`sql/query`).<br /><br /> If neither a *protocol* nor the **Network** keyword is specified, OLE DB Driver for SQL Server will use the protocol order specified in [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] Configuration Manager.<br /><br /> *port* is the port to connect to, on the specified server. By default, [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] uses port 1433.<br /><br /> Spaces are ignored at the beginning of the value passed to **Server** in connection strings when using OLE DB Driver for SQL Server.|
100100
|**ServerSPN**|SSPROP_INIT_SERVERSPN|The SPN for the server. The default value is an empty string. An empty string causes OLE DB Driver for SQL Server to use the default, provider-generated SPN.|
101101
|**Timeout**|DBPROP_INIT_TIMEOUT|The amount of time (in seconds) to wait for data source initialization to complete.|
102102
|**Trusted_Connection**|DBPROP_AUTH_INTEGRATED|When "yes", instructs the OLE DB Driver for SQL Server to use Windows Authentication Mode for login validation. Otherwise instructs the OLE DB Driver for SQL Server to use a [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] username and password for login validation, and the UID and PWD keywords must be specified.|

docs/connect/oledb/ole-db/schema-rowsets-distributed-query-support.md

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

3030
To support [!INCLUDE[ssNoVersion](../../../includes/ssnoversion-md.md)] distributed queries, the OLE DB Driver for SQL Server **IDBSchemaRowset** interface returns metadata on linked servers.
3131

32-
If the DBPROPSET_SQLSERVERSESSION property SSPROP_QUOTEDCATALOGNAMES is VARIANT_TRUE, a quoted identifier can be specified for the catalog name (for example "my.catalog"). When restricting schema rowset output by catalog, the OLE DB Driver for SQL Server recognizes a two-part name containing the linked server and catalog name. For the schema rowsets in the table below, specifying a two-part catalog name as *linked_server***.***catalog* restricts output to the applicable catalog of the named linked server.
32+
If the DBPROPSET_SQLSERVERSESSION property SSPROP_QUOTEDCATALOGNAMES is VARIANT_TRUE, a quoted identifier can be specified for the catalog name (for example "my.catalog"). When restricting schema rowset output by catalog, the OLE DB Driver for SQL Server recognizes a two-part name containing the linked server and catalog name. For the schema rowsets in the table below, specifying a two-part catalog name as _linked_server_**.**_catalog_ restricts output to the applicable catalog of the named linked server.
3333

3434
|Schema rowset|Catalog restriction|
3535
|-------------------|-------------------------|

docs/connect/oledb/ole-db/stored-procedures-calling.md

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

9494
The general syntax for calling a procedure by using the ODBC CALL escape sequence is:
9595

96-
{[**?=**]**call***procedure_name*[**(**[*parameter*][**,**[*parameter*]]...**)**]}
96+
{[**?=**]**call**_procedure_name_[**(**[*parameter*][**,**[_parameter_]]...**)**]}
9797

9898
For example:
9999

docs/connect/php/how-to-specify-sql-server-data-types-when-using-the-sqlsrv-driver.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The following steps summarize how to specify the SQL Server data type when sendi
3636

3737
3. Construct the *$params* array to be used when preparing or executing the query. Note that each element of the *$params* array must also be an array when you specify the SQL Server data type.
3838

39-
4. Specify the desired SQL Server data type by using the appropriate **SQLSRV_SQLTYPE_\*** constant as the fourth parameter in each subarray of the *$params* array. For a complete list of the **SQLSRV_SQLTYPE_\*** constants, see the SQLTYPEs section of [Constants &#40;Microsoft Drivers for PHP for SQL Server&#41;](../../connect/php/constants-microsoft-drivers-for-php-for-sql-server.md). For example, in the code below, *$changeDate*, *$rate*, and *$payFrequency* are specified respectively as the SQL Server types **datetime**, **money**, and **tinyint** in the *$params* array. Because no SQL Server type is specified for *$employeeId* and it is initialized to an integer, the default SQL Server type **integer** is used.
39+
4. Specify the desired SQL Server data type by using the appropriate **SQLSRV_SQLTYPE_&#42;** constant as the fourth parameter in each subarray of the *$params* array. For a complete list of the **SQLSRV_SQLTYPE_&#42;** constants, see the SQLTYPEs section of [Constants &#40;Microsoft Drivers for PHP for SQL Server&#41;](../../connect/php/constants-microsoft-drivers-for-php-for-sql-server.md). For example, in the code below, *$changeDate*, *$rate*, and *$payFrequency* are specified respectively as the SQL Server types **datetime**, **money**, and **tinyint** in the *$params* array. Because no SQL Server type is specified for *$employeeId* and it is initialized to an integer, the default SQL Server type **integer** is used.
4040

4141
```
4242
$employeeId = 5;

0 commit comments

Comments
 (0)