Skip to content

Commit b6ac1d8

Browse files
authored
Rename and refresh sqlagent article (UUF 448479) (#34673)
1 parent eef679a commit b6ac1d8

7 files changed

+98
-85
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47630,6 +47630,11 @@
4763047630
"redirect_url": "/previous-versions/sql/2014/tools/sqlagent90-application",
4763147631
"redirect_document_id": false
4763247632
},
47633+
{
47634+
"source_path": "docs/tools/sqlagent90-application.md",
47635+
"redirect_url": "/sql/tools/sqlagent-application",
47636+
"redirect_document_id": false
47637+
},
4763347638
{
4763447639
"source_path": "docs/2014/tools/sqlcmd-utility.md",
4763547640
"redirect_url": "/previous-versions/sql/2014/tools/sqlcmd-utility",

docs/database-engine/configure-windows/start-stop-pause-resume-restart-sql-server-services.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Start, Stop, Pause, Resume, and Restart SQL Server Services
33
description: Find out how to start, stop, pause, resume, or restart various SQL Server services. See how to use Transact-SQL, PowerShell, and other tools for these actions.
44
author: rwestMSFT
55
ms.author: randolphwest
6-
ms.date: 05/19/2025
6+
ms.date: 07/10/2025
77
ms.service: sql
88
ms.subservice: configuration
99
ms.topic: conceptual
@@ -129,7 +129,7 @@ Use [!INCLUDE [ssmanstudiofull-md](../../includes/ssmanstudiofull-md.md)] to man
129129

130130
1. In Object Explorer, connect to the instance of the [!INCLUDE [ssDE](../../includes/ssde-md.md)], right-click the instance of the [!INCLUDE [ssDE](../../includes/ssde-md.md)] you want to start, and then select **Start**, **Stop**, **Pause**, **Resume**, or **Restart**.
131131

132-
Or, in Registered Servers, right-click the instance of the [!INCLUDE [ssDE](../../includes/ssde-md.md)] you want to start, point to **Service Control**, and then select **Start**, **Stop**, **Pause**, **Resume**, or **Restart**.
132+
Or, in Registered Servers, right-click the instance of the [!INCLUDE [ssDE](../../includes/ssde-md.md)] you want to start, point to **Service Control**, and then select **Start**, **Stop**, **Pause**, **Resume**, or **Restart**.
133133

134134
1. If the **User Account Control** dialog box appears, select **Yes**.
135135

@@ -232,7 +232,7 @@ net start "SQL Server Agent (instancename)"
232232
net start SQLAgent$instancename
233233
```
234234

235-
For information about how to run SQL Server Agent in verbose mode for troubleshooting, see [sqlagent90 Application](../../tools/sqlagent90-application.md).
235+
For information about how to run SQL Server Agent in verbose mode for troubleshooting, see [sqlagent application](../../tools/sqlagent-application.md).
236236

237237
<a id="Browser"></a>
238238

@@ -381,6 +381,6 @@ When you attempt to start [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.
381381
## Related content
382382

383383
- [SQL Server installation guide](../install-windows/install-sql-server.md)
384-
- [View and Read SQL Server Setup Log Files](../install-windows/view-and-read-sql-server-setup-log-files.md)
384+
- [View and read SQL Server Setup log files](../install-windows/view-and-read-sql-server-setup-log-files.md)
385385
- [SQL Server Configuration Manager](../../relational-databases/sql-server-configuration-manager.md)
386-
- [Start SQL Server with Minimal Configuration](start-sql-server-with-minimal-configuration.md)
386+
- [Start SQL Server with minimal configuration](start-sql-server-with-minimal-configuration.md)

docs/database-engine/install-windows/configure-sql-server-on-a-server-core-installation.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Configure Server Core Installation
33
description: This article covers details about configuring SQL Server on a Server Core installation, including troubleshooting tools.
44
author: rwestMSFT
55
ms.author: randolphwest
6-
ms.date: 06/03/2025
6+
ms.date: 07/10/2025
77
ms.service: sql
88
ms.subservice: install
99
ms.topic: install-set-up-deploy
@@ -166,15 +166,15 @@ Perform the following actions to configure remote access of a [!INCLUDE [ssNoVer
166166

167167
### Enable remote connections on the SQL Server instance
168168

169-
To enable remote connections, use SQLCMD.exe locally and execute the following statements against the Server Core instance:
169+
To enable remote connections, use **sqlcmd** locally and execute the following statements against the Server Core instance:
170170

171-
- `EXEC sys.sp_configure N'remote access', N'1'`
171+
```sql
172+
EXEC sys.sp_configure N'remote access', N'1';
173+
GO
172174

173-
`GO`
174-
175-
- `RECONFIGURE WITH OVERRIDE`
176-
177-
`GO`
175+
RECONFIGURE WITH OVERRIDE
176+
GO
177+
```
178178

179179
### Enable and start the SQL Server Browser service
180180

@@ -241,7 +241,7 @@ You can use the following command prompt utilities that enable you to script [!I
241241
| [dtexec](../../integration-services/packages/dtexec-utility.md) | Used to configure and execute an [!INCLUDE [ssISnoversion](../../includes/ssisnoversion-md.md)] package. | [!INCLUDE [ssinstallpath-md](../../includes/ssinstallpath-md.md)]DTS\Binn |
242242
| [dtutil](../../integration-services/dtutil-utility.md) | Used to manage SSIS packages. | [!INCLUDE [ssinstallpath-md](../../includes/ssinstallpath-md.md)]DTS\Binn |
243243
| [osql](../../tools/osql-utility.md) | Allows you to enter [!INCLUDE [tsql](../../includes/tsql-md.md)] statements, system procedures, and script files at the command prompt. | [!INCLUDE [ssinstallpath-md](../../includes/ssinstallpath-md.md)]Tools\Binn |
244-
| [sqlagent90](../../tools/sqlagent90-application.md) | Used to start [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)] Agent from a command prompt. | \<drive>:\Program Files\\[!INCLUDE [msCoName](../../includes/msconame-md.md)] [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)]\\<*instance_name*>\MSSQL\Binn |
244+
| [sqlagent](../../tools/sqlagent-application.md) | Used to start [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)] Agent from a command prompt. | \<drive>:\Program Files\\[!INCLUDE [msCoName](../../includes/msconame-md.md)] [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)]\\<*instance_name*>\MSSQL\Binn |
245245
| [sqlcmd](../../tools/sqlcmd/sqlcmd-utility.md) | Allows you to enter [!INCLUDE [tsql](../../includes/tsql-md.md)] statements, system procedures, and script files at the command prompt. | [!INCLUDE [ssinstallpath-md](../../includes/ssinstallpath-md.md)]Tools\Binn |
246246
| [SQLdiag](../../tools/sqldiag-utility.md) | Used to collect diagnostic information for [!INCLUDE [msCoName](../../includes/msconame-md.md)] Customer Service and Support. | [!INCLUDE [ssinstallpath-md](../../includes/ssinstallpath-md.md)]Tools\Binn |
247247
| [sqlmaint](../../tools/sqlmaint-utility.md) | Used to execute database maintenance plans created in previous versions of [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)]. | \<drive>:\Program Files\\[!INCLUDE [msCoName](../../includes/msconame-md.md)] [!INCLUDE [ssNoVersion](../../includes/ssnoversion-md.md)]\MSSQL14.MSSQLSERVER\MSSQL\Binn |

docs/toc.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8179,19 +8179,19 @@ items:
81798179
href: tools/mssql-cli.md
81808180
- name: osql
81818181
href: tools/osql-utility.md
8182-
- name: Profiler Utility
8182+
- name: Profiler utility
81838183
href: tools/profiler-utility.md
8184-
- name: sqlagent90 Application
8185-
href: tools/sqlagent90-application.md
8184+
- name: sqlagent application
8185+
href: tools/sqlagent-application.md
81868186
- name: SQLdiag
81878187
href: tools/sqldiag-utility.md
81888188
- name: SqlLocalDB
81898189
href: tools/sqllocaldb-utility.md
8190-
- name: sqllogship Application
8190+
- name: sqllogship application
81918191
href: tools/sqllogship-application.md
81928192
- name: sqlmaint
81938193
href: tools/sqlmaint-utility.md
8194-
- name: sqlservr Application
8194+
- name: sqlservr application
81958195
href: tools/sqlservr-application.md
81968196
- name: tablediff
81978197
href: tools/tablediff-utility.md

docs/tools/command-prompt-utility-reference-database-engine.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Command prompt utilities enable you to script SQL Server operations
44
author: rwestMSFT
55
ms.author: randolphwest
66
ms.reviewer: maghan
7-
ms.date: 04/07/2025
7+
ms.date: 07/10/2025
88
ms.service: sql
99
ms.subservice: tools-other
1010
ms.topic: conceptual
@@ -34,26 +34,26 @@ For information on the *main* SQL graphical and command-line tools, see [SQL too
3434

3535
| Utility | Description | Installed in |
3636
| --- | --- | --- |
37-
| [bcp](bcp-utility.md) | Used to copy data between an instance of [!INCLUDE [msCoName](../includes/msconame-md.md)] [!INCLUDE [ssNoVersion](../includes/ssnoversion-md.md)] and a data file in a user-specified format. | \<*drive*:>\Program Files\\[!INCLUDE [msCoName](../includes/msconame-md.md)] [!INCLUDE [ssNoVersion](../includes/ssnoversion-md.md)]\Client SDK\ODBC\110\Tools\Binn |
38-
| [dta](dta/dta-utility.md) | Used to analyze a workload and recommend physical design structures to optimize server performance for that workload. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]Tools\Binn |
39-
| [dtexec](../integration-services/packages/dtexec-utility.md) | Used to configure and execute an [!INCLUDE [ssISnoversion](../includes/ssisnoversion-md.md)] package. A user interface version of this command-line utility is called **DTExecUI**, which brings up the Execute Package Utility. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]DTS\Binn |
40-
| [dtutil](../integration-services/dtutil-utility.md) | Used to manage SQL Server Integration Services (SSIS) packages. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]DTS\Binn |
41-
| [Deploy Model Solutions with the Deployment](/analysis-services/multidimensional-models/deploy-model-solutions-with-the-deployment-utility) | Used to deploy [!INCLUDE [ssASnoversion](../includes/ssasnoversion-md.md)] projects to instances of [!INCLUDE [ssASnoversion](../includes/ssasnoversion-md.md)]. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]Tools\Binn\VShell\Common7\IDE |
42-
| [osql](osql-utility.md) | Allows you to enter [!INCLUDE [tsql](../includes/tsql-md.md)] statements, system procedures, and script files at the command prompt. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]Tools\Binn |
43-
| [Profiler](profiler-utility.md) | Used to start [!INCLUDE [ssSqlProfiler](../includes/sssqlprofiler-md.md)] from a command prompt. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]Tools\Binn |
44-
| [RS.exe (SSRS)](../reporting-services/tools/rs-exe-utility-ssrs.md) | Used to run scripts designed for managing [!INCLUDE [ssRSnoversion](../includes/ssrsnoversion-md.md)] report servers. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]Tools\Binn |
45-
| [rsconfig (SSRS)](../reporting-services/tools/rsconfig-utility-ssrs.md) | Used to configure a report server connection. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]Tools\Binn |
46-
| [rskeymgmt (SSRS)](../reporting-services/tools/rskeymgmt-utility-ssrs.md) | Used to manage encryption keys on a report server. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]Tools\Binn |
47-
| [sqlagent90 application](sqlagent90-application.md) | Used to start [!INCLUDE [ssNoVersion](../includes/ssnoversion-md.md)] Agent from a command prompt. | \<*drive*>:\Program Files\Microsoft SQL Server\\<*instance_name*>\MSSQL\Binn |
48-
| [sqlcmd](sqlcmd/sqlcmd-utility.md) | Allows you to enter [!INCLUDE [tsql](../includes/tsql-md.md)] statements, system procedures, and script files at the command prompt. | \<*drive*:>\Program Files\\[!INCLUDE [msCoName](../includes/msconame-md.md)] [!INCLUDE [ssNoVersion](../includes/ssnoversion-md.md)]\Client SDK\ODBC\110\Tools\Binn |
49-
| [SQLdiag](sqldiag-utility.md) | Used to collect diagnostic information for [!INCLUDE [msCoName](../includes/msconame-md.md)] Customer Service and Support. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]Tools\Binn |
50-
| [sqllogship](sqllogship-application.md) | Used by applications to perform backup, copy, and restore operations and associated clean-up tasks for a log shipping configuration without running the backup, copy, and restore jobs. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]Tools\Binn |
51-
| [SqlLocalDB](sqllocaldb-utility.md) | An execution mode of [!INCLUDE [ssNoVersion](../includes/ssnoversion-md.md)] targeted to program developers. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]Tools\Binn |
52-
| [sqlmaint](sqlmaint-utility.md) | Used to execute database maintenance plans created in previous versions of [!INCLUDE [ssNoVersion](../includes/ssnoversion-md.md)]. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]\MSSQL\Binn |
53-
| [sqlps](sqlps-utility.md) | Used to run PowerShell commands and scripts. Loads and registers the [!INCLUDE [ssNoVersion](../includes/ssnoversion-md.md)] PowerShell provider and cmdlets. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]Tools\Binn |
54-
| [sqlservr](sqlservr-application.md) | Used to start and stop an instance of [!INCLUDE [ssDE](../includes/ssde-md.md)] from the command prompt for troubleshooting. | \<*drive*>:\Program Files\Microsoft SQL Server\MSSQL16.MSSQLSERVER\MSSQL\Binn |
55-
| [ssms](../ssms/ssms-utility.md) | Used to start [!INCLUDE [ssManStudioFull](../includes/ssmanstudiofull-md.md)] from a command prompt. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]Tools\Binn\VSShell\Common7\IDE |
56-
| [tablediff](tablediff-utility.md) | Used to compare the data in two tables for nonconvergence, which is useful when troubleshooting a replication topology. | [!INCLUDE [ssinstallpath-md](../includes/ssinstallpath-md.md)]COM |
37+
| [bcp](bcp-utility.md) | Used to copy data between an instance of [!INCLUDE [ssNoVersion](../includes/ssnoversion-md.md)] and a data file in a user-specified format. | `<drive>:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn` |
38+
| [dta](dta/dta-utility.md) | Used to analyze a workload and recommend physical design structures to optimize server performance for that workload. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\Tools\Binn` |
39+
| [dtexec](../integration-services/packages/dtexec-utility.md) | Used to configure and execute an [!INCLUDE [ssISnoversion](../includes/ssisnoversion-md.md)] package. A user interface version of this command-line utility is called **DTExecUI**, which brings up the Execute Package Utility. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\DTS\Binn` |
40+
| [dtutil](../integration-services/dtutil-utility.md) | Used to manage SQL Server Integration Services (SSIS) packages. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\DTS\Binn` |
41+
| [Deploy Model Solutions with the Deployment](/analysis-services/multidimensional-models/deploy-model-solutions-with-the-deployment-utility) | Used to deploy [!INCLUDE [ssASnoversion](../includes/ssasnoversion-md.md)] projects to instances of [!INCLUDE [ssASnoversion](../includes/ssasnoversion-md.md)]. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\Tools\Binn\VShell\Common7\IDE` |
42+
| [osql](osql-utility.md) | Allows you to enter [!INCLUDE [tsql](../includes/tsql-md.md)] statements, system procedures, and script files at the command prompt. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\Tools\Binn` |
43+
| [Profiler](profiler-utility.md) | Used to start [!INCLUDE [ssSqlProfiler](../includes/sssqlprofiler-md.md)] from a command prompt. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\Tools\Binn` |
44+
| [RS.exe (SSRS)](../reporting-services/tools/rs-exe-utility-ssrs.md) | Used to run scripts designed for managing [!INCLUDE [ssRSnoversion](../includes/ssrsnoversion-md.md)] report servers. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\Tools\Binn` |
45+
| [rsconfig (SSRS)](../reporting-services/tools/rsconfig-utility-ssrs.md) | Used to configure a report server connection. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\Tools\Binn` |
46+
| [rskeymgmt (SSRS)](../reporting-services/tools/rskeymgmt-utility-ssrs.md) | Used to manage encryption keys on a report server. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\Tools\Binn` |
47+
| [sqlagent application](sqlagent-application.md) | Used to start [!INCLUDE [ssNoVersion](../includes/ssnoversion-md.md)] Agent from a command prompt. | `<drive>:\Program Files\Microsoft SQL Server\<instance_name>\MSSQL\Binn` |
48+
| [sqlcmd](sqlcmd/sqlcmd-utility.md) | Allows you to enter [!INCLUDE [tsql](../includes/tsql-md.md)] statements, system procedures, and script files at the command prompt. | `<drive>:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn` |
49+
| [SQLdiag](sqldiag-utility.md) | Used to collect diagnostic information for Customer Service and Support. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\Tools\Binn` |
50+
| [sqllogship](sqllogship-application.md) | Used by applications to perform backup, copy, and restore operations and associated clean-up tasks for a log shipping configuration, without running the backup, copy, and restore jobs. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\Tools\Binn` |
51+
| [SqlLocalDB](sqllocaldb-utility.md) | An execution mode of [!INCLUDE [ssNoVersion](../includes/ssnoversion-md.md)] targeted to program developers. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\Tools\Binn` |
52+
| [sqlmaint](sqlmaint-utility.md) | Used to execute database maintenance plans created in previous versions of [!INCLUDE [ssNoVersion](../includes/ssnoversion-md.md)]. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\MSSQL\Binn` |
53+
| [sqlps](sqlps-utility.md) | Used to run PowerShell commands and scripts. Loads and registers the [!INCLUDE [ssNoVersion](../includes/ssnoversion-md.md)] PowerShell provider and cmdlets. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\Tools\Binn` |
54+
| [sqlservr](sqlservr-application.md) | Used to start and stop an instance of [!INCLUDE [ssDE](../includes/ssde-md.md)] from the command prompt for troubleshooting. | `<drive>:\Program Files\Microsoft SQL Server\MSSQL16.MSSQLSERVER\MSSQL\Binn` |
55+
| [ssms](../ssms/ssms-utility.md) | Used to start [!INCLUDE [ssManStudioFull](../includes/ssmanstudiofull-md.md)] from a command prompt. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\Tools\Binn\VSShell\Common7\IDE` |
56+
| [tablediff](tablediff-utility.md) | Used to compare the data in two tables for nonconvergence, which is useful when troubleshooting a replication topology. | `<drive>:\Program Files\Microsoft SQL Server\<nnn>\COM` |
5757

5858
## Command-line utilities syntax conventions
5959

0 commit comments

Comments
 (0)