27 lines
684 B
Plaintext
27 lines
684 B
Plaintext
INSERT INTO [dbo].[DASChannels]
|
|
([DASId]
|
|
,[ChannelIdx]
|
|
,[SupportedBridges]
|
|
,[SupportedExcitations]
|
|
,[DASDisplayOrder]
|
|
,[LocalOnly]
|
|
,[SupportedDigitalInputModes]
|
|
,[SupportedSquibFireModes]
|
|
,[SupportedDigitalOutputModes]
|
|
,[ModuleSerialNumber]
|
|
,[SettingId]
|
|
,[ModuleArrayIndex])
|
|
SELECT DAS.DASId,
|
|
21,
|
|
512,
|
|
1,
|
|
-1,
|
|
0,
|
|
0,
|
|
1,
|
|
0,
|
|
'',
|
|
0,
|
|
7
|
|
FROM [dbo].[DAS]
|
|
WHERE DAS.SerialNumber LIKE '%TSR Air%' |