It had a couple of tables that when you try to select from them, you would get the error message "Database is damaged". At this point all users would get kicked off the database. I would then have to go to the server and manually restart the database. I then tried to check the state of the tables in question with the following statement:
SELECT TABNAME FROM SYSCAT.TABLES WHERE TABSCHEMA = 'TESTDATA';
That select statement hung the database.
Finally, I tried to drop one of the "problem" tables. This action crashed the database so badly that I can nolonger restart it. The next thing I am going to try is to drop the entire database and recreate it (luckily this database is not a production one). I am just wondering what sort of things can lead to this problem? I am a long time oracle DBA, but I am brand new to DB2 administration, so any advice would be appreciated.