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

Commit 37b0a06

Browse files
authored
Merge pull request #8518 from Saisang/sai-fixMultipleAsterisk-part6
fix multiple asterisks 12/17 - 4
2 parents ae37aa7 + 560889e commit 37b0a06

38 files changed

Lines changed: 75 additions & 74 deletions

File tree

docs/2014/sql-server/install/user-defined-functions-are-not-allowed-in-system-function-schema.md

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

5050
4. Replace references to **system_function_schema** with **dbo** in all scripts that contain user-defined function DDL statements.
5151

52-
5. Modify scripts that invoke these functions to use either the two-part name dbo**.***function_name*, or the three-part name *database_name***.**dbo.*function_name*.
52+
5. Modify scripts that invoke these functions to use either the two-part name dbo**.**_function_name_, or the three-part name _database_name_**.**dbo.*function_name*.
5353

5454
For more information, see the following topics in SQL Server Books Online:
5555

docs/ado/guide/appendixes/visual-c-ado-programming.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ variable = objectPtr->GetProperty;  // get property value
6868
For example, the **Command** object **ActiveConnection** property is declared with an alternative syntax for **Get**_ActiveConnection_ and **PutRef**_ActiveConnection_. The **PutRef**- syntax is a good choice because in practice, you will typically want to put an open **Connection** object (that is, a **Connection** object pointer) in this property. On the other hand, the **Recordset** object has **Get**-, **Put**-, and **PutRef**_ActiveConnection_ operations, but no alternative syntax.
6969
7070
## Collections, the GetItem Method, and the Item Property
71+
7172
ADO defines several collections, including **Fields**, **Parameters**, **Properties**, and **Errors**. In Visual C++, the **GetItem(_index_)** method returns a member of the collection. *Index* is a **Variant**, the value of which is either a numeric index of the member in the collection, or a string containing the name of the member.
7273
7374
The **__declspec(property...)** compiler directive declares the **Item** property as an alternative syntax to each collection's fundamental **GetItem()** method. The alternative syntax uses square brackets and looks similar to an array reference. In general, the two forms look like the following:

