The total database size is 500GB. In this database all most 250 GB is taking indexes and Inactive data.
Now I want to remove the Inactive Data? Is there any methods or architect to remove the inactive data?
Right now, I removed the data using below commands
delete TOP(1000) from TableName
After removed all the records, I applied the shrink file to release the space but I am facing to much slowness on Database side.
Any one have idea how can I remove the slowness on database?