Using drop index and create clustered index

If the index on the table was created with create index:

  1. Drop the index:

    drop index huge_tab.cix
    
  2. Create the clustered index, specifying the segment:

    create clustered index cix 
        on huge_tab(key_col)
        on big_demo_seg