Skip to main content

Change to MaxPersonDelete settings

In this article, we look at how to raise or lower the MaxPersonDelete level.

Y
Written by Yusef Abulaynain
Updated over 5 months ago

Depending on the version of Mosaic you’re using, you can modify the MaxPersonDelete settings. You can make these changes yourself in some versions, but you’ll need our help in others.

Mosaic version 22.1 and newer

If you're a Mosaic user with the AMENDSYSPROP system function, starting from Mosaic 22.1.0.0, you've got the ability to edit existing system properties right from the

Mosaic frontend configuration screen.

Here's how you can do it:

📌 Note: The database audits all updates.

  1. Click Narrow workview.

  2. Click Tools and then Configuration Tools.

  3. Click System Properties.

  4. Use the search box to find the MaxPersonDelete settings.

  5. Click the edit pencil, update the valve field, and then hit Save.

Hosted Mosaic version older than 22.1

If you’re a hosted or managed customer using a version earlier than 22.1.0.0 and need to update a property value, please raise a new case with the new value required.

Self-Hosted Mosaic version older than 22.1

You’ll be able to use the scripts below to change the settings from the database:

  • Use the name of the option you wish to change and run the following script, updating the X’s with the required information:

📌 Note: Please be aware that you’ll need to restart the application server to apply for any changes.

SELECT *
FROM system_properties
WHERE NAME = ‘maxPersonDeleteCount’

BEGIN TRAN

UPDATE system_properties
SET value = 'xxx'--Enter the new valve
WHERE NAME = ‘maxPersonDeleteCount’

SELECT *
FROM system_properties
WHERE NAME = ‘maxPersonDeleteCount’

ROLLBACK
--Commit
Did this answer your question?