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
Task: Run the streaming job to aggregate order data
Step: 7
To emphasize the ingestion of the streaming data, I suggest adding an ORDER BY clause to the query.
SELECT TOP (100)
*FROM
OPENROWSET(
BULK 'https://datalakexxxxxxx.dfs.core.windows.net/files/2024/**',
FORMAT ='CSV',
PARSER_VERSION ='2.0',
HEADER_ROW = TRUE
) AS [result]
ORDER BY
StartTime DESC;
The text was updated successfully, but these errors were encountered:
Lab/Demo: 18-Ingest-stream-synapse.md
Task: Run the streaming job to aggregate order data
Step: 7
To emphasize the ingestion of the streaming data, I suggest adding an ORDER BY clause to the query.
The text was updated successfully, but these errors were encountered: