Viewing 4 posts - 1 through 4 (of 4 total)
Prithvi - First you need to drop the existing subscription.
Then add the article
Then add the subscription.
This will work.
February 14, 2005 at 11:46 am
hi
try this out and run the result set as a script.
set nocount on
declare @tblname varchar(60)
declare indx cursor for
select table_name from information_schema.tables where table_type='base table'
open indx
fetch next from indx into...
September 4, 2003 at 5:00 pm
select * from total_spending
where amount in (select top 6 amount from total_spending order by amount desc)
raghu
September 4, 2003 at 2:41 pm
set the auto shrink option in the database
raghu
September 3, 2003 at 10:58 am
Viewing 4 posts - 1 through 4 (of 4 total)