Re: [GENERAL] delete is extremely slow

2006-05-26 Thread Scott Marlowe
On Fri, 2006-05-26 at 09:57, Emi Lu wrote: > Scott Marlowe wrote: > > >On Fri, 2006-05-26 at 09:51, Emi Lu wrote: > > > > > >>Emi Lu wrote: > >> > >> > >> > >Tried to run: > > > >delete from tableA where id <60; > > > >It is extremely slow. > > > >id is intege

Re: [GENERAL] delete is extremely slow

2006-05-26 Thread Emi Lu
Scott Marlowe wrote: On Fri, 2006-05-26 at 09:51, Emi Lu wrote: Emi Lu wrote: Tried to run: delete from tableA where id <60; It is extremely slow. id is integer and also the primary key. tableA has around 9 records. (I do not want to run truncate since I have some foreig

Re: [GENERAL] delete is extremely slow

2006-05-26 Thread Scott Marlowe
On Fri, 2006-05-26 at 09:51, Emi Lu wrote: > Emi Lu wrote: > > > > >>> Tried to run: > >>> > >>> delete from tableA where id <60; > >>> > >>> It is extremely slow. > >>> > >>> id is integer and also the primary key. tableA has around 9 > >>> records. > >>> > >>> (I do not want to run trun

Re: [GENERAL] delete is extremely slow

2006-05-26 Thread Emi Lu
Emi Lu wrote: Tried to run: delete from tableA where id <60; It is extremely slow. id is integer and also the primary key. tableA has around 9 records. (I do not want to run truncate since I have some foreign key constraint setup based on tableA. Besides not all data I want to de

Re: [GENERAL] delete is extremely slow

2006-05-26 Thread Emi Lu
Tried to run: delete from tableA where id <60; It is extremely slow. id is integer and also the primary key. tableA has around 9 records. (I do not want to run truncate since I have some foreign key constraint setup based on tableA. Besides not all data I want to delete; only part of

Re: [GENERAL] delete is extremely slow

2006-05-26 Thread Qingqing Zhou
"Emi Lu" <[EMAIL PROTECTED]> wrote > Hello, > > Tried to run: > > delete from tableA where id <60; > > It is extremely slow. > > id is integer and also the primary key. tableA has around 9 records. > > (I do not want to run truncate since I have some foreign key constraint > setup based on