This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
INSERT INTO [dbo].[Sensors]([SensorType], [SerialNumber])
VALUES(6, 'TSN_TestSpecific');
DECLARE @sensorID int;
SET @sensorID = CAST(SCOPE_IDENTITY() as int);
INSERT INTO [dbo].[SensorsStreamInput] ([SensorId], [UDPAddress], [LastModified], [LastModifiedBy], [UserTags])
VALUES(@sensorID, 'UDP://239.1.2.10:8400', '2018-12-18 12:00:00.000', 'SYSTEM', 0);