sql server 2005 - What are the ways in which we can cascade data to multiple catalogs? -
i have 10 sql servers. on every server there catalog master_data. catalog has table called employees. whenever there changes in employee info gets updated on central server in master_data catalog.
now have cascade changes in employees table master_data catalogs on servers. after this, same changes needs cascaded other catalogs (other master_data catalog) on servers.
i have following options this
- ssis packages
- replication
- plain old tsql queries
what best way this? also, there other ways same?
based on information have provided, , assuming "catalog" mean "database", seems ideal use-case transactional replication.
your central.master_data database publisher; other databases subscribers.
it's not clear description why second tier of duplication required - i.e. why each non-master_data database requires own copy of employees
table - there reason not have queries refer local master_data copy of data? use synonym in non-master_data databases avoid having change queries.
Comments
Post a Comment