Skip to content

Commit 2806ce7

Browse files
committed
SQL Database updates for portal BYOE
1 parent de98689 commit 2806ce7

9 files changed

+148
-31
lines changed

articles/search/.openpublishing.redirection.search.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
{
22
"redirections": [
3+
{
4+
"source_path_from_root": "/articles/search/search-howto-connecting-azure-sql-database-to-azure-search-using-indexers.md",
5+
"redirect_url": "/azure/search/search-how-to-index-sql-database",
6+
"redirect_document_id": true
7+
},
8+
{
9+
"source_path_from_root": "/articles/search/search-howto-connecting-azure-sql-mi-to-azure-search-using-indexers.md",
10+
"redirect_url": "/azure/search/search-how-to-index-sql-managed-instance",
11+
"redirect_document_id": true
12+
},
13+
{
14+
"source_path_from_root": "/articles/search/search-howto-connecting-azure-sql-iaas-to-azure-search-using-indexers.md",
15+
"redirect_url": "/azure/search/search-how-to-index-sql-server",
16+
"redirect_document_id": true
17+
},
318
{
419
"source_path_from_root": "/articles/search/index-projections-concept-intro.md",
520
"redirect_url": "/azure/search/search-how-to-define-index-projections",
-40 Bytes
Loading
129 KB
Loading

articles/search/search-get-started-portal-import-vectors.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The **Import and vectorize data** wizard supports the following data sources:
4242
+ [Azure SQL Database](/azure/azure-sql/database/single-database-create-quickstart), [Azure SQL Managed Instance](/azure/azure-sql/managed-instance/instance-create-quickstart), and Azure SQL Server virtual machines.
4343

4444
> [!NOTE]
45-
> This quicktart provides steps for data sources that work with whole files: Azure Blob storage, ADLS Gen2, OneLake.
45+
> This quicktart provides steps for just those data sources that work with whole files: Azure Blob storage, ADLS Gen2, OneLake. For more information about using this wizard with other data soruces, see [Azure Table indexer](search-howto-indexing-azure-tables.md), [Cosmos DB for NoSQL indexer](search-howto-index-cosmosdb.md), and [Azuer SQL indexer](search-howto-connecting-azure-sql-database-to-azure-search-using-indexers.md).
4646
4747
### Supported embedding models
4848

@@ -335,7 +335,7 @@ Chunking is built-in and nonconfigurable. The effective settings are:
335335

336336
+ The identity should have a **Cognitive Services OpenAI User** role on the Azure AI multi-services account.
337337

338-
1. Select the checkbox that acknowledges the billing impact of using these resources.
338+
1. Select the checkbox that acknowledges the billing effects of using these resources.
339339

340340
1. Select **Next**.
341341

@@ -359,7 +359,7 @@ Azure AI Search and your Azure AI resource must be in the same region.
359359

360360
1. Optionally, you can crack binary images (for example, scanned document files) and [use OCR](cognitive-search-skill-ocr.md) to recognize text.
361361

362-
1. Select the checkbox that acknowledges the billing impact of using these resources.
362+
1. Select the checkbox that acknowledges the billing effects of using these resources.
363363

364364
1. Select **Next**.
365365

Lines changed: 112 additions & 16 deletions
Large diffs are not rendered by default.

articles/search/search-import-data-portal.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ ms.date: 11/19/2024
1616

1717
Azure AI Search has two import wizards that automate indexing and object creation so that you can begin querying immediately. If you're new to Azure AI Search, these wizards are one of the most powerful features at your disposal. With minimal effort, you can create an indexing or enrichment pipeline that exercises most of the functionality of Azure AI Search.
1818

19-
The **Import data wizard** supports nonvector workflows. You can extract alphanumeric text from raw documents. You can also configure applied AI and built-in skills that infer structure and generate text searchable content from image files and unstructured data.
19+
+ **Import data wizard** supports nonvector workflows. You can extract alphanumeric text from raw documents. You can also configure applied AI and built-in skills that infer structure and generate text searchable content from image files and unstructured data.
2020

21-
The **Import and vectorize data wizard** supports vectorization. You must specify an existing deployment of an embedding model, but the wizard makes the connection, formulates the request, and handles the response. It generates vector content from text or image content.
21+
+ **Import and vectorize data wizard** adds chunking and vectorization. You must specify an existing deployment of an embedding model, but the wizard makes the connection, formulates the request, and handles the response. It generates vector content from text or image content.
2222

2323
If you're using the wizard for proof-of-concept testing, this article explains the internal workings of the wizards so that you can use them more effectively.
2424

@@ -33,7 +33,11 @@ This article isn't a step by step. For help with using the wizard with sample da
3333

3434
The import wizards create the objects described in the following table. After the objects are created, you can review their JSON definitions in the portal or call them from code.
3535

36-
To view these objects after the wizard runs, [sign in to the Azure portal](https://portal.azure.com), [find your search service](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices), and select **Search management** on the menu to find pages for indexes, indexers, data sources, and skillsets.
36+
To view these objects after the wizard runs:
37+
38+
1. [Sign in to the Azure portal](https://portal.azure.com) and [find your search service](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices).
39+
40+
1. Select **Search management** on the menu to find pages for indexes, indexers, data sources, and skillsets.
3741

3842
| Object | Description |
3943
|--------|-------------|
@@ -101,23 +105,25 @@ The wizard is organized into four main steps:
101105

102106
1. Create an index schema, inferred by sampling source data.
103107

104-
1. Optionally, add skills to extract or generate content and structure. Inputs for creating a knowledge store are collected in this step.
108+
1. Optionally, it adds skills to extract or generate content and structure. Inputs for creating a knowledge store are collected in this step.
105109

106110
1. Run the wizard to create objects, optionally vectorize data, load data into an index, set a schedule and other configuration options.
107111

108112
The workflow is a pipeline, so it's one way. You can't use the wizard to edit any of the objects that were created, but you can use other portal tools, such as the index or indexer designer or the JSON editors, for allowed updates.
109113

110114
### Starting the wizards
111115

116+
Here's how you start the wizards.
117+
112118
1. In the [Azure portal](https://portal.azure.com), open the search service page from the dashboard or [find your service](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices) in the service list.
113119

114120
1. In the service Overview page at the top, select **Import data** or **Import and vectorize data**.
115121

116-
:::image type="content" source="media/search-what-is-an-index/add-index.png" alt-text="Screenshot of the add index options." border="true":::
122+
:::image type="content" source="media/search-import-data-portal/import-data-cmd.png" alt-text="Screenshot of the import wizard options." border="true":::
117123

118-
The wizards open fully expanded in the browser window so that you have more room to work.
124+
The wizards open fully expanded in the browser window so that you have more room to work.
119125

120-
1. If you selected **Import data**, you can select the **Samples** option to use a prebuilt sample of data from a supported data source.
126+
1. If you selected **Import data**, you can select the **Samples** option to index a Microsoft-hosted dataset from a supported data source.
121127

122128
:::image type="content" source="media/search-what-is-an-index/add-index-import-samples.png" alt-text="Screenshot of the import data page with the samples option selected." border="true":::
123129

articles/search/toc.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,8 @@ items:
225225
href: search-how-to-create-search-index.md
226226
- name: Load an index
227227
href: search-how-to-load-search-index.md
228+
- name: Portal indexing (import data wizards)
229+
href: search-import-data-portal.md
228230
- name: Update or rebuild an index
229231
href: search-howto-reindex.md
230232
- name: Alias an index
@@ -241,8 +243,6 @@ items:
241243
href: search-howto-schedule-indexers.md
242244
- name: Define field mappings
243245
href: search-indexer-field-mappings.md
244-
- name: Portal wizards (import data)
245-
href: search-import-data-portal.md
246246
- name: Indexing whole files
247247
items:
248248
- name: Content metadata properties
@@ -292,11 +292,11 @@ items:
292292
- name: Azure SQL
293293
items:
294294
- name: Azure SQL Databases
295-
href: search-howto-connecting-azure-sql-database-to-azure-search-using-indexers.md
295+
href: search-how-to-index-sql-database.md
296296
- name: Azure SQL Managed Instances
297-
href: search-howto-connecting-azure-sql-mi-to-azure-search-using-indexers.md
297+
href: search-how-to-index-sql-managed-instance.md
298298
- name: Azure SQL Server VMs
299-
href: search-howto-connecting-azure-sql-iaas-to-azure-search-using-indexers.md
299+
href: search-how-to-index-sql-server.md
300300
- name: OneLake files
301301
href: search-how-to-index-onelake-files.md
302302
- name: SharePoint in Microsoft 365

0 commit comments

Comments
 (0)