Forum Discussion
Error sign when trying to refresh hexagon reporting
The error message "Could not allocate space for object 'dbo.SORT temporary run storage: 140738639167488' in database 'tempdb' because the 'PRIMARY' filegroup is full" is indicating that the database 'tempdb' is running out of space. This error occurs when SQL Server is unable to allocate sufficient space to perform operations in the tempdb database. To resolve this issue, you may try to do the following:
Delete unnecessary files and data from the tempdb database.
Drop any unused or unnecessary objects within the filegroup of the tempdb database.
Increase the size of the filegroup in the tempdb database.
Set the autogrowth property for existing files in the filegroup of the tempdb database to allow for automatic growth.
It is recommended to consult with a database administrator or your IT support team to resolve this issue.