Changing or resetting the occurrence numbering sequence
Who is this article for?
Administrators managing occurrence settings.
Administrator permissions are required.
You can change the default occurrence numbering to reset it for a new calendar year or start from a specific number.
This article explains both options.
Resetting the sequence
If you have your occurrence record numbering setup to include a year (e.g. if your occurrence number is assigned as "OCC-2025-123"), you will need to:
- update the prefix for the year
- update the number sequence
Updating the prefix
To update the prefix:
- Open the Administration module.
- Expand Incident & Occurrence Administration.
- Select Occurrence Numbering Sequences.
- Click Edit next to the sequence to change.
-
Change the prefix to match the current year.
For example, change "OCC-2025-" to "OCC-2026-". - Click Save.
Updating the sequence
To update the number sequence:
- On the database server, launch Microsoft SQL Management Studio.
- Connect to the database.
- Take a full backup of your database.
- Click the New Query button.
- Copy the following query into the query window:
use QPulse7
go
update OccurrenceNumberSequence
set number = '0'
where prefix = 'OCC-2025-'
go
- Review the query to confirm that the:
- correct database has been specified (in this example, it is listed as QPulse7)
- desired number has been specified (in this example, it is set to 0 so the next number assigned in Ideagen Quality Management will be 1)
- correct prefix has been specified (in this example, the prefix chosen is OCC-2025-)
- Right-click the query.
- Click Execute.
Changing the sequence start
To change the sequence start:
- On the database server, launch Microsoft SQL Management Studio.
- Connect to the database.
- Take a full backup of your database.
- Click the New Query button.
- Copy the following query into the query window:
use QPulse7
go
update OccurrenceNumberSequence
set number = '49'
where prefix = 'OCC'
go
- Review the query to confirm that the:
- correct database has been specified (in this example, it is listed as QPulse7)
- desired number has been specified (in this example, it is set to 49 so the next number assigned in Ideagen Quality Management will be 50)
- correct prefix has been specified (in this example, the prefix chosen is OCC)
- Right-click the query.
- Click Execute.
Resetting the sequence
If you have your occurrence record numbering setup to include a year (e.g. if your occurrence number is assigned as "OCC-2025-123"), you will need to:
- update the prefix for the year
- update the number sequence
Updating the prefix
To update the prefix:
- Go to the Administration module.
- Expand Incident & Occurrence Administration.
- Select Occurrence Numbering Sequences.
- Highlight the sequence to change.
- Click Edit....
-
Change the prefix to match the current year.
For example, change "OCC-2025-" to "OCC-2026-". - Click OK.
Updating the sequence
To update the number sequence:
- On the database server, launch Microsoft SQL Management Studio.
- Connect to the database.
- Take a full backup of your database.
- Click the New Query button.
- Copy the following query into the query window:
use QPulse7
go
update OccurrenceNumberSequence
set number = '0'
where prefix = 'OCC-2025-'
go
- Review the query to confirm that the:
- correct database has been specified (in this example, it is listed as QPulse7)
- desired number has been specified (in this example, it is set to 0 so the next number assigned in Ideagen Quality Management will be 1)
- correct prefix has been specified (in this example, the prefix chosen is OCC-2025-)
- Right-click the query.
- Click Execute.
Changing the sequence start
To change the sequence start:
- On the database server, launch Microsoft SQL Management Studio.
- Connect to the database.
- Take a full backup of your database.
- Click the New Query button.
- Copy the following query into the query window:
use QPulse7
go
update OccurrenceNumberSequence
set number = '49'
where prefix = 'OCC'
go
- Review the query to confirm that the:
- correct database has been specified (in this example, it is listed as QPulse7)
- desired number has been specified (in this example, it is set to 49 so the next number assigned in Ideagen Quality Management will be 50)
- correct prefix has been specified (in this example, the prefix chosen is OCC)
- Right-click the query.
- Click Execute.