I would
0. check the catalog for existing grants, views, indexes, and constraints where these tables are involved in. (SELECT ... FROM SYSCAT.*)
1. revoke all authorizations from the tables
2. remove all views, indexes, check constraints and referential constraints (also from other tables pointing to one of these 7)
3. Meanwhile keeping the necessary "alter table" and "create view" and "grant" statements, in case you have to restore everything
4. RENAME TABLE current_name TO new_name
5. Create the new tables etc.
Note that authorizations and indexes are transferred by the rename statement to the newly named tables, so removing grants and indexes is maybe not necessary.