---
title: "On-Premises daily quota data base update"
slug: "on-premises-daily-quota-data-base-update"
updated: 2025-09-10T09:14:49Z
published: 2025-09-10T09:14:49Z
canonical: "support.controlup.com/on-premises-daily-quota-data-base-update"
---

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

# On-Premises daily quota data base update

### <u>The Issue:</u>	   
Each ControlUp customer receives a daily quota of 1000 incidents per day.
If you exceed the quota, a warning message appears in the **Incidents** pane:
![your ControlUp organization has exceeded the daily incident quota of 1000 error message](https://cdn.document360.io/098100b7-b9da-4bea-b4b9-017140ab863e/Images/Documentation/en-usarticleattachments205268269Quota11.jpg)

### <u>The Solution:</u>	   
If you are a Hybrid Cloud user, see [Exceed the daily quota of 1000 incidents](/docs/exceeded-the-daily-quota-of-1000-incidents) to resolve the issue.

If you are an On-Premises user, you can update the daily quota limit by yourself. To update the limit, open the SQL studio on the ControlUp database server and run the following script:
```
Use ControlUpDB
go
UPDATE IncidentOrganizations
SET MaxIncidentsPerDay = 100000, PenaltyDateUtc = NULL
WHERE OrganizationId ='e5abf1de-4d91-4357-8c68-e6e99aae5802'
go
```
Another option is to manually update the limit in the SQL studio as shown in the following screenshot:
![SQL studio screen](https://cdn.document360.io/098100b7-b9da-4bea-b4b9-017140ab863e/Images/Documentation/en-usarticleattachments205306965Quota1.jpg)
