Login to participate
Endpoint Management & Virtualization BlogsRSS

Can I specify the incident start value?

Admin's picture

Q:
Charles wrote, "We are planning on going live with Helpdesk Solution in two weeks and want to have the beginning incident number set to 300000 to avoid conflicts with our older tracking software. Is there a way to set the incident number to start at 300000?"

A:
Yes, Charles, you can easily modify the incident start value by going into your Altiris_Incidents database and changing the value in the workitem_next_number table to 300000. If you prefer, you may also use the following code to accomplish this task. The first three lines of this code will show you the current status and the last three lines will change it to 300000.

use altiris_incidents
select next_number as before
from workitem_next_number

update workitem_next_number set next_number=300000
select next_number as after
from workitem_next_number

Dominique's picture

In the same process is it

In the same process is it possible to clean-up the dummy inc incident?

Dom

Dom

Dominique's picture

Restart

Hello,

We have almost finished our testing for the 20 Helpdesk environments, we have about 2,400 incidents done in test.
Is it possible to start over from # 1?

Dom

Dom

David Falcon's picture

yes you can

if you are wanting to start over, you can delete your existing incidents. then go to the incidents db and find the table next_number. from there set the value to 1. next, test it by creating a new incident.

Dominique's picture

Hello, I could delete all

Hello,

I could delete all incidents from the table workitem or you mean from the delete multiple incident?

1. from workitem the links will remain and the wcu tables might causes issues for the history and the links to the contact and asset will still be stored...
2. the delete multiple does not work on incident with linked incident, this means I would have to inactivate all validation rules to run the process... am I right?
Thanks,
Dom

Dom

Scott Hardie's picture

You can reset back to 1 by

http://juice.altiris.com/node/1770

James "Scott" Hardie
Vice President of Technology Services
shardie@xcendgroup.com
http://www.xcendgroup.com

James "Scott" Hardie
Manager Systems Engineering
scott_hardie@symantec.com
http://www.symantec.com

Dominique's picture

Thanks a lot

Thanks a lot

Dom