Domanda

Come faccio a trovare quali lingue sono stati caricati in EnterpriseDB (PL / pgSQL, SPL, Java)? EnterpriseDB è costruito sulla base di PostgreSQL se qualcuno sa di un modo per trovare le lingue caricate su PostgreSQL. Dovrebbe funzionare lo stesso.

È stato utile?

Soluzione

Le lingue installate sono registrati in pl_language, per esempio:.

steve@steve@[local] =# select * from pg_language;
 lanname  | lanowner | lanispl | lanpltrusted | lanplcallfoid | lanvalidator | lanacl
----------+----------+---------+--------------+---------------+--------------+--------
 internal |       10 | f       | f            |             0 |         2246 |
 c        |       10 | f       | f            |             0 |         2247 |
 sql      |       10 | f       | t            |             0 |         2248 |
 plpgsql  |       10 | t       | t            |         73259 |        73260 |
(4 rows)

Altri suggerimenti

scroll top