mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 17:22:20 -05:00
* Added Tools Service call for ValidateStreamingJob * Partial addition of ESJ * adding test mocks * Validation working * Modifying command visibility logic to submatch ESJs in addition to files * Changed string literal to constant, corrected attribute order * Added tests * correcting casing that's causing test failures on linux * Swapping Thenable for Promise * excluded validate from command palette
8 lines
330 B
SQL
8 lines
330 B
SQL
EXEC sys.sp_create_streaming_job @NAME = '@@OBJECT_NAME@@', @STATEMENT = 'INSERT INTO SqlOutputStream SELECT
|
|
timeCreated,
|
|
machine.temperature as machine_temperature,
|
|
machine.pressure as machine_pressure,
|
|
ambient.temperature as ambient_temperature,
|
|
ambient.humidity as ambient_humidity
|
|
FROM EdgeHubInputStream'
|