is it possible to replicate a view from a SQL server to another one?

replication, sql-server

Solution

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

Problem

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

Original source