Tagged Questions
4
votes
1answer
245 views
Safe way to truncate SQL Server Error Log
We are running out of space. What is the safe way to clear the error log?
7
votes
1answer
852 views
PostgreSQL: Disk space not released after TRUNCATE
I haveTRUNCATEd a huge (~120Gb) table called files:
TRUNCATE files;
VACUUM FULL files;
The table size is 0, but no disk space was released. Any ideas how to reclaim my lost disk space?
UPDATE:
The ...