| From: | Alvaro Herrera <alvherre(at)commandprompt(dot)com> |
|---|---|
| To: | ashok raj <ashokexplorer(at)gmail(dot)com> |
| Cc: | pgsql-admin(at)postgresql(dot)org |
| Subject: | Re: procpid for temp schema |
| Date: | 2009-03-31 14:34:24 |
| Message-ID: | 20090331143424.GR23023@alvh.no-ip.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-admin |
ashok raj escribió:
> Hi ,
>
> is there a way that we could find which procpid or connection that
> has created a particular temporary schema (pg_temp_*) ?.
>
> In one of our db a temporary schema (pg_temp_48) was using more
> than 200GB of disk space and how to find the connection which has created
> the temp schema, ?
Try this
select backendid, pg_stat_get_backend_pid(backendid) as pid
from pg_stat_get_backend_idset() as backendid;
Look for backendid=48.
--
Alvaro Herrera http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Rafael Domiciano | 2009-03-31 16:04:15 | Vacuum Full |
| Previous Message | Tom Lane | 2009-03-31 14:24:28 | Re: PG Patch |