# File lib/jdbc_adapter/jdbc_db2.rb, line 104
    def recreate_database(name)
      do_not_drop = ["stmg_dbsize_info","hmon_atm_info","hmon_collection","policy"]
      tables.each do |table|
        unless do_not_drop.include?(table)
          drop_table(table)
        end
      end
    end