I know a view is composed of tables. Can I replicate a view anyway?

link|improve this question

53% accept rate
feedback

3 Answers

For SQL SERVER 2008
Have a look at the link http://msdn.microsoft.com/en-us/library/ms152559.aspx. This explains all the objects that can be replicated.

For SQL Server 2005
http://msdn.microsoft.com/en-us/library/ms152559(SQL.90).aspx

Thanks, Atul

link|improve this answer
feedback

Yes.

You would need to add the view to the Publication (along with the underlying tables)

link|improve this answer
feedback

What you want to do is replicate the table and create a view of the replicated table.

link|improve this answer
While that is an option, you can also replicate just the view. See replicating "Indexed Views as Tables" in msdn.microsoft.com/en-us/library/ms152559.aspx – Jonathan Allen Feb 9 at 22:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.