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

Commit 291ae8f

Browse files
authored
Merge pull request #16639 from MicrosoftDocs/master
8/17 PM Publish
2 parents e700497 + 044f000 commit 291ae8f

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

docs/ado/guide/data/step-2-initialize-the-main-list-box.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Private Sub Form_Load()
4040
End Sub
4141
```
4242

43-
This code instantiates the global Record and Recordset objects. The Record object, `grec`, is opened with a URL specified as the ActiveConnection. If the URL exists, it is opened; if it does not already exist, it is created. Note that you should replace "<https://servername/foldername/>" with a valid URL from your environment.
43+
This code instantiates the global Record and Recordset objects. The Record object, `grec`, is opened with a URL specified as the ActiveConnection. If the URL exists, it is opened; if it does not already exist, it is created. Note that you should replace `https://servername/foldername/` with a valid URL from your environment.
4444

4545
The Recordset object, `grs`, is opened on the children of the Record, `grec`. Then `lstMain` is populated with the file names of the resources published to the URL.
4646

docs/ado/reference/ado-api/open-method-ado-recordset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ recordset.Open Source, ActiveConnection, CursorType, LockType, Options
5555

5656
Using the **Open** method on a **Recordset** object opens a cursor that represents records from a base table, the results of a query, or a previously saved **Recordset**.
5757

58-
Use the optional *Source* argument to specify a data source using one of the following: a **Command** object variable, an SQL statement, a stored procedure, a table name, a URL, or a complete file path name. If *Source* is a file path name, it can be a full path ("c:\dir\file.rst"), a relative path ("..\file.rst"), or a URL ("<https://files/file.rst>").
58+
Use the optional *Source* argument to specify a data source using one of the following: a **Command** object variable, an SQL statement, a stored procedure, a table name, a URL, or a complete file path name. If *Source* is a file path name, it can be a full path ("c:\dir\file.rst"), a relative path ("..\file.rst"), or a URL (`https://files/file.rst`).
5959

6060
It is not a good idea to use the *Source* argument of the **Open** method to perform an action query that does not return records because there is no easy way to determine whether the call succeeded. The **Recordset** returned by such a query will be closed. To perform a query that does not return records, such as a SQL INSERT statement, call the [Execute](../../../ado/reference/ado-api/execute-method-ado-command.md) method of a **Command** object or the [Execute](../../../ado/reference/ado-api/execute-method-ado-connection.md) method of a [Connection](../../../ado/reference/ado-api/connection-object-ado.md) object instead.
6161

