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
Copy file name to clipboardExpand all lines: articles/cognitive-services/Speech-Service/includes/how-to/speech-to-text-basics/speech-to-text-basics-java.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
@@ -78,7 +78,7 @@ SpeechRecognizer recognizer = new SpeechRecognizer(config, audioConfig);
78
78
The [Recognizer class](https://docs.microsoft.com/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer?view=azure-java-stable) for the Speech SDK for Java exposes a few methods that you can use for speech recognition.
79
79
80
80
* Single-shot recognition (async) - Performs recognition in a non-blocking (asynchronous) mode. This will recognize a single utterance. The end of a single utterance is determined by listening for silence at the end or until a maximum of 15 seconds of audio is processed.
81
-
* Continuous recognition (async) - Asynchronously initiates continuous recognition operation. If you want to provide an audio file instead of using a microphone, you'll still need to provide an. To stop asynchronous continuous recognition, call [stopContinuousRecognitionAsync](https://docs.microsoft.com/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer.stopcontinuousrecognitionasync).
81
+
* Continuous recognition (async) - Asynchronously initiates continuous recognition operation. If you want to provide an audio file instead of using a microphone, you'll still need to provide an`audioConfig`. To stop asynchronous continuous recognition, call [stopContinuousRecognitionAsync](https://docs.microsoft.com/java/api/com.microsoft.cognitiveservices.speech.speechrecognizer.stopcontinuousrecognitionasync).
82
82
83
83
> [!NOTE]
84
84
> Learn more about how to [choose a speech recognition mode](../../../how-to-choose-recognition-mode.md).
@@ -240,4 +240,4 @@ phraseList.clear();
240
240
Phrase lists are only one option to improve recognition accuracy. You can also:
241
241
242
242
*[Improve accuracy with Custom Speech](../../../how-to-custom-speech.md)
243
-
*[Improve accuracy with tenant models](../../../tutorial-tenant-model.md)
243
+
*[Improve accuracy with tenant models](../../../tutorial-tenant-model.md)
After connection, you can issue any supported Transact-SQLstatements against the instance. In this example, queries are submitted in interactive mode:
77
+
After connection, you can issue any supported [Transact-SQL](/sql/t-sql/language-reference?toc=/azure/synapse-analytics/toc.json&bc=/azure/synapse-analytics/breadcrumb/toc.json&view=azure-sqldw-latest) (T-SQL) statements against the instance. In this example, queries are submitted in interactive mode:
Copy file name to clipboardExpand all lines: articles/synapse-analytics/sql/get-started-power-bi-professional.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ ms.reviewer: jrasnick, carlrab
22
22
> -[sqlcmd](../sql/get-started-connect-sqlcmd.md)
23
23
> -[SSMS](get-started-ssms.md)
24
24
25
-
In this tutorial, we will go through steps how to connect Power BI desktop to SQL on-demand (preview).
25
+
In this tutorial, we will go through the steps for connecting Power BI desktop to SQL on-demand (preview).
26
26
27
27
## Prerequisites
28
28
@@ -42,7 +42,7 @@ Parameters:
42
42
| SQL on-demand service endpoint address | Will be used as server name |
43
43
| SQL on-demand service endpoint region | Will be used to determine what storage will we use in samples |
44
44
| Username and password for endpoint access | Will be used to access endpoint |
45
-
| Database you will use to create views | This database will be used as starting point in samples |
45
+
| Database you'll use to create views | This database will be used as starting point in samples |
46
46
47
47
## First-time setup
48
48
@@ -53,23 +53,23 @@ There are two steps prior to using samples:
53
53
54
54
### Create database
55
55
56
-
Since you will use demo environment, you should create your own database for demo purposes. Database is needed to create views in it. You will use this database in some of sample queries in this documentation.
56
+
For this getting started article, you should create your own database to utilize as a demo. A database is needed for views creation. You'll use this database in some of the sample queries within this documentation.
57
57
58
58
> [!NOTE]
59
-
> Note that databases are used only for view metadata, not for actual data.
59
+
> Databases are used only for viewing metadata, not for actual data.
60
60
>
61
-
> Write down database name you use, you will need it later on.
61
+
> Write down the database name you're using, you'll need it later on.
62
62
63
63
```sql
64
64
DROPDATABASE IF EXISTS demo;
65
65
```
66
66
67
67
### Create credentials
68
68
69
-
We need to create credential before you can run queries. This credential will be used by SQL on-demand service to access files in storage.
69
+
We need to create credentials before you can run queries. The credentials will be used by SQL on-demand service to access files in storage.
70
70
71
71
> [!NOTE]
72
-
> Note that you need to create credential for access to the storage account. Although SQL on-demand can access storages from different regions, having storage and Azure Synapse workspace in same region will provide better performance experience.
72
+
> You need to create credential for access to the storage account. Although SQL on-demand can access storage from different regions, having storage and Azure Synapse workspace in the same region will provide better performance experience.
73
73
74
74
**Code snippet on how to create credentials for Census data containers**, run:
75
75
@@ -88,17 +88,17 @@ GO
88
88
89
89
## Creating Power BI desktop report
90
90
91
-
Open Power BI desktop application and select "Get data" option.
91
+
Open Power BI desktop application and select **Get data** option.
92
92

93
93
94
94
### Step 1 - Select data source
95
95
96
-
Select "Azure" in the menu and then "Azure SQL Database".
96
+
Select **Azure** in the menu and then **Azure SQL Database**.
97
97

98
98
99
99
### Step 2 - Select database
100
100
101
-
Write URL for the database and name of the database where view is residing.
101
+
Write the URL for the database and the name of the database where the view resides.
102
102

0 commit comments