Error occurred while doing updatedb: Maximo 7.6.1 - Oracle 12c (12.2) - Websphere 9.0.0.7
ORA-00959: Tablespace 'MAXIMO' does not exist
After creating oracle database instance, we creates tablespaces MAXDATA, MAXTEMP and MAXINDEX.
Identify whether store partitions of the tables and indexes are correctly inserted in below tables:
SELECT DISTINCT STORAGEPARTITION FROM MAXTABLECFG;
if it returns MAXIMO, then run below query
UPDATE MAXTABLECFG SET STORAGEPARTITION = 'MAXDATA' WHERE STORAGEPARTITION = 'MAXIMO' ;
UPDATE MAXTABLE SET STORAGEPARTITION = 'MAXDATA' WHERE STORAGEPARTITION = 'MAXIMO' ;
COMMIT;
Now will verify in MAXSYSINDEXES
SELECT DISTINCT STORAGEPARTITION FROM MAXSYSINDEXES;
if it returns MAXIMO, then run below query
UPDATE MAXSYSINDEXES SET STORAGEPARTITION = 'MAXDATA' WHERE STORAGEPARTITION = 'MAXIMO' ;
COMMIT;
For me, above solution is worked. Please try in dev environment and analyse the solution, before you apply to production.
ORA-00959: Tablespace 'MAXIMO' does not exist
After creating oracle database instance, we creates tablespaces MAXDATA, MAXTEMP and MAXINDEX.
Identify whether store partitions of the tables and indexes are correctly inserted in below tables:
SELECT DISTINCT STORAGEPARTITION FROM MAXTABLECFG;
if it returns MAXIMO, then run below query
UPDATE MAXTABLECFG SET STORAGEPARTITION = 'MAXDATA' WHERE STORAGEPARTITION = 'MAXIMO' ;
UPDATE MAXTABLE SET STORAGEPARTITION = 'MAXDATA' WHERE STORAGEPARTITION = 'MAXIMO' ;
COMMIT;
Now will verify in MAXSYSINDEXES
SELECT DISTINCT STORAGEPARTITION FROM MAXSYSINDEXES;
if it returns MAXIMO, then run below query
UPDATE MAXSYSINDEXES SET STORAGEPARTITION = 'MAXDATA' WHERE STORAGEPARTITION = 'MAXIMO' ;
COMMIT;
For me, above solution is worked. Please try in dev environment and analyse the solution, before you apply to production.