Chciałbym wyświetlić wszystkie tabele w liferay
bazie danych w mojej instalacji PostgreSQL. W jaki sposób mogę to zrobić?
Chciałbym wykonać SELECT * FROM applications;
w liferay
bazie danych. applications
to tabela w mojej bazie danych Liferay. Jak to się robi?
Oto lista wszystkich moich baz danych:
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
zawiera widoki z jakiegoś powodu. (W każdym razie w PostgreSQL 9.2.)