Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Adding article to the existing column

    Prithvi - First you need to drop the existing subscription.

    Then add the article

    Then add the subscription.

    This will work.

  • RE: Indexes

    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...

  • RE: Multiple TOPs

    select * from total_spending

    where amount in (select top 6 amount from total_spending order by amount desc)

    raghu

  • RE: Database Log File full

    set the auto shrink option in the database

    raghu

Viewing 4 posts - 1 through 4 (of 4 total)