Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
3k views

Reduce SQL Server table fragmentation without adding/dropping a clustered index?

I have a large database (90GB data, 70GB indexes) that's been slowly growing for the past year, and the growth/changes has caused a large amount of internal fragmentation not only of the indexes, but ...
2
votes
4answers
241 views

How do I know if a table in Oracle is fragmented?

I have a table which seems to be taking up more space than it needs to. I have been advised to copy the data to a new table and rename the new table and old table to swap them. How can I confirm if a ...
2
votes
2answers
214 views

Sequential Guid and fragmentation

I'm trying to understand how sequential guid performs better than a regular guid. Is it because with regular guid, the index use the last byte of the guid to sort? Since it's random it will cause ...