CREATE PROCEDURE [dbo].[sp_insertCustomSezioniReport] @idReport as int, @idSezione as int, @utente as varchar(13) AS BEGIN SET NOCOUNT ON; INSERT INTO [dbo].[ReportSezionePers] ([DtCreazione] ,[IdReport] ,[IdSezione] ,[Utente]) VALUES (getDate() ,@idReport ,@idSezione ,@utente) END