USE [DataPRO] GO /****** Object: StoredProcedure [dbo].[sp_TestSetupsGet] Script Date: 5/23/2019 4:25:53 PM ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo].[sp_TestSetupsGet] @TestSetupId int = null, @TestSetupName nvarchar(50) = null AS BEGIN SET NOCOUNT ON; if(@TestSetupName is not null) begin set @TestSetupId = dbo.foo_IdGetTestSetup(@TestSetupName) end SELECT [TestSetupId] ,[TestSetupName] as 'SetupName' ,[SetupDescription] ,[AutomaticTestProgression] ,[AutomaticProgressionDelayMS] ,[InvertTrigger] ,[InvertStart] ,[ViewDiagnostics] ,[VerifyChannels] ,[AutoVerifyChannels] ,[VerifyChannelsDelayMS] ,[RecordingMode] ,[SamplesPerSecond] ,[PreTriggerSeconds] ,[PostTriggerSeconds] ,[StrictDiagnostics] ,[RequireConfirmationOnErrors] ,[ROIDownload] ,[ViewROIDownload] ,[DownloadAll] ,[ViewRealtime] ,[RealtimePlotCount] ,[RegionsOfInterest] ,[ROIStart] ,[ROIEnd] ,[ViewDownloadAll] ,[Export] ,[ExportFormat] ,[LabDetails] ,[UseLabDetails] ,[CustomerDetails] ,[UseCustomerDetails] ,[AllowMissingSensors] ,[AllowSensorIdToBlankChannel] ,[CalibrationBehavior] ,[LocalOnly] ,[LastModified] ,[LastModifiedBy] ,[TurnOffExcitation] ,[TriggerCheckRealtime] ,[TriggerCheckStep] ,[PostTestDiagnostics] ,[ExportFolder] ,[DownloadFolder] ,[CommonStatusLine] ,[SameAsDownloadFolder] ,[UploadData] ,[UploadDataFolder] ,[UploadExportsOnly] ,[Settings] ,[WarnOnBatteryFail] ,[Dirty] ,[Complete] ,[ErrorMessage] ,[TestEngineerDetails] ,[UseTestEngineerDetails] ,[UserTags] ,isnull([DoAutoArm], 0) as [DoAutoArm] ,isnull([CheckoutMode], 0) as [CheckoutMode] ,isnull([ISFFile], 0) as [ISFFile] ,isnull([QuitTestWithoutWarning], 0) as [QuitTestWithoutWarning] ,isnull([NotAllChannelsRealTime], 0) as [NotAllChannelsRealTime] ,isnull([NotAllChannelsViewer], 0) as [NotAllChannelsViewer] ,isnull([SuppressMissingSensorsWarning], 0) as [SuppressMissingSensorsWarning] ,isnull([DoStreaming], 0) as [DoStreaming] ,[TestSetup] from [dbo].[TestSetups] where ((@TestSetupId is null or @TestSetupId= 0) or TestSetupId = @TestSetupId) and (@TestSetupName is null or TestSetupName = @TestSetupName) END