MaRCeLO PeReiRA wrote:
> Hi guys,
>
> How can I know about the number of active
> connections?? (not the maximum allowed, but the number
> of open connections).
>
If you have enough permission:
select count(*) from pg_stat_activity;
Regards
Gaetano Mendola