If I have a clustered index on a table is it safe to delete, and if I do, does it leave the table ordered the same way it was while indexed?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s always safe to delete technically, but whether it makes sense in a design/architecture/performance prespective we can’t say.
The data will remain in the order on disk until update/inserts happen, but please don’t rely on that at all, ever. Output is only guaranteed whan you use an ORDER BY in the outermost SELECT