docs/database-engine/configure-windows/connect-to-sql-server-when-system-administrators-are-locked-out.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ You can start an instance of [!INCLUDE[ssNoVersion](../../includes/ssnoversion-m
3838

3939
When you start the instance in single-user mode, first stop the [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Agent service. Otherwise, [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Agent might connect first, taking the only available connection to the server and blocking you from logging in.
4040

41-
It's also possible for an unknown client application to take the only available connection before you are able to log in. In order to prevent this from happening, you can use the `-m` option followed by an application name to limit connections to a single connection from the specified application. For example, starting [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] with `-m"sqlcmd"` limits connections to a single connection that identifies itself as the **sqlcmd** client program. To connect through the Query Editor in [!INCLUDE[ssManStudio](../../includes/ssmanstudio-md.md)], use `-m"Microsoft SQL Server Management Studio - Query"`.
41+
It's also possible for an unknown client application to take the only available connection before you are able to log in. In order to prevent this from happening, you can use the `-m` option followed by an application name to limit connections to a single connection from the specified application. For example, starting [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] with `-mSQLCMD` limits connections to a single connection that identifies itself as the **sqlcmd** client program. To connect through the Query Editor in [!INCLUDE[ssManStudio](../../includes/ssmanstudio-md.md)], use `-m"Microsoft SQL Server Management Studio - Query"`.
4242

4343

4444
> [!IMPORTANT]
@@ -49,7 +49,7 @@ The following table summarizes the different ways to start your instance in sing
4949
| Option | Description | When to use |
5050
|:---|:---|:---|
5151
|`-m` | Limits connections to a single connection | When there are no other users attempting to connect to the instance or you are not sure of the application name you are using to connect to the instance. |
52-
|`-m"sqlcmd"`| Limits connections to a single connection that must identify itself as the **sqlcmd** client program| When you plan to connect to the instance with **sqlcmd** and you want to prevent other applications from taking the only available connection. |
52+
|`-mSQLCMD`| Limits connections to a single connection that must identify itself as the **sqlcmd** client program| When you plan to connect to the instance with **sqlcmd** and you want to prevent other applications from taking the only available connection. |
5353
|`-m"Microsoft SQL Server Management Studio - Query"`| Limits connections to a single connection that must identify itself as the **Microsoft SQL Server Management Studio - Query** application.| When you plan to connect to the instance through the Query Editor in [!INCLUDE[ssManStudio](../../includes/ssmanstudio-md.md)] and you want to prevent other applications from taking the only available connection. |
5454
|`-f`| Limits connections to a single connection and starts the instance in minimal configuration | When some other configuration is preventing you from starting. |
5555
| &nbsp; | &nbsp; | &nbsp; |

docs/relational-databases/track-changes/work-with-change-tracking-sql-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ END
150150
```sql
151151
-- Check all tables with change tracking enabled
152152
IF EXISTS (
153-
SELECT COUNT(*) FROM sys.change_tracking_tables
153+
SELECT 1 FROM sys.change_tracking_tables
154154
WHERE min_valid_version > @last_synchronization_version )
155155
BEGIN
156156
-- Handle invalid version & do not enumerate changes

docs/reporting-services/tools/set-deployment-properties-reporting-services.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ms.date: 05/15/2019
6060
6161
10. In the **TargetServerURL** text box, type the URL of the target report server. Before you publish a report, you must set this property to a valid report server URL. When publishing to a report server running in native mode, use the URL of the virtual directory of the report server (for example, http:*//server/reportserver* or https:*//server/reportserver)*. This is the virtual directory of the report server, not the web portal.
6262

63-
When publishing to a report server running in SharePoint integrated mode, use a URL to a SharePoint top-level site or subsite. If you do not specify a site, the default top-level site is used, (for example, <https://*servername*>, <https://*servername*/*site*>, or <https://*servername*/*site*/*subsite*>).
63+
When publishing to a report server running in SharePoint integrated mode, use a URL to a SharePoint top-level site or subsite. If you do not specify a site, the default top-level site is used, (for example, `https://*servername*`, `https://*servername*/*site*`, or `https://*servername*/*site*/*subsite*`).
6464

6565
## To set Configuration Manager properties
6666

docs/sql-server/partner-monitor-sql-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ To learn more about some of our other partners, see [High availability and disas
5656
<!--Marketplace Links -->
5757
<!----Not available[idera_marketplace]:https://azure.microsoft.com/marketplace/-->
5858

59-
[quest_marketplace]:https://azuremarketplace.microsoft.com/marketplace/apps/quest.spotlight-enterprise-12-3
59+
[quest_marketplace]:https://azuremarketplace.microsoft.com/marketplace/apps/quest.spotlightcloud?tab=Overview
6060
[solarwinds_marketplace]:https://azuremarketplace.microsoft.com/marketplace/apps/solarwinds.solarwinds-database-performance-analyzer
6161

6262
<!--Press links-->

docs/ssms/menu-help/save-as.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Locate the existing project folder from this drop-down menu. Selecting a folder
2828
Use this option to view the current file name, change the file name, or filter the files and folders that are displayed. To filter the files and folders that are displayed, enter a full or partial file name on which to filter. You can use the asterisk (`*`) as a wildcard.
2929

3030
> [!TIP]
31-
> To display files on Web and network locations, enter a URL or network path in the **File name** box. For example, "<https://mywebsite>" displays the files available at the "mywebsite" Web location and "\\\myserver\myshare" displays the files available at the "myshare" location on "myserver".
31+
> To display files on Web and network locations, enter a URL or network path in the **File name** box. For example, `https://mywebsite` displays the files available at the "mywebsite" Web location and "\\\myserver\myshare" displays the files available at the "myshare" location on "myserver".
3232
3333
**Save as type**
3434
Use this option to select a new file type for the selected item. The file types displayed include all available file types to which the selected item can be converted.

0 commit comments

Comments
 (0)