Hello,
I have a MySQL 5.1 database and an application that connects to it (Confluence 3.5.11). Recently I had to delete the contents of one table: PLUGINDATA table.
Ever since, application cannot INSERT anything into that same table... This table is used for storing plugins, and I cannot install any plugin because I'm unable to INSERT into that table... I get the following error from the apllication log:
So my question is this: Are indexes that are built upon that table somehow preventing INSERT-ing of data that was there before, and do I have to drop them and rebuild them again?
I have a MySQL 5.1 database and an application that connects to it (Confluence 3.5.11). Recently I had to delete the contents of one table: PLUGINDATA table.
Ever since, application cannot INSERT anything into that same table... This table is used for storing plugins, and I cannot install any plugin because I'm unable to INSERT into that table... I get the following error from the apllication log:
Code:
2013-02-05 09:32:22,500 ERROR [pool-8-thread-1] [com.atlassian.upm.PluginInstaller] execute Failed to install plugin
-- referer: http://192.168.10.170:8880/plugins/servlet/upm | url: /rest/plugins/1.0/ | userName: user1
org.springframework.transaction.TransactionTimedOutException: Transaction timed out: deadline was Tue Feb 05 09:32:22 CET 2013
at org.springframework.transaction.support.ResourceHolderSupport.checkTransactionTimeout(ResourceHolderSupport.java:139)
So my question is this: Are indexes that are built upon that table somehow preventing INSERT-ing of data that was there before, and do I have to drop them and rebuild them again?