docs/ado/guide/data/required-providers-for-data-shaping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Data shaping typically requires two providers. The service provider, [Data Shapi
2020

2121
The name of the service provider (MSDataShape) can be specified as the value of the [Connection](../../../ado/reference/ado-api/connection-object-ado.md) object [Provider](../../../ado/reference/ado-api/provider-property-ado.md) property or the connection string keyword "Provider=MSDataShape;".
2222

23-
The name of the data provider can be specified as the value of the **Data Provider** dynamic property, which is added to the **Connection** object [Properties](../../../ado/reference/ado-api/properties-collection-ado.md) collection by the Data Shaping Service for OLE DB, or the connection string keyword "**Data Provider=***provider*".
23+
The name of the data provider can be specified as the value of the **Data Provider** dynamic property, which is added to the **Connection** object [Properties](../../../ado/reference/ado-api/properties-collection-ado.md) collection by the Data Shaping Service for OLE DB, or the connection string keyword "**Data Provider=**_provider_".
2424

2525
No data provider is required if the **Recordset** is not populated (for example, as in a fabricated **Recordset** where columns are created with the NEW keyword). In that case, specify "**Data Provider=**none;".
2626

docs/ado/guide/data/types-of-events.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ manager: craigg
2222
There are two basic types of events. "Will Events," which are called before an operation starts, usually include "Will" in their names - for example, **WillChangeRecordset** or **WillConnect**. Events that are called after an event has been completed usually include "Complete" in their names - for example, **RecordChangeComplete** or **ConnectComplete**. Exceptions exist - such as **InfoMessage** - but these occur after the associated operation has completed.
2323

2424
## Will Events
25-
Event handlers called before the operation starts offer you the opportunity to examine or modify the operation parameters, and then either cancel the operation or allow it to complete. These event-handler routines usually have names of the form **Will*Event***.
25+
Event handlers called before the operation starts offer you the opportunity to examine or modify the operation parameters, and then either cancel the operation or allow it to complete. These event-handler routines usually have names of the form <strong>Will*Event*</strong>.
2626

2727
## Complete Events
28-
Event handlers called after an operation completes can notify your application that an operation has concluded. Such an event handler is also notified when a Will event handler cancels a pending operation. These event-handler routines usually have names of the form ***Event*Complete**.
28+
Event handlers called after an operation completes can notify your application that an operation has concluded. Such an event handler is also notified when a Will event handler cancels a pending operation. These event-handler routines usually have names of the form <strong>*Event*Complete</strong>.
2929

3030
Will and Complete events are typically used in pairs.
3131

3232
## Other Events
33-
The other event handlers - that is, events whose names are not of the form **Will*Event*** or ***Event*Complete** - are called only after an operation completes. These events are **Disconnect**, **EndOfRecordset**, and **InfoMessage**.
33+
The other event handlers - that is, events whose names are not of the form <strong>Will*Event*</strong> or <strong>*Event*Complete</strong> - are called only after an operation completes. These events are **Disconnect**, **EndOfRecordset**, and **InfoMessage**.
3434

3535
## See Also
3636
[ADO Event Handler Summary](../../../ado/guide/data/ado-event-handler-summary.md)

docs/ado/guide/remote-data-service/understanding-the-customization-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ identifier
4949

5050
A particular section is used under the following circumstances:
5151

52-
- A **connect** section is used if the value part of the client connect string keyword, "**Data Source=***value*", matches a **connect** section identifier*.*
52+
- A **connect** section is used if the value part of the client connect string keyword, "**Data Source=**_value_", matches a **connect** section identifier*.*
5353

5454
- An **sql** section is used if the client command string contains a string that matches an **sql** section identifier.
5555

docs/ado/reference/ado-api/willexecute-event-ado.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ WillExecute Source, CursorType, LockType, Options, adStatus, pCommand, pRecordse
5959
**WillExecute** allows you to examine and modify the pending execution parameters. This event may return a request that the pending command be canceled.
6060

6161
> [!NOTE]
62-
> If the original source for a **Command** is a stream specified by the [CommandStream Property (ADO)](../../../ado/reference/ado-api/commandstream-property-ado.md) property, assigning a new string to the **WillExecute***Source* parameter changes the source of the **Command**. The **CommandStream** property will be cleared and the [CommandText Property (ADO)](../../../ado/reference/ado-api/commandtext-property-ado.md) property will be updated with the new source. The original stream specified by **CommandStream** will be released and cannot be accessed.
62+
> If the original source for a **Command** is a stream specified by the [CommandStream Property (ADO)](../../../ado/reference/ado-api/commandstream-property-ado.md) property, assigning a new string to the **WillExecute**_Source_ parameter changes the source of the **Command**. The **CommandStream** property will be cleared and the [CommandText Property (ADO)](../../../ado/reference/ado-api/commandtext-property-ado.md) property will be updated with the new source. The original stream specified by **CommandStream** will be released and cannot be accessed.
6363
6464
If the dialect of the new source string differs from the original setting of the [Dialect Property](../../../ado/reference/ado-api/dialect-property.md) property (which corresponded to the **CommandStream**), the correct dialect must be specified by setting the **Dialect** property of the command object referenced by *pCommand*.
6565

docs/analytics-platform-system/uninstall-analytics-platform-system-hotfixes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ To perform these steps, you will need:
2121

2222
- An Analytics Platform System login with permissions to access the Admin Console to monitor the appliance.
2323

24-
- The Domain Administrator account to login to the *<appliance_domain>***-HST01** node.
24+
- The Domain Administrator account to login to the <em><appliance_domain></em>**-HST01** node.
2525

2626
- The Knowledge Base article number for the hotfix to uninstall.
2727

2828
## <a name="HowToUninstallPDW"></a>To uninstall a SQL Server PDW hotfix
2929

30-
1. Log on to the *<appliance_domain>***-HST01** node as the Fabric Domain Administrator.
30+
1. Log on to the <em><appliance_domain></em>**-HST01** node as the Fabric Domain Administrator.
3131

3232
2. Use the Run as Administrator option to open a Command Prompt.
3333

docs/analytics-platform-system/uninstall-microsoft-updates.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ To perform these steps, you will need:
2121

2222
- An Analytics Platform System login with permissions to access the Admin Console to monitor the appliance.
2323

24-
- Knowledge of the Fabric Domain Administrator account to log in to the *<Fabric Domain>***-HST01** node.
24+
- Knowledge of the Fabric Domain Administrator account to log in to the <em><Fabric Domain></em>**-HST01** node.
2525

2626
## <a name="HowToUninstallMSFT"></a>To uninstall Microsoft updates
2727

28-
1. Log in to the *<Fabric Domain>***-HST01** node as the Fabric Domain Administrator.
28+
1. Log in to the <em><Fabric Domain></em>**-HST01** node as the Fabric Domain Administrator.
2929

3030
2. To uninstall all updates that are approved for WSUS to uninstall, open a Command Prompt window and enter the following command. Replace the placeholder items *< >* with the appropriate information.
3131

docs/database-engine/availability-groups/windows/use-the-fail-over-availability-group-wizard-sql-server-management-studio.md

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

5555
4. The information presented by the **Introduction** page depends on whether any secondary replica is eligible for a planned failover. If this page says, "**Perform a planned failover for this availability group**", you can failover the availability group without data loss.
5656

57-
5. On the **Select New Primary Replica** page, you can view the status of the current primary replica and of the WSFC quorum, before you choose the secondary replica that will become the new primary replica (the *failover target*). For a planned manual failover, be sure to select a secondary replica whose **Failover Readiness** value is "**No data loss**". For a forced failover, for all the possible failover targets, this value will be "**Data loss, Warnings(***#***)**", where *#* indicates the number of warnings that exist for a given secondary replica. To view the warnings for a given failover target, click its "Failover Readiness" value.
57+
5. On the **Select New Primary Replica** page, you can view the status of the current primary replica and of the WSFC quorum, before you choose the secondary replica that will become the new primary replica (the *failover target*). For a planned manual failover, be sure to select a secondary replica whose **Failover Readiness** value is "**No data loss**". For a forced failover, for all the possible failover targets, this value will be "**Data loss, Warnings(**_#_**)**", where *#* indicates the number of warnings that exist for a given secondary replica. To view the warnings for a given failover target, click its "Failover Readiness" value.
5858

5959
For more information, see [Select New Primary Replica page](#SelectNewPrimaryReplica), later in this topic.
6060

@@ -145,7 +145,7 @@ manager: craigg
145145
|Value|Description|
146146
|-----------|-----------------|
147147
|**No data loss**|This secondary replica currently supports planned failover. This value occurs only when a synchronous-commit mode secondary replica is currently synchronized with the primary replica.|
148-
|**Data loss, Warnings(** *#* **)**|This secondary replica currently supports forced failover (with possible data loss). This value occurs whenever the secondary replica is not synchronized with the primary replica. Click the data-loss warnings link for information about the possible data loss.|
148+
|**Data loss, Warnings(** _#_ **)**|This secondary replica currently supports forced failover (with possible data loss). This value occurs whenever the secondary replica is not synchronized with the primary replica. Click the data-loss warnings link for information about the possible data loss.|
149149

150150
**Refresh**
151151
Click to update the grid.

docs/database-engine/configure-windows/view-or-change-server-properties-sql-server.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ GO
149149

150150
2. In **SQL Server Configuration Manager**, click **SQL Server Services**.
151151

152-
3. In the details pane, right-click **SQL Server (\<***instancename***>)**, and then click **Properties**.
152+
3. In the details pane, right-click **SQL Server (\<**_instancename_**>)**, and then click **Properties**.
153153

154-
4. In the **SQL Server (\<***instancename***>) Properties** dialog box, change the server properties on the **Service** tab or the **Advanced** tab, and then click **OK**.
154+
4. In the **SQL Server (\<**_instancename_**>) Properties** dialog box, change the server properties on the **Service** tab or the **Advanced** tab, and then click **OK**.
155155

156156
## <a name="FollowUp"></a> Follow Up: After you change server properties
157157
For some properties, the server might have to be restarted before the change can take effect.

0 commit comments

Comments
 (0)