If it is safe to remove it (if the data integrity and index are not UNIQUE ).
When you delete the CLUSTERED index, the table becomes an organized heap (i.e. table rows are no longer part of the B-Tree ), and all other indexes are rebuilt to refer to the RID instead of index value + uniquifier .
Note that the table is not "ordered" at first. When you issue this request:
SELECT * FROM mytable
rows are not guaranteed in index order unless you use the ORDER BY .
source share