mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 17:22:20 -05:00
* Checkpoint * removing flag for not creating subfolder * Adding Edge template * Removing janky map function * Adding templates for additional objects * Updating tests, fixing bug * Added Edge project icon * Updating strings to Drew-approved text * Cleaning up template scripts and Edge project template names
10 lines
458 B
SQL
10 lines
458 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 Id
|
|
FROM EdgeHubInputStream'
|