Skip to content

Commit da4e0d1

Browse files
Merge pull request #231001 from AvijitkGupta/azure_storage
Azure storage
2 parents 65e05da + cddfe02 commit da4e0d1

File tree

3 files changed

+567
-5
lines changed

3 files changed

+567
-5
lines changed

articles/cosmos-db/postgresql/TOC.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,12 @@
230230
- name: PostgreSQL versions
231231
href: reference-versions.md
232232
- name: PostgreSQL extensions
233-
href: reference-extensions.md
233+
items:
234+
- name: Overview
235+
href: reference-extensions.md
236+
- name: Pg_azure_storage
237+
href: reference-pg-azure-storage.md
238+
displayName: pg_azure_storage, extensions
234239
- name: Limits and limitations
235240
href: reference-limits.md
236241
- name: Distributed SQL API
@@ -249,6 +254,7 @@
249254
href: /azure/templates/microsoft.dbforpostgresql/servergroupsv2?pivots=deployment-language-arm-template
250255
- name: Bicep
251256
href: /azure/templates/microsoft.dbforpostgresql/servergroupsv2?pivots=deployment-language-bicep
257+
252258
- name: Resources
253259
items:
254260
- name: Pricing

articles/cosmos-db/postgresql/howto-ingest-azure-blob-storage.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: mulander
66
ms.service: cosmos-db
77
ms.subservice: postgresql
88
ms.topic: how-to
9-
ms.date: 01/30/2023
9+
ms.date: 05/12/2023
1010
---
1111

1212
# How to ingest data using pg_azure_storage in Azure Cosmos DB for PostgreSQL
@@ -66,7 +66,7 @@ pg_size_pretty | 5257 kB
6666
content_type | application/x-gzip
6767
```
6868

69-
You can filter the output either by using a regular SQL `WHERE` clause, or by using the `prefix` parameter of the `blob_list` UDF. The latter will filter the returned rows on the Azure Blob Storage side.
69+
You can filter the output either by using a regular SQL `WHERE` clause, or by using the `prefix` parameter of the `blob_list` UDF. The latter filters the returned rows on the Azure Blob Storage side.
7070

7171

7272
> [!NOTE]
@@ -178,7 +178,7 @@ Currently the extension supports the following file formats:
178178

179179
### Load data with blob_get()
180180

181-
The `COPY` command is convenient, but limited in flexibility. Internally COPY uses the `blob_get` function, which you can use directly to manipulate data in much more complex scenarios.
181+
The `COPY` command is convenient, but limited in flexibility. Internally COPY uses the `blob_get` function, which you can use directly to manipulate data in more complex scenarios.
182182

183183
```sql
184184
SELECT *
@@ -345,4 +345,5 @@ INSERT 0 264308
345345
346346
Congratulations, you just learned how to load data into Azure Cosmos DB for PostgreSQL directly from Azure Blob Storage.
347347
348-
Learn how to create a [real-time dashboard](tutorial-design-database-realtime.md) with Azure Cosmos DB for PostgreSQL.
348+
- Learn how to create a [real-time dashboard](tutorial-design-database-realtime.md) with Azure Cosmos DB for PostgreSQL.
349+
- Learn more about [pg_azure_storage](reference-pg-azure-storage.md).

0 commit comments

Comments
 (0)