mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 09:59:47 -05:00
* Disable streaming job validation by hiding menu item * Adding comment to and genercizing column names in external streaming job script
11 lines
493 B
SQL
11 lines
493 B
SQL
-- External Streaming Jobs have dependencies on External Streams.
|
|
-- You will need to separately create External Streams in order to
|
|
-- successfully deploy this script. For more information, see:
|
|
-- https://docs.microsoft.com/en-us/azure/azure-sql-edge/create-stream-analytics-job
|
|
|
|
EXEC sys.sp_create_streaming_job @NAME = '@@OBJECT_NAME@@', @STATEMENT = 'INSERT INTO SqlOutputStream SELECT
|
|
timeCreated,
|
|
streamColumn1 as column1,
|
|
streamColumn2 as column2
|
|
FROM EdgeHubInputStream'
|