Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Confluence Upgrade 3.2.1_01 to 3.5 - problem with database!

Deleted user June 6, 2012

We are performing an Confluence upgrade and on the first startup there was an issue with the database. We are using Oracle 10g with ojdbc 1.4 driver. The following error occured in the logs and the upgrade did not complete.

2012-06-07 11:34:12,840 ERROR [main] [hibernate.tool.hbm2ddl.SchemaUpdate] execute Unsuccessful: alter table IMAGEDETAILS add constraint FKA768048734A4917E foreign key (ATTACHMENTID) references ATTACHMENTS
2012-06-07 11:34:12,841 ERROR [main] [hibernate.tool.hbm2ddl.SchemaUpdate] execute ORA-02298: cannot validate (CONFLUENCE_ADM.FKA768048734A4917E) - parent keys not found

2012-06-07 11:34:12,843 ERROR [main] [hibernate.tool.hbm2ddl.SchemaUpdate] execute could not complete schema update
java.sql.SQLException: ORA-02298: cannot validate (CONFLUENCE_ADM.FKA768048734A4917E) - parent keys not found

at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:331)
at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:288)
at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:745)
at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:210)
at oracle.jdbc.driver.T4CStatement.executeForRows(T4CStatement.java:961)

2 answers

1 accepted

1 vote
Answer accepted
Deleted user June 6, 2012

Found solution:

select * from IMAGEDETAILS
LEFT JOIN (SELECT * FROM ATTACHMENTS) ats on ats.ATTACHMENTID = IMAGEDETAILS.ATTACHMENTID
WHERE CONTENTTYPE is null

delete from IMAGEDETAILS where ATTACHMENTID = <id>;

Paul Tempera June 26, 2012

What do you enter in <id> ?

Deleted user June 26, 2012

the ATTACHMENTID from the select, it will return all imagedetails with no corresponding attachments.

0 votes
Alejandro Conde Carrillo
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 20, 2014

Hi Miroslav.

An easier way to do that in a single query is:

delete from IMAGEDETAILS where ATTACHMENTID not in (select ATTACHMENTID from ATTACHMENTS);

Ken Wood
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 9, 2014

I'm late to this game. We had the some problem upgrading from Confluence 4.3 to 5.0.3.

What are these missing rows used for? What is the consequence of deleting them? Why were they missing in the first place?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events