Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

CLM upgrade with Oracle - 4.0.6

CLM + DW - 4.0.2
WAS/Oracle/Linux

Upgrading to 4.0.6, noticed this information:
Before you start the Quality Management application upgrade, run statistics to update the database tables. Otherwise, the migration might take several hours.

The following tables must contain up-to-date database statistics:

  • REPOSITORY.ITEM_STATES
  • REPOSITORY.ITEM_CURRENTS
  • REPOSITORY.ITEM_TYPES
  • LINKS.AUDITABLE_LINK

For information about the Oracle database DBMS_STATS command, see the Oracle website.

However, looking in Oracle, we have found:

SQL> select instance_name, host_name from v$instance;

INSTANCE_NAME HOST_NAME

---------------- ----------------------------------------------------------------

RTMSPRS oracle.company.com

SQL> desc REPOSITORY.ITEM_STATES

ERROR:

ORA-04043: object REPOSITORY.ITEM_STATES does not exist

What if these tables are not located?

0 votes


Accepted answer

Permanent link
The correct table names in Oracle should be as follows.
  •     REPOSITORY_ITEM_STATES
  •     REPOSITORY_ITEM_CURRENTS
  •     REPOSITORY_ITEM_TYPES
  •     LINKS_AUDITABLE_LINK
I believe this is due to the fact that Oracle does not have a separate "schema" from the user as in SQL Server or DB2. Basically, whenever you see a table name <schema>.<table_name> mentioned for Jazz applications, you need to convert it to <schema>_<table_name> in Oracle.
Sterling Ferguson-II selected this answer as the correct answer

1 vote

Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 7,497
× 6,124
× 42

Question asked: May 19 '14, 1:35 p.m.

Question was seen: 3,988 times

Last updated: May 20 '14, 12:53 a.m.

Confirmation Cancel Confirm