I'm trying to add a new table to replication via T-SQL.however whenever i add this article, it causes the subscriber to stop because it says it's invalid.here's my sql code, any help would be GREAT! (this is off MSDN BOL's)use MyDBEXEC sp_addmergearticle @publication = 'MyDBPub', @article = 'MyNewTable', @source_object = 'MyNewTable', @type = N'table', @source_owner = 'dbo', @schema_option = 0x0004CF1, @force_invalidate_snapshot =1
any pointers where i can add the article, get it to subscribers, w/o having to reinitialize would be AWSOME