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

Commit d90a628

Browse files
authored
Merge pull request #2121 from rothja/carlasuggestions
Applying organizational feedback
2 parents 238e7ba + 8a80be9 commit d90a628

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

docs/linux/quickstart-install-connect-ubuntu.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.technology: database-engine
1111
---
1212
# Install SQL Server and create a database on Ubuntu
1313

14-
In this quick start tutorial, you first install SQL Server 2017 CTP 2.1 on Ubuntu 16.04. Then connect with **sqlcmd** to create your first database.
14+
In this quick start tutorial, you first install SQL Server 2017 CTP 2.1 on Ubuntu 16.04. Then connect with **sqlcmd** to create your first database and run queries.
1515

1616
## Prerequisites
1717

@@ -95,7 +95,7 @@ To create a database, you need to connect with a tool that can run Transact-SQL
9595
> [!TIP]
9696
> **Sqlcmd** is just one tool for connecting to SQL Server to run queries and perform management and development tasks. Other tools include [SQL Server Management Studio](sql-server-linux-develop-use-ssms.md) and [Visusal Studio Code](sql-server-linux-develop-use-vscode.md).
9797
98-
## Connect to SQL Server on Linux
98+
## Connect locally
9999

100100
The following steps use **sqlcmd** to locally connect to your new SQL Server instance.
101101

@@ -115,7 +115,10 @@ The following steps use **sqlcmd** to locally connect to your new SQL Server ins
115115

116116
1. If you get a connection failure, first attempt to diagnose the problem from the error message. Then review the [connection troubleshooting recommendations](sql-server-linux-troubleshooting-guide.md#connection).
117117

118-
## Create a database
118+
## Create and query data
119+
The following sections walk you through using **sqlcmd** and Transact-SQL to create a new database, add data, and run a simple query.
120+
121+
### Create a new database
119122

120123
The following steps create a new database named `TestDB`.
121124

@@ -137,7 +140,7 @@ The following steps create a new database named `TestDB`.
137140
GO
138141
```
139142

140-
## Insert data
143+
### Insert data
141144

142145
Next create a new table, `Inventory`, and insert two new rows.
143146

@@ -165,7 +168,7 @@ Next create a new table, `Inventory`, and insert two new rows.
165168
GO
166169
```
167170

168-
## Select data
171+
### Select data
169172

170173
Now, run a query to return data from the `Inventory` table.
171174

@@ -181,7 +184,7 @@ Now, run a query to return data from the `Inventory` table.
181184
GO
182185
```
183186

184-
## Exit the sqlcmd command prompt
187+
### Exit the sqlcmd command prompt
185188

186189
To end your **sqlcmd** session, type `QUIT`:
187190

0 commit comments

Comments
 (0)