On Tue, 3 Feb 2004, Jan Wieck wrote:
> scott.marlowe wrote:
>
> > On Mon, 2 Feb 2004, Jan Wieck wrote:
> >
> >> Stephan Szabo wrote:
> >>
> >> > On Sat, 31 Jan 2004, Tom Lane wrote:
> >> >
> >> >> Stephan Szabo <[EMAIL PROTECTED]> writes:
> >> >> > On Mon, 26 Jan 2004, Enio Schutt Junior wrote
On Tue, 3 Feb 2004, Jan Wieck wrote:
> scott.marlowe wrote:
>
> > On Mon, 2 Feb 2004, Jan Wieck wrote:
> >
> >> Stephan Szabo wrote:
> >>
> >> > On Sat, 31 Jan 2004, Tom Lane wrote:
> >> >
> >> >> Stephan Szabo <[EMAIL PROTECTED]> writes:
> >> >> > On Mon, 26 Jan 2004, Enio Schutt Junior wrote
scott.marlowe wrote:
On Mon, 2 Feb 2004, Jan Wieck wrote:
Stephan Szabo wrote:
> On Sat, 31 Jan 2004, Tom Lane wrote:
>
>> Stephan Szabo <[EMAIL PROTECTED]> writes:
>> > On Mon, 26 Jan 2004, Enio Schutt Junior wrote:
>> >> In a database I am working, I sometimes have to delete all the records i
On Mon, 2 Feb 2004, Jan Wieck wrote:
> Stephan Szabo wrote:
>
> > On Sat, 31 Jan 2004, Tom Lane wrote:
> >
> >> Stephan Szabo <[EMAIL PROTECTED]> writes:
> >> > On Mon, 26 Jan 2004, Enio Schutt Junior wrote:
> >> >> In a database I am working, I sometimes have to delete all the records in
> >> >
> TRUNCATE cannot be used inside of a transaction, and since 7.3 it checks
> for foreign keys. So I guess Enio is getting but ignoring the error
In 7.4 truncate is transaction safe.
---(end of broadcast)---
TIP 1: subscribe and unsubscribe comma
Stephan Szabo wrote:
On Sat, 31 Jan 2004, Tom Lane wrote:
Stephan Szabo <[EMAIL PROTECTED]> writes:
> On Mon, 26 Jan 2004, Enio Schutt Junior wrote:
>> In a database I am working, I sometimes have to delete all the records in
>> some tables. According to the referential integrity defined in the c
On Sat, 31 Jan 2004, Tom Lane wrote:
> Stephan Szabo <[EMAIL PROTECTED]> writes:
> > On Mon, 26 Jan 2004, Enio Schutt Junior wrote:
> >> In a database I am working, I sometimes have to delete all the records in
> >> some tables. According to the referential integrity defined in the creation
> >>
Stephan Szabo <[EMAIL PROTECTED]> writes:
> On Mon, 26 Jan 2004, Enio Schutt Junior wrote:
>> In a database I am working, I sometimes have to delete all the records in
>> some tables. According to the referential integrity defined in the creation
>> of the tables, postmaster should not delete the r
On Mon, 26 Jan 2004, Enio Schutt Junior wrote:
> In a database I am working, I sometimes have to delete all the records in
> some tables. According to the referential integrity defined in the creation
> of the tables, postmaster should not delete the records, but it does. I have
> used the follow