Summary
- SQL database at 60GB with no disk space left.
- The related application had written 6 million records which are not needed so we used some T-SQL to delete them out which should have free up 40+ GB of disk space (each record contains large text fields).
- SQL is not willing to give up the disk space. Even running sp_spaceused suggests there's only 200MB free so I'm assuming the shrinkdatabase command will be ineffective.
As said - we're out of disk space and this is a production environment! Your help will be very much appreciated.
- SQL database at 60GB with no disk space left.
- The related application had written 6 million records which are not needed so we used some T-SQL to delete them out which should have free up 40+ GB of disk space (each record contains large text fields).
- SQL is not willing to give up the disk space. Even running sp_spaceused suggests there's only 200MB free so I'm assuming the shrinkdatabase command will be ineffective.
As said - we're out of disk space and this is a production environment! Your help will be very much appreciated.