Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2012 Forums
 SQL Server Administration (2012)
 Transactional Replication

Author  Topic 

pramod21
Yak Posting Veteran

64 Posts

Posted - 2013-10-18 : 06:27:12
HI,

I have configured Transactional Replication success fully between two local servers. my question is when i created a new table in publisher server it does not create a copy in subscriber datebase. does Transactional replication not create a replica of new table?

Thank you

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2013-10-18 : 11:53:24
You will need to add the table to the publication. Details are here: http://technet.microsoft.com/en-us/library/ms152493.aspx

If you want a full copy of the database, then you should look into AlwaysOn. And if the copy is for reporting purposes, then you should consider using a read-intent replica.

Tara Kizer
SQL Server MVP since 2007
http://weblogs.sqlteam.com/tarad/
Go to Top of Page

Brandon Williams
Starting Member

2 Posts

Posted - 2013-10-18 : 11:53:24
Adding an a new article involves adding the article to the publication, creating a new snapshot, and synchronizing subscriptions to apply the schema and data for the newly added articles. Reinitialization is not required, but a new snapshot is required.

Please see Add Articles to and Drop Articles from Existing Publications (http://technet.microsoft.com/en-us/library/ms152493.aspx) for more information.

http://www.sqlrepl.com
Go to Top of Page
   

- Advertisement -