Skip to content

Commit d0584ea

Browse files
authored
Merge pull request #33337 from rwestMSFT/rw-0228-fix-377144
Update sqlcmd path in container article (UUF 377144)
2 parents de67d53 + fd6f026 commit d0584ea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/linux/sql-server-linux-docker-container-deployment.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Explore how SQL Server can be deployed on Linux containers and lear
44
author: amitkh-msft
55
ms.author: amitkh
66
ms.reviewer: vanto, randolphwest
7-
ms.date: 01/21/2025
7+
ms.date: 02/28/2025
88
ms.service: sql
99
ms.subservice: linux
1010
ms.topic: install-set-up-deploy
@@ -149,7 +149,7 @@ If you want to know the version of SQL Server in a running container, run the fo
149149
::: zone pivot="cs1-bash"
150150

151151
```bash
152-
docker exec -it <Container ID or name> /opt/mssql-tools/bin/sqlcmd \
152+
docker exec -it <Container ID or name> /opt/mssql-tools18/bin/sqlcmd \
153153
-S localhost -U sa -P '<password>' \
154154
-Q 'SELECT @@VERSION'
155155
```
@@ -162,7 +162,7 @@ docker exec -it <Container ID or name> /opt/mssql-tools/bin/sqlcmd \
162162
::: zone pivot="cs1-powershell"
163163

164164
```powershell
165-
docker exec -it <Container ID or name> /opt/mssql-tools/bin/sqlcmd `
165+
docker exec -it <Container ID or name> /opt/mssql-tools18/bin/sqlcmd `
166166
-S localhost -U sa -P "<password>" `
167167
-Q "SELECT @@VERSION"
168168
```
@@ -175,7 +175,7 @@ docker exec -it <Container ID or name> /opt/mssql-tools/bin/sqlcmd `
175175
::: zone pivot="cs1-cmd"
176176

177177
```cmd
178-
docker exec -it <Container ID or name> /opt/mssql-tools/bin/sqlcmd ^
178+
docker exec -it <Container ID or name> /opt/mssql-tools18/bin/sqlcmd ^
179179
-S localhost -U sa -P "<password>" ^
180180
-Q "SELECT @@VERSION"
181181
```

0 commit comments

Comments
 (0)