If, after failover, you see errors in the GUI logs relating to the NETWORKVIEWSUMR or
networkViewSumr table, you must drop and recreate this table.
About this task
The procedure for dropping and recreating the table differs on DB2 and Oracle.
Procedure
-
For DB2, complete the following steps:
- Enter the following commands at the DB2 command prompt.
SET SCHEMA ncpgui;
DROP TABLE networkViewSumr;
- Find the section of
$PRECISION_HOME/scripts/sql/db2/createPrecisionGUIDb.sql
that creates
networkViewSumr
and copy it into the DB2 command line.
- Enter the following command at the DB2 command prompt:
- Exit the DB2 command line.
-
For Oracle, comnplete the following steps:
- Enter the following commands at the Oracle command prompt.
ALTER SESSION SET CURRENT_SCHEMA = ncpgui;
DROP TABLE networkViewSumr;
- Find the section of
$PRECISION_HOME/scripts/sql/oracle/createPrecisionGUIDb.sql
that creates
networkViewSumr
and copy it into the Oracle command line.
- Exit the Oracle command line.