I have at least one table in my db that I can't Drop. I get "canceling statement due to statement timeout" errors. The table is empty, I have tried with Cascade and without. First time this has happened to me. Could it be corrupted? I did an Analyze via phpPgAdmin but it doesn't show any result, not sure what it's supposed to do. Also via phpPgAdmin: Vacuum works, Vacuum+Analyze works. Vacuum Full timesout with the error above. Any ideas? I need to drop this table in order to rebuild it via Django syncdb... asked 19 Apr '11, 14:56 anentropic |
Have you tried dropping the table from the command line? Here is the documentation on connecting: http://docs.webfaction.com/user-guide/databases.html?highlight=postgres#postgresql-command-line
thanks, that worked!