SQL Server 2008 R2 Express Transaction Replication Pull Subscription Error
we have sql server 2008 r2 running on our windows 2008 r2 server publisher , distributor. have sql server 2008 r2 express (windows 7) running on our desktops/laptops pull subscriptions running. have 6 subscriptions configured/running , 1 of getting error below. using default distribution manager profile , not designating oledb streaming. windows sync center on laptop/desktop being used sync subscriptions. subscriptions can reinitialized pull of updates results in error.
here tsql used build subscription:
use [dmlr]
go
exec sp_addpullsubscription @publisher = n'wsq00796', @publisher_db = n'dmlr', @publication = n'dmlrenf', @independent_agent = n'true', @subscription_type = n'anonymous', @description = n'transactional publication of dmlr database publisher wsq00796.', @update_mode = n'read only', @immediate_sync = 1
exec sp_addpullsubscription_agent @publisher = n'wsq00796', @publisher_db = n'dmlr', @publication = n'dmlrenf', @distributor = n'wsq00796', @subscriber_security_mode = 1, @distributor_security_mode = 1, @frequency_type = 64, @frequency_interval = 1, @frequency_relative_interval = 1, @frequency_recurrence_factor = 0, @frequency_subday = 4, @frequency_subday_interval = 5, @active_start_date = 0, @active_end_date = 0, @active_start_time_of_day = 0, @active_end_time_of_day = 235959, @enabled_for_syncmgr = n'true', @use_ftp = n'false', @publication_type = 0, @dts_package_location = n'subscriber', @offloadagent = n'false'
go
in past, subscription has been msde subscription interfacing w/sql 2000.
the distribution agent failed create temporary files in 'c:\windows\system32' directory. system returned errorcode 5. (source: mssql_repl, error number: mssql_repl21100)
error messages:
SQL Server > SQL Server Replication
Comments
Post a Comment