Skip to content

Commit 47b2fbb

Browse files
author
stevestein
committed
edits, cleaning, acrolinx
1 parent 58c2af2 commit 47b2fbb

1 file changed

Lines changed: 13 additions & 10 deletions

File tree

docs/carbon/get-started-sql-database.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ Use [!INCLUDE[name-sos](../includes/name-sos-short.md)] to establish a connectio
5757
2. This article uses *SQL Login*, but *Windows Authentication* is also supported. Fill in the fields as follows:
5858

5959
| Setting | Suggested value |
60-
| :--- | :--- |
60+
| :--- |: --- |
6161
| **Authentication** | SQL Login |
6262
| **User name** | The server admin account |
6363
| **Password (SQL Login)** | The password for your Azure SQL server |
64-
| **Save Password?** | Yes or No - Select Yes if you do not want to enter the password each time. |
64+
| **Save Password?** | Yes or No - If you don't want to enter the password each time, select Yes. |
6565
| **Database name** | *leave blank* |
6666
| **Server Group** | Select \<Default\> |
6767

@@ -89,10 +89,10 @@ Use [!INCLUDE[name-sos](../includes/name-sos-short.md)] to establish a connectio
8989
ALTER DATABASE [TutorialDB] SET QUERY_STORE=ON
9090
GO
9191
```
92-
1. To execute the query click **Run**.
92+
1. To execute the query, click **Run**.
9393

9494
## Create a table
95-
1. Copy the snippet below and paste in the query window.
95+
1. Paste the following snippet into the query window.
9696
```sql
9797
-- Create a new table called 'Customers' in schema 'dbo'
9898
-- Drop the table if it already exists
@@ -115,7 +115,7 @@ Use [!INCLUDE[name-sos](../includes/name-sos-short.md)] to establish a connectio
115115
![Change context](media/get-started-sql-database/change-context.png)
116116

117117
## Insert rows
118-
Copy the snippet below to insert four rows and paste in the query window. Click **Run** to execute the query.
118+
1. Paste the following snippet into the query window.
119119
```sql
120120
-- Insert rows into table 'Customers'
121121
INSERT INTO dbo.Customers
@@ -127,17 +127,20 @@ Copy the snippet below to insert four rows and paste in the query window. Click
127127
( 4, N'Jake', N'United States', N'jake@vsdata.io')
128128
GO
129129
```
130+
1. To execute the query, click **Run**.
130131

131132
## View the result
132-
Copy the snippet below to view all the rows and paste in the query window. Click **Run** to execute the query.
133+
1. Paste the following snippet into the query window.
133134
```sql
134135
-- Select rows from table 'Customers'
135136
SELECT * FROM dbo.Customers;
136137
```
138+
1. To execute the query, click **Run**.
139+
137140
![Select results](media/get-started-sql-database/select-results.png)
138141

139142
## Save result as Excel
140-
1. Right click on the results table and save as a **Excel** file.
143+
1. Right click on the results table and save as an Excel** file.
141144

142145
![Save as Excel](media/get-started-sql-database/save-as-excel.png)
143146

@@ -148,12 +151,12 @@ View an existing, built-in widget through the dashboard.
148151

149152
## Clean up resources
150153
> [!TIP]
151-
> Other Quickstarts in this collection build upon this quick start. If you plan to continue on to work with subsequent quickstarts, **do not clean up the resources created in this quickstart**. If you do not plan to continue, use the following steps to delete resources created by this quickstart in the Azure portal.
154+
> Other articles in this collection build upon this quickstart. If you plan to continue on to work with subsequent quickstarts, **do not clean up the resources created in this quickstart**. If you do not plan to continue, use the following steps to delete resources created by this quickstart in the Azure portal.
152155
Clean up the resources you created in the quickstart either by deleting the ...
153156

154157
To delete the entire resource group including the newly created server:
155-
1. Locate your resource group in the Azure portal. From the left-hand menu in the Azure portal, click **Resource groups** and then click the name of your resource group, such as our example **myresourcegroup**.
156-
2. On your resource group page, click **Delete**. Then type the name of your resource group, such as our example **myresourcegroup**, in the text box to confirm deletion, and then click **Delete**.
158+
1. Locate your resource group in the Azure portal. From the left-hand menu in the Azure portal, click **Resource groups** and then click the name of your resource group, for example: **myresourcegroup**.
159+
2. On your resource group page, click **Delete**. Then type the name of your resource group, for example: **myresourcegroup**, in the text box to confirm deletion, and then click **Delete**.
157160

158161
Or instead, to delete the newly created server:
159162
1. Locate your server in the Azure portal, if you do not have it open. From the left-hand menu in Azure portal, click **All resources**, and then search for the server you created.

0 commit comments

Comments
 (0)