USE [arch_to_report]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
create procedure AddValue
(@Time_val datetime,
@Val1 real,
@Val2 real,
@Val3 real,
@Val4 real)
as
begin
insert [dbo].[Values] values (@Time_val, @Val1, @Val2, @Val3, @Val4);
end