Skip to content

Commit ad03be0

Browse files
authored
fixing formatting
1 parent c0baab5 commit ad03be0

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

docs/samples/adventureworks-install-configure.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,8 @@ For more information on restoring a SQL Server database, see [Restore a database
8686

8787
You can restore your sample database using Transact-SQL (T-SQL). An example to restore AdventureWorks2019 is provided below, but the database name and installation file path may vary depending on your environment.
8888

89-
To restore AdventureWorks2019, modify values as appropriate to your environment and then run the following Transact-SQL (T-SQL) command:
89+
To restore AdventureWorks2019 to **Windows**, modify values as appropriate to your environment and then run the following Transact-SQL (T-SQL) command:
9090

91-
## Windows
9291

9392
```sql
9493
USE [master]
@@ -99,9 +98,8 @@ GO
9998

10099
```
101100

102-
## SQL Server on Linux
101+
To restore AdventureWorks2019 to **Linux**, change the Windows filesystem path to Linux, and then run the following Transact-SQL (T-SQL) command:
103102

104-
You need to chagen Windows filesystem path to Linux file system path.
105103

106104
```sql
107105
USE [master]
@@ -111,7 +109,6 @@ WITH MOVE 'AdventureWorks2017' TO '/var/opt/mssql/data/AdventureWorks2019.mdf',
111109
MOVE 'AdventureWorks2017_log' TO '/var/opt/mssql/data/AdventureWorks2019_log.ldf',
112110
FILE = 1, NOUNLOAD, STATS = 5
113111
GO
114-
115112
```
116113

117114
# [Azure Data Studio](#tab/data-studio)

0 commit comments

Comments
 (0)