Forum Replies Created

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

  • RE: DROP Index problem

    upps..

    thank you for your help, it works!

    I was just thinking:

    DROP Index table_name.index_name

    also must be:

    ALTER INDEX index_name ON table_name.index_name REBUILD;

    but I was wrong...

  • RE: DROP Index problem

    create table testen

    (iid int not null, strasse varchar(50), plz varchar(10))

    insert testen

    values (3,'gutes 12','1123')

    create nonclustered index strasse on testen(strasse)

    sp_helpindex testen

    ALTER INDEX strasse ON testen.strasse

    REBUILD; => here I get an error saying:...

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