Re: duplicating records

2004-02-17 Thread Jeremy March
> I tried this and doesn't work unforunately. I get "ERROR: Duplicate > entry..." that occurs when copying from the temporary table back into > the original table. > Is there a way to do this, to copy a single record, without moving the > primary key into the temporary table so I can avoid this

Re: duplicating records

2004-02-17 Thread Ari Denison
I tried this and doesn't work unforunately. I get "ERROR: Duplicate entry..." that occurs when copying from the temporary table back into the original table. Is there a way to do this, to copy a single record, without moving the primary key into the temporary table so I can avoid this error? Ar

Re: duplicating records

2004-02-17 Thread Sasha Pachev
Ari Denison wrote: I have a need to duplicate individual records in a table with a large number of fields. This is not part of a backup or restore process. I simply need to be able to duplicate a record or two on occasion. Is there an efficient way to do this? I obviously don't want to duplic

duplicating records

2004-02-17 Thread Ari Denison
I have a need to duplicate individual records in a table with a large number of fields. This is not part of a backup or restore process. I simply need to be able to duplicate a record or two on occasion. Is there an efficient way to do this? I obviously don't want to duplicate keyfields, just

RE: Deleting duplicating records

2003-07-29 Thread Lin Yu
Chand [mailto:[EMAIL PROTECTED] Sent: Monday, July 28, 2003 11:27 AM To: Jeff McKeon; [EMAIL PROTECTED] Subject: RE: Deleting duplicating records Well that is OK if I have only one email. What if if I have thousands of users duplicated... Do I need to write SQL query 1000 times Karam --- Jeff

Re: Deleting duplicating records

2003-07-28 Thread richardb
Engineering Test Data Management Group 6824-1367 Karam Chand <[EMAIL PROTECTED]>29/07/2003 01:13 AM To: Venelin Arnaoudov <[EMAIL PROTECTED]>, [EMAIL PROTECTED], [EMAIL PROTECTED] cc: [EMAIL PROTECTED], (bcc: BORNAY Richard/Engr/STATS/ST Group) Subject: Re: Deleting duplica

RE: Deleting duplicating records

2003-07-28 Thread Lin Yu
&& ID <> 1 > > Jeff > > -Original Message- > > From: Karam Chand [mailto:[EMAIL PROTECTED] > > > Sent: Monday, July 28, 2003 10:33 AM > > To: [EMAIL PROTECTED] > > Subject: Deleting duplicating records > > > > > > G

Re: Deleting duplicating records

2003-07-28 Thread Andy Jackman
on <[EMAIL PROTECTED]> wrote: > > > > > >>How bout > >> > >>Delete from tablename where email like > >>[EMAIL PROTECTED] && ID <> 1 > >> > >>Jeff > >> > >> > >>>-Ori

Re: Deleting duplicating records

2003-07-28 Thread Karam Chand
t;>>-----Original Message- > >>>From: Karam Chand > [mailto:[EMAIL PROTECTED] > >>> > >>> > >>>Sent: Monday, July 28, 2003 10:33 AM > >>>To: [EMAIL PROTECTED] > >>>Subject: Deleting duplicating records > >>>

Re: Deleting duplicating records

2003-07-28 Thread Venelin Arnaoudov
D] Subject: Deleting duplicating records Greetings I manage a website wherein i keep track of the people email who have downloaded my software and the version number. the structure is like - id int auto_increment primary key, email char, version now the same person can downlo

RE: Deleting duplicating records

2003-07-28 Thread Karam Chand
mp;& ID <> 1 > > Jeff > > -Original Message- > > From: Karam Chand [mailto:[EMAIL PROTECTED] > > > Sent: Monday, July 28, 2003 10:33 AM > > To: [EMAIL PROTECTED] > > Subject: Deleting duplicating records > > > > > > Greetings >

RE: Deleting duplicating records

2003-07-28 Thread Jeff McKeon
How bout Delete from tablename where email like [EMAIL PROTECTED] && ID <> 1 Jeff > -Original Message- > From: Karam Chand [mailto:[EMAIL PROTECTED] > Sent: Monday, July 28, 2003 10:33 AM > To: [EMAIL PROTECTED] > Subject: Deleting duplicating records &g

Deleting duplicating records

2003-07-28 Thread Karam Chand
Greetings I manage a website wherein i keep track of the people email who have downloaded my software and the version number. the structure is like - id int auto_increment primary key, email char, version now the same person can download different version therfore my table has data like this -

Duplicating records with a changed field?

2002-12-16 Thread KEVIN ZEMBOWER
Is it possible to duplicate a record in a table into the same table with a changed field? I have a single user who now has authority over an additional database. I wanted to duplicate the records in myslq.db for this user, changing the Db field to the name of the additional database. I searched