Richard Broersma Jr wrote:
--- Paul Lambert <[EMAIL PROTECTED]> wrote:
The purpose being when a row in a table in one database is updated, it
will copy (or replicate I guess) the record into a different table into
another database in the same server. (deleting said record first if it
already e
--- Paul Lambert <[EMAIL PROTECTED]> wrote:
> The purpose being when a row in a table in one database is updated, it
> will copy (or replicate I guess) the record into a different table into
> another database in the same server. (deleting said record first if it
> already exists)
>
> What is t
Forgive me in advance for this terribly novice question...
I have the following function which was written in MS SQL Servers
trigger/rule language...
CREATE TRIGGER [Sync_Deals] ON [dbo].[Deals]
FOR INSERT, UPDATE
AS
begin
declare @Found int
declare @deal varchar(10)
se