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

22 lines
1.0 KiB
Transact-SQL

USE [MoonPro_IOB_ISF_PAMA]
GO
/****** Object: StoredProcedure [dbo].[stp_ExportAll] Script Date: 15/03/2023 11:49:28 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[stp_ExportAll]
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Effettua le chiamate di SYNC MES2MACHINE
EXEC dbo.stp_SyncPodlToMachine
--...e restituisce risutlato
SELECT *
FROM SyncState
END