After reading PostgreSQL 9.3 documentation and having run a single simple query to make all column names lowercase I attempted to replicate this to make all the table names all lowercase...
UPDATE pg_attribute SET tablename=lower(tablename);
Unfortunately while the command line PSQL did not throw any errors none of the database table names were made lowercase.
How do I make all the table names lowercase in PostgreSQL?
I don't need anything complex as these are tables that will be dropped as the data is a mess so just a blatantly simple query would be great.
pg_attributestores column names, not table names.execute format(...)ddl commands to make changes.