--the default value for @destination_table is the same name as the @source_object EXEC sp_addarticle @publication = 'pubs', @article = 'authors', @source_object = 'authors' GO --here our destination object is called authors1 EXEC sp_addarticle @publication = 'pubs', @article = 'authors1', @source_object = 'authors', @destination_table= 'authors1' GO