Je voudrais lister toutes les tables de la liferay
base de données dans mon installation PostgreSQL. Comment je fais ça?
Je voudrais exécuter SELECT * FROM applications;
dans la liferay
base de données. applications
est une table dans ma db liferay. Comment cela se fait-il?
Voici une liste de toutes mes bases de données:
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
inclut des vues pour une raison quelconque. (Dans PostgreSQL 9.2, de toute façon.)