You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Kerberos should be installed on your macOS. If your macOS does not have Kerberos installed, you can get it from the [download page](http://web.mit.edu/macdev/KfM/Common/Documentation/download.html).
60
60
61
61
62
-
## Configuring KDC in krb5.conf
62
+
## Configure KDC in krb5.conf
63
63
64
64
Edit the `/etc/krb5.conf` in an editor of your choice. Configure the following keys
65
65
@@ -81,7 +81,7 @@ Then save the krb5.conf file and exit
Copy file name to clipboardExpand all lines: docs/sql-operations-studio/insight-widgets.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,15 +20,15 @@ Insight widgets take the SQL queries you use to monitor servers & databases and
20
20
21
21
Insights are customizable charts and graphs that you add to server and database monitoring dashboards. View at-a-glance insights of your servers and databases, then drill into more details, and launch management actions that you define.
22
22
23
-
You can build awesome server and database management dashboards that are even better than the following example!
23
+
You can build awesome server and database management dashboards similar to the following example:
1. Press the desired combination of keys, then press **Enter** to save it.
61
59
62
60
63
-
64
-
## Additional Resources
65
-
For information about [!INCLUDE[name-sos](../includes/name-sos-short.md)], see [What is [!INCLUDE[name-sos](../includes/name-sos-short.md)]](what-is.md)
Copy file name to clipboardExpand all lines: docs/sql-operations-studio/quickstart-sql-database.md
+7-16Lines changed: 7 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ ms.workload: "Inactive"
16
16
---
17
17
# Quickstart: Use [!INCLUDE[name-sos](../includes/name-sos-short.md)] to connect and query Azure SQL database
18
18
19
-
This quickstart demonstrates how to use *[!INCLUDE[name-sos](../includes/name-sos-short.md)]* to connect to an Azure SQL database, and then use Transact-SQL (T-SQL)statements to create, insert, and select data.
19
+
This quickstart demonstrates how to use *[!INCLUDE[name-sos](../includes/name-sos-short.md)]* to connect to an Azure SQL database, and then use Transact-SQL (T-SQL)statements to create, insert, and select data.
20
20
21
21
## Prerequisites
22
22
@@ -55,15 +55,15 @@ Use [!INCLUDE[name-sos](../includes/name-sos-short.md)] to establish a connectio
55
55
56
56
3. If you get an error about the firewall, you need to create a firewall rule. To create a firewall rule, see [Firewall rules](https://docs.microsoft.com/azure/sql-database/sql-database-firewall-configure).
57
57
58
-
4. After successfully connecting your server will appear in the object explorer.
58
+
4. After successfully connecting your server will appear in the *Servers* sidebar.
59
59
60
60
## Create the tutorial database
61
61
62
62
The *TutorialDB* database is used in several [!INCLUDE[name-sos](../includes/name-sos-short.md)] tutorials.
63
63
64
64
1. Right click on your Azure SQL server in the SERVERS sidebar and select **New Query.**
65
65
66
-
1. Paste the following snippet into the query window.
66
+
1. Paste the following snippet into the query editor.
67
67
68
68
```sql
69
69
IF NOT EXISTS (
@@ -91,7 +91,7 @@ The query editor is still connected to the *master* database, but we want to cre
91
91
92
92
93
93
94
-
1. Paste the following snippet into the query window.
94
+
1. Paste the following snippet into the query editor.
95
95
96
96
```sql
97
97
-- Create a new table called 'Customers' in schema 'dbo'
@@ -113,7 +113,7 @@ The query editor is still connected to the *master* database, but we want to cre
113
113
114
114
## Insert rows
115
115
116
-
1. Paste the following snippet into the query window:
116
+
1. Paste the following snippet into the query editor:
117
117
```sql
118
118
-- Insert rows into table 'Customers'
119
119
INSERT INTOdbo.Customers
@@ -129,7 +129,7 @@ The query editor is still connected to the *master* database, but we want to cre
129
129
1. To execute the query, click **Run**.
130
130
131
131
## View the result
132
-
1. Paste the following snippet into the query window.
132
+
1. Paste the following snippet into the query editor.
133
133
134
134
```sql
135
135
-- Select rows from table 'Customers'
@@ -140,15 +140,6 @@ The query editor is still connected to the *master* database, but we want to cre
Right-click the results table and select **Save As Excel**.
141
-
142
-

143
-
144
-
145
-
## View chart
146
-
View an existing, built-in widget through the dashboard.
147
135
148
136
## Clean up resources
149
137
150
138
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.
151
139
Clean up resources by deleting the resource groups you no longer need. For details, see [Clean up resources](https://docs.microsoft.com/en-us/azure/sql-database/sql-database-get-started-portal#clean-up-resources).
152
140
141
+
153
142
## Next steps
154
143
155
-
To create and run queries, see[Code editor tutorial](tutorial-sql-editor.md).
144
+
Now that you've successfully connected to an Azure SQL data warehouse and ran a query, try out the[Code editor tutorial](tutorial-sql-editor.md).
0 commit comments