hello, i'm playing with replication, and i was wondering if there's any way to add a new article to an existing publicationfor example if the following table is added:USE [MyDB]GOCREATE TABLE [dbo].[test_tbl]( [zip] [varchar](5) NOT NULL, CONSTRAINT [PK_test_tbl] PRIMARY KEY CLUSTERED ([zip] ASC) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY]GOinsert into test_tbl (zip) values ('12345')goalter table test_tbl add [msrepl_tran_version] [uniqueidentifier] NOT NULL default (newid())goALTER TABLE [dbo].[test_tbl] WITH NOCHECK ADD CONSTRAINT [repl_identity_range_tran_test_tbl] CHECK NOT FOR REPLICATION (([zip]>(20000) AND [zip]<(21000)))ALTER TABLE [dbo].[test_tbl] CHECK CONSTRAINT [repl_identity_range_tran_test_tbl]GOOkay, now i wanna add it to MyReplication as a new article, BUT i dont want it to create a whole new snapshot, just simply add this new table into the next update...any help would be greatly appreciated