Re: Delete w/ regexp

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Steve Wolfe" <steve(at)iboats(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Delete w/ regexp
Date: 2001-04-19 23:14:12
Message-ID: 23237.987722052@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

"Steve Wolfe" <steve(at)iboats(dot)com> writes:
>> Show us a gdb backtrace from the backend core dump?

> Sounds like a good suggestion to me. : )

> Where would the core file be found?

Should be in $PGDATA/base/YOURDB/core.

If it's not there, then either (a) the backend is not actually crashing,
but doing a semi-controlled exit --- check the postmaster log to find
out; or (b) no core dump is being made because you started the
postmaster with ulimit settings that forbid a core dump. (b) is pretty
likely on Linux machines because "ulimit -c 0" is the standard context
for system boot scripts. Try restarting the postmaster with "ulimit -c
unlimited" (I'd suggest putting this into the PG startup script).

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2001-04-19 23:21:31 Re: Best practice
Previous Message Steve Wolfe 2001-04-19 22:21:28 Re: Delete w/ regexp