/*
** Is it in SYS? if so, zap it. Can't drop metadata SPS in SYSIBM, JCC depends on it.
*/
if (spsd.getSchemaDescriptor().isSystemSchema() && !spsd.getSchemaDescriptor().isSYSIBM())
{
dd.dropSPSDescriptor(spsd, tc);
dd.dropDependentsStoredDependencies(spsd.getUUID(), tc);
}
}
} catch (StandardException se)
{