6 lines
210 B
SQL
6 lines
210 B
SQL
CREATE procedure [C6MartPeriodico].[SetDocumentMissing]
|
|
( @idReport bigint )
|
|
as
|
|
begin
|
|
update c6MartPeriodico.GESTIONE_PDF_FTP set FlagInvio = 'X' where identityreport = @idReport and FLagInvio = 'N'
|
|
end |