Viewing 4 posts - 1 through 4 (of 4 total)
Keep in mind this is the first of a much more complexe resolver
CREATE PROC AnaResolver
@tableownersysname, -- this is the publisher owner, but we assume its always dbo at subscriber.
@tablenamesysname, --...
November 19, 2002 at 2:38 pm
I've found a workaround using a mixture of different sugestions.
first set the context_info of the session
declare @BinarySessionId varbinary(128)
select @BinarySessionId = convert(varbinary(128), @@spid)
Set context_info @sessionid
Then add in the Trigger :
Declare @BinarySessionIdToSkip...
November 13, 2002 at 9:43 am
thk Andy
your solution worked perfectly (detach/reattach)
Alain
November 12, 2002 at 2:58 pm
there's 2 jobs in a snapshot replication
1- snapshot agent (which makes the snapshot files) (5min)
2- distribution agent (applies the snapshot files) (30 sec)
the main reason we don't want to reinit...
November 11, 2002 at 2:07 pm
Viewing 4 posts - 1 through 4 (of 4 total)