---
title: "When upgrading Uniprint I receive an error message \"You need 42 GB available free space\""
slug: "when-upgrading-uniprint-i-receive-an-error-message-you-need-42-gb-available-free-space"
updated: 2024-04-01T06:25:54Z
published: 2024-04-01T06:25:54Z
canonical: "kb.pharos.com/when-upgrading-uniprint-i-receive-an-error-message-you-need-42-gb-available-free-space"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://kb.pharos.com/llms.txt
> Use this file to discover all available pages before exploring further.

# When upgrading Uniprint I receive an error message "You need 42 GB available free space"

When upgrading Uniprint I receive an error message "You need 42 GB available free space"

---

This issue is caused when the database is unable to grow because it believes there is no space available.

The solution is to rebuild indexes within the Pharos Database:

- Download MSDE Manager (30 day free tool). This will allow you re-index the complete database. Make sure you stop all of the Pharos services before completing this task.

[http://www.soft32.com/download_11260.html](http://www.soft32.com/download_11260.html)

- Run the following SQL script, which automatically re-indexes all tables in a database. Make sure you stop all of the Pharos services before completing this task.

USE pharos <-- Enter the name of the database you want to re-index

DECLARE @TableName varchar(255)

DECLARE TableCursor CURSOR FOR

SELECT table_name FROM information_schema.tables

WHERE table_type = 'base table'

OPEN TableCursor

FETCH NEXT FROM TableCursor INTO @TableName

WHILE @@FETCH_STATUS = 0

BEGIN

PRINT 'Reindexing' + @TableName

DBCC DBREINDEX(@TableName,' ',70)

FETCH NEXT FROM TableCursor INTO @TableName

END

CLOSE TableCursor

DEALLOCATE TableCursor

## Related

- [What do I need to diagnose a Blueprint Tracker problem?](/what-do-i-need-to-diagnose-a-blueprint-tracker-problem.md)
- [What information do I need to diagnose a Blueprint pagecount problem?](/what-information-do-i-need-to-diagnose-a-blueprint-pagecount-problem.md)
- [What steps are needed to clone a all-in-one Uniprint server?](/what-steps-are-needed-to-clone-a-all-in-one-uniprint-server.md)
- [IIS process "aspnet_wp.exe" taking 90% of CPU resources all the time](/iis-process-aspnet-wpexe-taking-90-of-cpu-resources-all-the-time.md)
- [Error when trying to re-manage a Konica Minolta device with Pharos software after device was reset to factory defaults.](/error-when-trying-to-re-manage-a-konica-minolta-device-with-pharos-software-after-device-was-reset-to-factory-defaults.md)
