Showing posts with label sp3a. Show all posts
Showing posts with label sp3a. Show all posts

Friday, March 30, 2012

Replication to multiple subscribers question

We have an application that runs with MS SQL 2000 (SP3a) which is used for
tracking information from multiple sources. We are shortly going to be
setting up replication of this database with a secondary location, with a
third location planned by mid year. We know that there will be other
locations added over the course of the next few years. Our concern is that
if we have the snapshot expire, we will have to regenerate the snapshot and
reapply it to ALL subscribers before we can add a new subscriber. This is a
problem for 2 reasons. First because the foreign key relationships we have
between many of the tables appears to require that we delete the database on
the subscriber before we can apply the snapshot, and second because the
nature of our subscribers will mean that most of them will be disconnected
for long periods and as the number of subscribers grows it will be
increasingly unlikely that we will have them all connected at the same time.
It appears that our other option is to not have the snapshot expire, but MS
warns that this may cause performance problems but I haven't seen anything
that quantifies the potential performance problems.
Can anyone tell me what the "right" way of doing this is? What sort of
performance problems are we looking at if we don't have the snapshot expire?
Our database consists of approximately 100 or so user tables and currently
is about 300MB of data.
TIA
Ron L.
Ron,
I suspect the performance problems being talked about are proportional to
the amount of changes taking place to the data once the snapshot has been
made. EG if your snapshot contained static lookup tables, then having a
long-lived snapshot file wouldn't really be an issue. However if your
snapshot was of a productlisting table containing 1 million rows, and
product prices were changed on a regular basis (my case) then after
application of the snapshot you might find your merge agent (or distributor)
would struggle to send down the accumulated changes. BTW, in this case the
problem would be least for merge assuming records could be repeatedly
changed, and it avoids the issue of not being able to run the distribution
cleanup agent that you'll have.
HTH,
Paul Ibison
|||Paul
Thanks for the response. My data tends to be less changes and more
additions - we have logging records for text logs and records tracking
movement of parts within systems. At the moment, our largest table has just
over 100,000 records and the next largest is in the 20,000 record range.
One other option we were looking at was to have seperate publications
for each (or a small group of) additional server, thus making the snapshot
regeneration have less impact. Do you have any feeling as to whether this
is a better approach?
Thanks,
Ron L
"Paul Ibison" <Paul.Ibison@.Pygmalion.Com> wrote in message
news:%23FVkMhWLEHA.4052@.TK2MSFTNGP11.phx.gbl...
> Ron,
> I suspect the performance problems being talked about are proportional to
> the amount of changes taking place to the data once the snapshot has been
> made. EG if your snapshot contained static lookup tables, then having a
> long-lived snapshot file wouldn't really be an issue. However if your
> snapshot was of a productlisting table containing 1 million rows, and
> product prices were changed on a regular basis (my case) then after
> application of the snapshot you might find your merge agent (or
distributor)
> would struggle to send down the accumulated changes. BTW, in this case the
> problem would be least for merge assuming records could be repeatedly
> changed, and it avoids the issue of not being able to run the distribution
> cleanup agent that you'll have.
> HTH,
> Paul Ibison
>
|||Ron,
I agree that this approach leads to more granularity and therefore is more
versatile for your needs, As long as the publications are distinct units
then it should be OK - eg if there are PK-FK relationships across
publications then it's a no-go, so it depends how related the tables are.
Regards,
Paul
|||Paul
What we are thinking is multiple publications covering the same set of
tables. Is this not going to work?
Ron L
"Paul Ibison" <Paul.Ibison@.Pygmalion.Com> wrote in message
news:e454$eeLEHA.1484@.tk2msftngp13.phx.gbl...
> Ron,
> I agree that this approach leads to more granularity and therefore is more
> versatile for your needs, As long as the publications are distinct units
> then it should be OK - eg if there are PK-FK relationships across
> publications then it's a no-go, so it depends how related the tables are.
> Regards,
> Paul
>
|||Ron,
I've not heard of this arrangement before, but it sounds feasible with merge
replication.
I guess the only downside is increased maintenance.
Cheers,
Paul

Replication to a web server in DMZ

