Skip to content

Commit a2b475f

Browse files
Update openrowset-bulk-transact-sql.md
1 parent ba07f5e commit a2b475f

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

docs/t-sql/functions/openrowset-bulk-transact-sql.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -661,12 +661,22 @@ The URI of the data file(s) whose data is to be read and returned as row set. Th
661661

662662
The URI may include the `*` character to match any sequence of characters, allowing `OPENROWSET` to pattern-match against the URI. Additionally, it can end with `/**` to enable recursive traversal through all subfolders.
663663

664-
The URI of the data file(s) whose data is to be read and returned as row set. The URI can reference Azure Data Lake storage or Azure Blob storage. Fabric One Lake storage is in public preview. The supported URI formats are:
664+
The URI of the data file(s) whose data is to be read and returned as row set. The URI can reference Azure Data Lake storage or Azure Blob storage.
665+
666+
You can use `OPENROWSET(BULK)` to read data directly from files stored in the Fabric OneLake, specifically from the **Files folder** of a Fabric Lakehouse. This eliminates the need for external staging accounts (such as ADLS Gen2 or Blob Storage) and enables workspace-governed, SaaS-native ingestion using Fabric permissions. This functionality supports:
667+
- Reading from `Files` folders in Lakehouses
668+
- Workspace-to-warehouse loads within the same tenant
669+
- Native identity enforcement using Microsoft Entra ID
670+
671+
> [!NOTE]
672+
> Fabric OneLake storage is in [preview](/fabric/fundamentals/preview). See the [limitations](../statements/copy-into-transact-sql.md#limitations-for-onelake-as-source-public-preview] that are applicable both to `COPY INTO` and `OPENROWSET(BULK)`.
673+
674+
The supported URI formats are:
665675

666676
- `https://{storage}.blob.core.windows.net/[container}/{file path}`
667677
- `https://{storage}.dfs.core.windows.net/[container}/{file path}`
668678
- `abfss://[container}@{storage}.dfs.core.windows.net/{file path}`
669-
- `https://onelake.dfs.fabric.microsoft.com/<workspaceId>/<lakehouseId>/Files/{file path}` - public preview
679+
- `https://onelake.dfs.fabric.microsoft.com/<workspaceId>/<lakehouseId>/Files/{file path}` - [preview](/fabric/fundamentals/preview)!
670680

671681
For example:
672682

@@ -677,6 +687,8 @@ FROM OPENROWSET(
677687
);
678688
```
679689

690+
https://github.com/MicrosoftDocs/sql-docs-pr/pull/34838
691+
680692
### BULK input file format options
681693

682694
#### FORMAT = { 'CSV' | 'PARQUET' | 'JSONL' }

0 commit comments

Comments
 (0)