![]() | Oracle System Handbook - ISO 7.0 May 2018 Internal/Partner Edition | ||
|
|
![]() |
||||||||||||||||
Solution Type Problem Resolution Sure Solution 1963534.1 : Unable To Add IXP Servers In A Subsystem From CCM GUI
The system prevents to add a server in a subsystem, in case the server was already by the past in this subsystem and has been removed from it previously. This is due to remaining elements in Oracle DB tables related to this server. In this Document
Oracle Confidential PARTNER - Available to partners (SUN). Applies to:Oracle Communications Performance Intelligence Center (PIC) Software - Version 6.6.4 and laterInformation in this document applies to any platform. SymptomsThe system prevents to add a server in a subsystem via the GUI (CCM) even if this server exist and runs. CauseThe server was already in the subsystem by the past and has been removed. Oracle DB tables on NSP side still contains several entries related to this object after the IXP server was removed from the configuration (CCM). SolutionFirst of all, check the situation on the subsystem by verifying tables content. If the situation is confirmed, the solution is to remove manually entries in tables, directly with SQLPLUS commands to clean up tables. All elements related to the server must be removed. Connect on NSP Oracle box and launch the SQLPLUS command to connect on Oracle DB of NSP instance. By convention, the server we want to add is <server_name> SQLPLUS commands: select object_id, name from cor_object where name like '%<server_name>%';
select mo_id, name from cor_managed_object where name like '%<server_name>%';
CFG_MO_MAPPING
COR_OBJECT_ROLE_PRIVILEGE ALR_DISPLAY_MO ALR_MO_AGGREGATE COR_ALARM COR_MO_ATTRIBUTES COR_MO_REP For each table, display its structure by using desc command (desc <table_name> and launch queries by using the MO_ID found by the 2 "select" commands given above. It is sensitive to delete elements from Oracle DB tables. MO_ID must be checked carefully before do it. Attachments This solution has no attachment |
||||||||||||||||
|