Hello,
We have active/active SQL2000 SP3a on a Win2k3 cluster in our domain. We
need to copy some tables from a
database out to our web server.
The web server, is SQL2000 SP3a on Windows 2000, SP4. It is a stand-alone
server out in the DMZ.
We get the following error when trying to do this:
SubSystem Message - Job 'VIRTUALSERVERNAME\INSTANCENAME-WEBSERVER-13'
(0x5F1388610429AD4B8860D51DF8504198), step 2 - Login failed for user
'(null)'. Reason: Not associated with a trusted SQL Server connection. The
process could not connect to Subscriber 'WEBSERVER'.
Here are some thoughts we have. The SQL server in the domain runs on port
1303. The SQL server in the DMZ is running on a different port. Do the
ports need to match for the replication to occur?
We are not sure why this isn't working. Anyone have some input or some
documentation on how to set up replication to a web server in a DMZ. I am
sure this is something that is done at most companies, but we are missing
something.
Thanks in advance.
Hopefully this article will help out:
http://www.replicationanswers.com/InternetArticle.asp
Cheers,
Paul Ibison SQL Server MVP, www.replicationanswers.com
(recommended sql server 2000 replication book:
http://www.nwsu.com/0974973602p.html)
|||I would try SQL Authentication.
Hilary Cotter
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
Looking for a FAQ on Indexing Services/SQL FTS
http://www.indexserverfaq.com
"JJP" <anonymous@.discussions.microsoft.com> wrote in message
news:%23%23dsWsu6FHA.1276@.TK2MSFTNGP09.phx.gbl...
> Hello,
> We have active/active SQL2000 SP3a on a Win2k3 cluster in our domain. We
> need to copy some tables from a
> database out to our web server.
> The web server, is SQL2000 SP3a on Windows 2000, SP4. It is a stand-alone
> server out in the DMZ.
> We get the following error when trying to do this:
> --
> SubSystem Message - Job 'VIRTUALSERVERNAME\INSTANCENAME-WEBSERVER-13'
> (0x5F1388610429AD4B8860D51DF8504198), step 2 - Login failed for user
> '(null)'. Reason: Not associated with a trusted SQL Server connection. The
> process could not connect to Subscriber 'WEBSERVER'.
> --
> Here are some thoughts we have. The SQL server in the domain runs on port
> 1303. The SQL server in the DMZ is running on a different port. Do the
> ports need to match for the replication to occur?
> We are not sure why this isn't working. Anyone have some input or some
> documentation on how to set up replication to a web server in a DMZ. I am
> sure this is something that is done at most companies, but we are missing
> something.
> Thanks in advance.
>
|||Thanks Paul, I am looking that over.
Hilary, the web server is using Windows and SQL, is that what you are
referring to?
"Hilary Cotter" <hilary.cotter@.gmail.com> wrote in message
news:ORJz63u6FHA.3416@.TK2MSFTNGP15.phx.gbl...
>I would try SQL Authentication.
> --
> Hilary Cotter
> Looking for a SQL Server replication book?
> http://www.nwsu.com/0974973602.html
> Looking for a FAQ on Indexing Services/SQL FTS
> http://www.indexserverfaq.com
> "JJP" <anonymous@.discussions.microsoft.com> wrote in message
> news:%23%23dsWsu6FHA.1276@.TK2MSFTNGP09.phx.gbl...
>
sql

Wednesday, March 21, 2012

Replication problem after installing SP3a

Hi.
We installed SP3 as described in
http://support.microsoft.com/default...&Product=sql2k
And now we have following errors running merge agents:
Category:SQLSERVER
Source: DB01
Number: 207
Message: Invalid column name 'published_in_tran_pub'.
Category:COMMAND
Source: Failed Command
Number: 0
Message: {call sp_MShelpmergearticles (?, 8000000, ?) }
Can anybody help with that?
Thanks,
Vova.
Forgot to attach instdist.out file:
--- file begin
=---
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29>
----
At top, db_name()=
distribution
(1 row affected)
1> 2> 3> 4> 5> 6> 1> 2> 3> 1> 2> DBCC execution completed. If DBCC printed
error messages, contact your
system administrator.
Configuration option 'allow updates' changed from 0 to 1. Run the
RECONFIGURE statement to install.
1> 2> 1> 2> 3> 1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17>
18> 1> 2> 3> 4> 5> 6> 7> 8>
Creating distribution tables
1> 2> 3> 4> 5> 1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17>
18> 19> 20> 21> 22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36>
37> 38> 39> 40> 41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55>
56> 57> 58> 59> 60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74>
75> 76> 77> 78> 79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93>
94> 95> DBCC execution completed. If DBCC printed error messages, contact
your
system administrator.
Dropping all distribution stored procedures
95> 96> 97> 98> 1> 2> 3> 4> 5> 6> 1> 2> 3> Creating procedure
sp_MSislogreaderjobnamegenerated
98> 99> 100> 101> 102> 103> 1> 2> 3> Creating procedure
sp_MSisqueuereaderjobnamegenerated
Creating procedure sp_MSissnapshotjobnamegenerated
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 1> 2> 3> 4> Creating
procedure sp_MSisdistributionjobnamegenerated
128> 129> 130> 131> 132> 1> 2> 3> 4> Creating procedure
sp_MSismergejobnamegenerated
5> 6> 7> 8> Creating 'fn_MSmask_agent_type'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 1> 2> 3> Creating 'sp_MScheck_pull_access'.
128> 129> 130> 131> 132> 133> 134> 135> 1> 2> 3> 4> Creating
'sp_MSquery_syncstates'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 1> 2> 3> 4> Creating
'sp_MSset_syncstate'.
Creating 'sp_MSadd_repl_command'.
79> 80> 81> 82> 1> 2> 3> 4> Creating 'sp_MSadd_repl_commands27'.
1323> 1324> 1325> 1326> 1327> 1328> 1329> 1> 2> 3> Creating
'sp_MSadd_repl_commands27hp6x'.
15> 16> 17> 18> 19> Creating 'sp_MSadd_repl_commands27hp'.
11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21> Creating
'sp_MSadd_repl_commands27hp_mcit'.
188> 189> 190> 191> 192> 193> 194> 195> 196> 197> 198> 1> 2> 3> 4> Creating
'sp_MSvalidate_distpublisher'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 1> 2> 3> Creating
'sp_MSdrop_distribution_agent'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
3> Creating 'sp_MSdrop_distribution_agentid'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 1> 2> 3> Creating 'sp_MSdrop_qreader_agent'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 1> 2> 3>
Creating 'sp_MSdrop_qreader_history'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 1> 2> 3> Creating
'sp_MSdrop_merge_agentid'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 1> 2> 3> Creating 'sp_MSadd_qreader_agent'.
248> 249> 250> 251> 252> 253> 254> 255> 1> 2> 3> Creating
'sp_MSadd_distribution_agent'.
Cannot add rows to sysdepends for the current stored procedure because
it depends on the missing object 'sp_MSenableagentoffload'. The stored
procedure will still be created.
Cannot add rows to sysdepends for the current stored procedure because
it depends on the missing object 'sp_MSdisableagentoffload'. The
stored procedure will still be created.
1> 2> 3> Creating 'sp_MSdrop_agent_entry'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 1> 2> 3> 4> Creating
'sp_MSdrop_merge_agent'.
128> 129> 130> 131> 132> 1> 2> 3> Creating 'sp_MSgetagentoffloadinfo'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 1> 2> 3> Creating 'sp_MSadd_merge_agent'.
353> 354> 355> 356> Cannot add rows to sysdepends for the current stored
procedure because
it depends on the missing object 'sp_MSenableagentoffload'. The stored
procedure will still be created.
Cannot add rows to sysdepends for the current stored procedure because
it depends on the missing object 'sp_MSdisableagentoffload'. The
stored procedure will still be created.
1> 2> 3> Creating 'sp_MSdrop_subscription'.
278> 279> 280> 281> 282> 283> 284> 285> 286> 287> 288> 1> 2> 3> Creating
'sp_MSadd_subscription'.
563> 564> 565> 566> 567> 568> 569> 1> 2> 3> Creating
'sp_MSupdate_subscription'.
6> 7> 8> Creating 'sp_MSget_repl_commands'.
383> 384> 385> 386> 387> 388> 389> 390> 1> 2> 3> 4> 5> Creating
'sp_MSget_repl_cmds_anonymous'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 1> 2> 3> 4> 5> Creating 'sp_MSanonymous_status'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> Cannot add rows to sysdepends for the current stored procedure because
it depends on the missing object 'dbo.sp_MSsubscription_status'. The
stored procedure will still be created.
1> 2> 3> Creating 'sp_MSadd_anonymous_agent'.
3> 4> Creating 'sp_MSsubscription_status'.
6> Creating 'sp_MSget_last_transaction'.
60> 61> 62> 63> 64> 65> 66> 1> 2> 3> Creating 'sp_MSadd_subscriber_info'.
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 1> 2> 3> Creating
'sp_MSadd_subscriber_schedule'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 1> 2> 3> 4> 5>
Creating 'sp_MSupdate_subscriber_info'.
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 1> 2> 3> Creating
'sp_MScheck_Jet_Subscriber'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 1> 2> 3> 4> 5> 6> 7>
Creating 'sp_MScheckretention'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 1> 2> 3> Creating
'sp_MSupdate_subscriber_schedule'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 1> 2> 3> 4> Creating
'sp_MSdrop_subscriber_info'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 1> 2> 3> 4> 5> 6> 7> Creating
'sp_MScleanup_agent_entry'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 1> 2> 3> Creating
'sp_MShelp_subscription_status'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 1> 2> 3> 4> 5> Creating 'sp_MShelp_subscriber_info'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 1> 2> 3>
Creating 'sp_MSdistribution_counters'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 1> 2> 3> Creating
'sp_MSremove_published_jobs'.
1> 2> 3> 4> 5> 6> 7> 8> 1> 2> 3> Creating 'sp_MSset_snapshot_xact_seqno'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 1> 2> 3> 4> Creating 'sp_MSdrop_article'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
1> 2> 3> Creating 'sp_MSdrop_snapshot_agent'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 1> 2> 3> 4> Creating 'sp_MSdrop_logreader_agent'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 1> 2> 3> Creating 'sp_MSdrop_publication'.
233> 234> 235> 236> 237> Cannot add rows to sysdepends for the current
stored procedure because
it depends on the missing object 'sp_MSreplremoveuncdir'. The stored
procedure will still be created.
Cannot add rows to sysdepends for the current stored procedure because
it depends on the missing object 'sp_MSreplremoveuncdir'. The stored
procedure will still be created.
1> 2> Creating 'sp_MSadd_snapshot_agent'.
Creating 'sp_MSadd_logreader_agent'.
1> 2> 3> Creating 'sp_MSadd_publication'.
2> 3> Creating 'sp_MSrepl_raiserror'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 1> 2> 3> Creating
'sp_MSget_new_errorid'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 1> 2> 3> Creating
'sp_MSadd_qreader_history'.
233> 234> 1> 2> 3> Creating 'sp_MSadd_snapshot_history'.
158> 159> 160> 161> 162> 163> 164> 165> 166> 1> 2> 3> 4> Creating
'sp_MSadd_logreader_history'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 175> 176> 177> 178> 179> 180> 181> 182> 183> 184> 185> 186> 187>
188> 189> 190> 191> 192> 193> 194> 195> 196> 197> 198> 199> 200> 201> 202>
203> 204> 205> 206> 207> 208> 209> 210> 211> 212> 213> 214> 215> 216> 217>
218> 219> 220> 221> 222> 223> 224> 225> 226> 227> 228> 229> 230> 231> 232>
233> 234> 235> 236> 237> 238> 239> 240> 241> 242> 243> 244> 245> 246> 247>
248> 249> 250> 251> 252> 253> 254> 255> 256> 257> 258> 259> 260> 261> 262>
1> 2> 3> Creating 'sp_MSadd_distribution_history'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 175> 176> 177> 178> 179> 180> 181> 182> 183> 184> 185> 186> 187>
188> 189> 190> 191> 192> 193> 194> 195> 196> 197> 198> 199> 200> 201> 202>
203> 204> 205> 206> 207> 208> 209> 210> 211> 212> 213> 214> 215> 216> 217>
218> 219> 220> 221> 222> 223> 224> 225> 226> 227> 228> 229> 230> 231> 232>
233> 234> 235> 236> 237> 238> 239> 240> 241> 242> 243> 244> 245> 246> 247>
248> 249> 250> 251> 252> 253> 254> 255> 256> 257> 258> 259> 260> 261> 262>
263> 264> 265> 266> 267> 268> 269> 270> 271> 272> 273> 274> 275> 276> 277>
278> 279> 280> 281> 282> 283> 284> 285> 286> 287> 288> 289> 290> 291> 292>
293> 294> 295> 296> 297> 298> 299> 300> 301> 302> 303> 304> 305> 306> 307>
308> 309> 310> 311> 312> 313> 314> 315> 316> 317> 318> 319> 320> 321> 322>
323> 324> 325> 326> 327> 328> 329> 330> 331> 332> 333> 334> 335> 336> 337>
338> 339> 340> 341> 342> 343> 344> 345> 346> 347> 348> 349> 350> 351> 352>
353> 354> 355> 356> 357> 358> 359> 360> 361> 362> 363> 364> 365> 366> 367>
368> 369> 370> 371> 372> 373> 374> 375> 376> 377> 378> 379> 380> 381> 382>
383> 384> 385> 386> 387> 388> 389> 390> 391> 392> 393> 394> 1> 2> 3>
Creating 'sp_MSsubscription_cleanup'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 175> 176> 177> 178> 179> 180> 181> 182> 183> 184> 185> 186> 187>
188> 189> 190> 1> 2> 3> Creating 'sp_MSreplremoveuncdir'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 1> 2> 3> Creating 'sp_MSdrop_snapshot_dirs'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 1> 2> 3> Creating 'sp_MSfast_delete_trans'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 1> 2> 3> Creating
'sp_MSdelete_dodelete'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 1> 2> 3>
Creating 'sp_MSdelete_publisherdb_trans'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 175> 176> 177> 178> 179> 180> 181> 182> 183> 184> 185> 186> 187>
188> 189> 190> 191> 192> 193> 194> 195> 196> 197> 198> 199> 200> 201> 202>
203> 204> 205> 206> 207> 208> 209> 210> 211> 212> 213> 214> 215> 216> 217>
218> 219> 220> 221> 222> 1> 2> 3> Creating 'sp_MSmaximum_cleanup_seqno'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 1> 2>
3> Creating 'sp_MSdistribution_delete'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 1> 2> 3> 4>
Creating 'sp_MSdistribution_cleanup'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 1> 2> 3> Creating 'sp_MShistory_cleanup'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 175> 176> 177> 1> 2> 3> Creating 'sp_MSget_repl_version'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 1> 2> 3> Creating 'sp_MSenum_subscriptions'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 1> 2> 3> 4> Creating
'sp_MSIfExistsSubscription'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 1> 2> 3> 4> Creating
'sp_MSenum_snapshot'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 1> 2> 3> Creating
'sp_MSenum_snapshot_s'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
1> 2> 3> 4> Creating 'sp_MSenum_snapshot_sd'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 1> 2> 3> 4> Creating
'sp_MSenum_logreader'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 1> 2> 3> 4> Creating 'sp_MSenum_logreader_s'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 1> 2> 3> Creating 'sp_MSenum_logreader_sd'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 1> 2> 3> Creating 'sp_MSenum_qreader'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 1> 2> 3> 4> Creating 'sp_MSenum_qreader_s'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 175> 176> 177> 178> 179> 180> 181> 182> 183> 184> 185> 186> 187>
188> 189> 190> 191> 192> 193> 194> 195> 196> 197> 198> 199> 200> 201> 202>
203> 204> 205> 206> 207> 208> 209> 210> 211> 212> 213> 214> 215> 216> 217>
218> 219> 220> 221> 222> 223> 224> 225> 226> 227> 228> 229> 230> 231> 232>
233> 1> 2> 3> 4> Creating 'sp_MSenum_qreader_sd'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 1> 2> 3> Creating 'sp_MSenum_distribution'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 1> 2> 3> 4>
Creating 'sp_MSenum_distribution_s'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 1> 2> 3> 4> Creating
'sp_MSenum_distribution_sd'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 1> 2> 3> 4> Creating
'sp_MSadd_merge_history'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 175> 176> 177> 178> 179> 180> 181> 182> 183> 184> 185> 186> 187>
188> 189> 190> 191> 192> 193> 194> 195> 196> 197> 198> 199> 200> 201> 202>
203> 204> 205> 206> 207> 208> 209> 210> 211> 212> 213> 214> 215> 216> 217>
218> 219> 220> 221> 222> 223> 224> 225> 226> 227> 228> 229> 230> 231> 232>
233> 234> 235> 236> 237> 238> 239> 240> 241> 242> 243> 244> 245> 246> 247>
248> 249> 250> 251> 252> 253> 254> 255> 256> 257> 258> 259> 260> 261> 262>
263> 264> 265> 266> 267> 268> 269> 270> 271> 272> 273> 274> 275> 276> 277>
278> 279> 280> 281> 282> 283> 284> 285> 286> 287> 288> 289> 290> 291> 292>
293> 294> 295> 296> 297> 298> 299> 300> 301> 302> 303> 304> 305> 306> 307>
308> 309> 310> 311> 1> 2> 3> Creating 'sp_MSenum_merge'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 1> 2> 3> 4>
Creating 'sp_MSenum_merge_s'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
1> 2> 3> Creating 'sp_MSenum_merge_sd'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 1> 2> 3>
Creating 'sp_MSenableagentoffload'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 175> 176> 177> 178> 179> 180> 181> 182> 183> 184> 185> 186> 187>
188> 189> 190> 191> 192> 193> 194> 195> 196> 197> 1> 2> 3> Creating
'sp_MSdisableagentoffload'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 1> 2> 3> Creating
'sp_MSadd_repl_error'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 1> 2> 3> 4> Creating
'sp_MSadd_repl_alert'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 1>
2> 3> Creating 'sp_MSadd_replmergealert'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 1> 2> 3> 4> Creating
'sp_MSget_repl_error'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 1> 2>
3> 4> Creating 'sp_MSdist_activate_auto_sub'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 1>
2> 3> Creating 'sp_MSlock_auto_sub'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
1> 2> 3> Creating 'sp_MSget_new_xact_seqno'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 1> 2> 3> 4> 5> Creating
'sp_MSchange_publication'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 175> 176> 177> 178> 179> 180> 181> 182> 183> 184> 185> 186> 187>
188> 189> 190> 191> 192> 193> 194> 195> 196> 197> 198> 1> 2> 3> 4> Creating
'sp_MSadd_article'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 175> 176> 177> 178> 179> 180> 181> 182> 183> 184> 185> 186> 187>
188> 189> 190> 191> 192> 193> 194> 195> 196> 197> 198> 199> 200> 201> 202>
203> 204> 205> 206> 207> 208> 209> 210> 211> 212> 213> 214> 215> 216> 217>
218> 219> 1> 2> 3> Creating 'sp_MSchange_article'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 1> 2> 3> 4>
Creating 'sp_MShelp_publication'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 1> 2> 3> Creating
'sp_MShelp_article'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 1> 2> 3>
Creating 'sp_MShelp_subscription'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 1> 2> 3> Creating 'sp_MSadd_subscription_3rd'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 1> 2> 3> Creating 'sp_MSdrop_subscription_3rd'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 1> 2> 3> Creating
'sp_MSactivate_subscriptions'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 1> 2>
Creating 'sp_MSdrop_merge_subscription'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
1> 2> 3> Creating 'sp_MSadd_merge_subscription'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 175> 176> 177> 178> 179> 180> 181> 182> 183> 184> 185> 186> 187>
188> 189> 190> 191> 192> 193> 194> 195> 196> 197> 198> 199> 200> 201> 202>
203> 204> 205> 206> 207> 208> 209> 210> 211> 212> 213> 214> 215> 216> 217>
218> 1> 2> 3> Creating 'sp_MSenum_merge_subscriptions'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 1> 2> 3> Creating 'sp_update_agent_profile'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 1> 2> 3> 4> Creating
'sp_MSprofile_in_use'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 1> 2> 3> 4> Creating
'sp_MSreset_subscription'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 1> 2> 3>
Creating 'sp_MSget_subscription_guid'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 1> 2>
3> 4> Creating 'sp_MSreset_subscription_seqno'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 1> 2> 3>
4> Creating 'sp_MShelp_profile'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 1> 2> 3> Creating
'sp_MShelp_snapshot_agentid'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 1> 2> 3> Creating 'sp_MShelp_logreader_agentid'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 1> 2> 3> 4> 5> 6> 7> 8> Creating
'sp_MSadd_merge_anonymous_agent'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 1> 2> 3> 4> Creating 'sp_MShelp_merge_agentid'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 1> 2> 3>
Creating 'sp_MSdistpublisher_cleanup'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 1> 2> 3> Creating
'sp_MSenum_replication_status'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 1> 2> 3>
Creating 'sp_MSagent_stethoscope'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 175> 176> 177> 178> 179> 180> 181> 182> 183> 184> 185> 186> 187>
188> 189> 190> 191> 192> 193> 194> 195> 196> 197> 198> 199> 200> 201> 202>
203> 204> 205> 1> 2> 3> Creating 'sp_MSlock_distribution_agent'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 1> 2> 3> Creating
'sp_MSdetect_nonlogged_shutdown'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 1> 2> 3>
Creating 'sp_MSenumerate_PAL'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 1> 2> 3> 4> 5> Creating
'sp_MSpublication_access'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 175> 176> 177> 178> 179> 180> 181> 182> 183> 184> 185> 186> 187>
188> 189> 1> 2> 3> 4> Creating 'sp_MSdrop_6x_publication'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 1> 2> 3> Creating 'sp_MShelp_distribution_agentid'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 169> 170> 171> 172>
173> 174> 175> 176> 177> 178> 179> 180> 181> 182> 183> 184> 185> 186> 187>
188> 189> 190> 191> 192> 193> 194> 195> 196> 197> 198> 199> 200> 201> 202>
203> 204> 205> 206> 207> 208> 209> 210> 211> 212> 213> 214> 215> 216> 217>
218> 219> 220> 221> 222> 223> 224> 225> 226> 227> 228> 229> 230> 231> 232>
233> 234> 235> 236> 237> 238> 239> 240> 241> 242> 243> 244> 245> 246> 247>
248> 249> 250> 251> 252> 253> 254> 255> 256> 257> 258> 259> 260> 261> 262>
263> 264> 265> 266> 267> 268> 269> 270> 271> 272> 273> 274> 275> 276> 277>
278> 279> 1> 2> 3> Creating 'sp_MScheck_tran_retention'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 1> 2> 3> Creating 'sp_MSmarkreinit'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 1> 2> 3> Creating procedure
sp_MSfetchAdjustidentityrange
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 1> 2> 1> 2>
1> 2> 3> Creating 'sp_MSreinit_subscription'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 1> 2> 3> 4> 5> 6> 7> 8> 9> 10> Creating view
MSdistribution_status
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 1> 2> 3> 4> 5> 6>
1> 2> 3> 4> Creating 'sp_browsereplcmds'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 1> 2> 3> 4> 5> Creating
'sp_dumpparamcmd'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 1> 2>
3> Creating 'sp_MSbrowsesnapshotfolder'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 1> 2> 3> Creating 'sp_MSchange_subscription_dts_info'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 1> 2> 3> Creating 'sp_MSdist_adjust_identity'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 1> 2> 3> Creating 'sp_MSrefresh_anonymous'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 1> 2> 3> Creating
'sp_MScheck_pub_identity'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 1> 2> 3> Creating 'sp_MSadjust_pub_identity'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 1> 2> 3> Creating 'sp_MSinsert_identity'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 1>
2> 3> Creating 'sp_MSget_subscription_dts_info'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
1> 2> 3> Creating 'sp_MSenumdistributionagentproperties'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 1> 2> 3> Creating
'sp_MSenum_merge_agent_properties'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 1> 2> 3> Creating 'sp_dropanonymoussubscription'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 1> 2> 3>
Creating 'sp_MSdrop_anonymous_entry'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 1>
2> 3> Creating 'sp_MSadddynamicsnapshotjobatdistributor'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 105> 106> 107> 108> 109> 110> 111> 112>
113> 114> 115> 116> 117> 118> 119> 120> 121> 122> 123> 124> 125> 126> 127>
128> 129> 130> 131> 132> 133> 134> 135> 136> 137> 138> 139> 140> 141> 142>
143> 144> 145> 146> 147> 148> 149> 150> 151> 152> 153> 154> 155> 156> 157>
158> 159> 160> 161> 162> 163> 164> 165> 166> 167> 168> 1> 2> 3> Creating
'sp_MSdeleterepljob'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 1> 2> 3> Creating
'sp_MSdeletefoldercontents'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40>
41> 42> 43> 44> 45> 46> 47> 48> 49> 50> 51> 52> 53> 54> 55> 56> 57> 58> 59>
60> 61> 62> 63> 64> 65> 66> 67> 68> 69> 70> 71> 72> 73> 74> 75> 76> 77> 78>
79> 80> 81> 82> 83> 84> 85> 86> 87> 88> 89> 90> 91> 92> 93> 94> 95> 96> 97>
98> 99> 100> 101> 102> 103> 104> 1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13>
14> 15> 16> 17> 18> 19> 20> 21> 22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32>
33> 34> 35> 36> 37> 38> 39> 40> 41> 42> 43> 44> 45> 1> 2> 3> 4> 5> 6> 7> 8>
9> 10> 11> 12> 13> 14> 15> 16> 1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13>
14> 15> 16> 17> 18> 19> 20> 21> 22> Creating 'sp_MSispublicationqueued'.
1> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21>
22> 23> 24> 25> 26> 27> 28> 29> 1> 2> 3> Creating 'sp_MSlog_agent_cancel'.
Adding user 'guest'.
Adding role 'replmonitor'.
DBCC execution completed. If
DBCC printed error messages, contact your
system administrator.
1> 2> 3> DBCC execution completed. If DBCC printed error messages, contact
your
system administrator.
Configuration option 'allow updates' changed from 1 to 0. Run the
RECONFIGURE statement to install.
1> 2> 3> 1> 2>
end ----
" " <hv@.mail.ru> wrote in message
news:e%230YTMhTEHA.544@.TK2MSFTNGP11.phx.gbl...
> Hi.
> We installed SP3 as described in
>
http://support.microsoft.com/default...&Product=sql2k
> And now we have following errors running merge agents:
> Category:SQLSERVER
> Source: DB01
> Number: 207
> Message: Invalid column name 'published_in_tran_pub'.
> Category:COMMAND
> Source: Failed Command
> Number: 0
> Message: {call sp_MShelpmergearticles (?, 8000000, ?) }
>
> Can anybody help with that?
> Thanks,
> Vova.
>
>
|||Looks like you need to reapply SP3a.
Looking for a SQL Server replication book?
http://www.nwsu.com/0974973602.html
"?ìá??éê ÷ìá?éíéò" wrote:

> Hi.
> We installed SP3 as described in
> http://support.microsoft.com/default...&Product=sql2k
> And now we have following errors running merge agents:
> Category:SQLSERVER
> Source: DB01
> Number: 207
> Message: Invalid column name 'published_in_tran_pub'.
> Category:COMMAND
> Source: Failed Command
> Number: 0
> Message: {call sp_MShelpmergearticles (?, 8000000, ?) }
>
> Can anybody help with that?
> Thanks,
> Vova.
>
>
>
|||This column is related to a new merge agent parameter added with sp3. Have you applied the sp3 to publisher distributor and subscriber? Is there anything in the setup log - sqlsp.log file from the c:\windows directory - this might shed some light on any
failed actions during the sp installation.
HTH,
Paul Ibison
|||Paul,
If sp3 is applied with "backward compatibility" enabled on publisher,
would subscriber be working if it has only sp2 ? Or in any case there should
be the same version of SP applied on both servers?
Thanks,
Serge.
"Paul Ibison" <Paul.Ibison@.Pygmalion.Com> wrote in message
news:942F88CC-41AB-4119-8DB7-5169DE2FDF4A@.microsoft.com...
> This column is related to a new merge agent parameter added with sp3. Have
you applied the sp3 to publisher distributor and subscriber? Is there
anything in the setup log - sqlsp.log file from the c:\windows directory -
this might shed some light on any failed actions during the sp installation.
> HTH,
> Paul Ibison
|||Serge,
the Backwards Compatibility mode on sp3 only refers to cross-database ownership and microsoft search; it isn't really like the compatibility level setting for a database. There is no definite documentation on the various compatibilities between sql server
s using different service pack levels, I guess due to the vast number of permutations, but the recommendation is clear - to have a common service pack level across publisher, distributor and subscriber.
HTH,
Paul Ibison