Files
Mapo-IOB-WIN/EgwProxy.SqlDb.Test/SqlFromDebug/ImportAll.sql
T
2023-03-15 11:00:43 +01:00

23 lines
1.1 KiB
Transact-SQL


/****** Object: StoredProcedure [dbo].[ImportAll] Script Date: 15/03/2023 10:57:06 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[ImportAll]
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Effettua tutti i task di import
EXEC dbo.GetMachineSigLog
EXEC dbo.GetMachineFluxLog
EXEC dbo.GetMachineProdData
-- ...e poi restituisce lettura tabella SyncState
SELECT *
FROM SyncState
END