Me gustaría enumerar todas las tablas en la liferay
base de datos en mi instalación de PostgreSQL. ¿Cómo puedo hacer eso?
Me gustaría ejecutar SELECT * FROM applications;
en la liferay
base de datos. applications
es una tabla en mi liferay db. ¿Cómo se hace esto?
Aquí hay una lista de todas mis bases de datos:
postgres=# \list
List of databases
Name | Owner | Encoding | Collate | Ctype | Access privileges
-----------+----------+----------+-------------+-------------+-----------------------
liferay | postgres | UTF8 | en_GB.UTF-8 | en_GB.UTF-8 | =Tc/postgres +
| | | | | postgres=CTc/postgres+
| | | | | liferay=CTc/postgres
lportal | postgres | UTF8 | en_GB.UTF-8 | en_GB.UTF-8 |
postgres | postgres | UTF8 | en_GB.UTF-8 | en_GB.UTF-8 |
template0 | postgres | UTF8 | en_GB.UTF-8 | en_GB.UTF-8 | =c/postgres +
| | | | | postgres=CTc/postgres
template1 | postgres | UTF8 | en_GB.UTF-8 | en_GB.UTF-8 | =c/postgres +
| | | | | postgres=CTc/postgres
(5 rows)
postgres=#
information_schema.tables
incluye vistas por alguna razón. (En PostgreSQL 9.2, de todos modos.)