Hilary,
Where would I add this script setting in SQL2k5? Since the clients are
sql express there really isn't a scheduled agent to run the replication,
we're using a .net app to start the replication process. Prior to this we
are running the following scripts to setup replication. Any further
clarification would be appreciated. Thanks in advance.
-----------------BEGIN: Script to be run at Subscriber FOR
WAN-----------------
sp_addmergepullsubscription
@publication = 'pub_subscriber_db', --the name given to the publication
during the creation of the publication via the wizard
@publisher_db = 'subscriber_db', --the name of the actual database running
on the server instance
@publisher = 'computer-db', --the name of the server instance
@subscriber_type = 'global',
@sync_type='automatic'
-----------------BEGIN: Script to be run at Publisher FOR
WAN-----------------
use [subscriber_db]
exec sp_addmergesubscription @publication = N'pub_wcpc_arizona',
@subscriber = N'subscriber-01\subscriber',
@subscriber_db = N'subscriber_db',
@subscription_type = N'pull',
@subscriber_type = N'global',
@subscription_priority = 0,
@sync_type = N'Automatic'
GO
[quoted text, click to view] "Hilary Cotter" <hilary.cotter@gmail.com> wrote in message
news:%23PnLtc3RGHA.5924@TK2MSFTNGP09.phx.gbl...
> Use the exchangetype of uploadonly.
>
> --
> Hilary Cotter
> Director of Text Mining and Database Strategy
> RelevantNOISE.Com - Dedicated to mining blogs for business intelligence.
>
> This posting is my own and doesn't necessarily represent RelevantNoise's
> positions, strategies or opinions.
>
> 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 >
>
>
> "Jake" <noreply@nowhere.com> wrote in message
> news:uOdUdXyRGHA.3052@TK2MSFTNGP09.phx.gbl...
>> Hello,
>>
>> I have a question on the subscriptions and type of replication to use.
>> We have about 5 subscriptions to a published db setup as merge
>> replication via the websync on sql2k5. We would actually like the
>> subscriptions (all running sql express) to just download changes to the
>> publisher. We do not need the publisher to pass any data up to the
>> subscribers. Is there a way to do this? We need to use the functionality
>> of web synchronization, if at all possible. Thanks in advance.
>>
>> Jake
>>
>
>