Maintaining the BMCSYNC table
- Delete invalid rows from the BMCUTIL table. Do not delete any rows for instances of utilities that are awaiting restart.
- Then use the following SQL statement to delete rows from the BMCSYNC table: DELETE
 FROM <creatorName>.CMN_BMCSYNC
 WHERE UTILID NOT IN
 (SELECT UTILID FROM <creatorName>.CMN_BMCUTIL);
Tip: For faster searching, add an asterisk to the end of your partial query. Example: cert*
