BikeBoy20032004
MIS
Hi all,
Can I drop a table that's being replicated (transactional push replication) on SQL Server 2000 without deleting all the subscribers first? Is it possible to do something like sp_repldropcolumn with a table? s there a way?
Also, can I specify NOT NULL using sp_repladdcolumn procedure? The syntax is like:
sp_repladdcolumn @table = 'MyTable', @column='Column1', @typetext = 'int' NOT NULL
But that doesn't work.
Thanks a bunch
Can I drop a table that's being replicated (transactional push replication) on SQL Server 2000 without deleting all the subscribers first? Is it possible to do something like sp_repldropcolumn with a table? s there a way?
Also, can I specify NOT NULL using sp_repladdcolumn procedure? The syntax is like:
sp_repladdcolumn @table = 'MyTable', @column='Column1', @typetext = 'int' NOT NULL
But that doesn't work.
Thanks a bunch