Following is the current records from the QUEUES.
SELECT * FROM SYS.IPE_ALLQUEUES;
ID NAME
------- ----------
100004 NAGIOS
1 DEFAULT
100003 OTHER
100002 APP
100001 ANALYST
0 NONQUEUED
ID column is currently defined as INTEGER and we are planning to change this as SMALLINT. So I need to change the id's as follows
SELECT * FROM SYS.IPE_ALLQUEUES;
ID NAME
------- ----------
14 NAGIOS
1 DEFAULT
13 OTHER
12 APP
11 ANALYST
0 NONQUEUED
How can this be acheived in WX2?
Note: I am not asking about a simple update on the ids since this is a configuration meta data table for the WX2 engine. This is a bit intricate.