Viewing 3 posts - 1 through 3 (of 3 total)
Both ways work, thanks a lot guys
March 9, 2012 at 7:24 am
#1457195
USE [DEVEL]
GO
SET ANSI_NULLS ON
SET QUOTED_IDENTIFIER ON
ALTER TRIGGER [dbo].[TRASPASO_DESARROLLO2]
ON [dbo].[DATAFEED]
AFTER INSERT
AS
BEGIN
SET NOCOUNT ON
DECLARE @Ric varchar(50), @DATE datetime ,@CIERRE float
select
February 27, 2012 at 4:23 am
#1451976
Im a total noob at SQL SERVER im using a Trigger because I need to know when some data is added to the DATAFEED table so it can be inserted...
February 27, 2012 at 3:52 am
#1451966