clay1 Posted August 11, 2009 Share Posted August 11, 2009 I have a script which takes a file of customers and inserts the records into my postgres table. The email column in my table is set as a unique key, as I only want new records inserted into the table. If the file has a duplicate email-- how can I get a report of which records are excluded? Currently I get this error: Query failed: ERROR: duplicate key value violates unique constraint "leads_e-mail_key" I'd like to suppress that and instead display which records already existed Quote Link to comment https://forums.phpfreaks.com/topic/169707-preventing-and-reporting-duplicate-records-in-a-table/ Share on other sites More sharing options...
halfman Posted August 11, 2009 Share Posted August 11, 2009 I have a script which takes a file of customers and inserts the records into my postgres table. The email column in my table is set as a unique key, as I only want new records inserted into the table. If the file has a duplicate email-- how can I get a report of which records are excluded? Currently I get this error: Query failed: ERROR: duplicate key value violates unique constraint "leads_e-mail_key" I'd like to suppress that and instead display which records already existed Just write SELECT sql and get the duplication. make a proper error dump. Quote Link to comment https://forums.phpfreaks.com/topic/169707-preventing-and-reporting-duplicate-records-in-a-table/#findComment-895314 Share on other sites More sharing options...
clay1 Posted August 11, 2009 Author Share Posted August 11, 2009 I don't understand your answer-- could you explain? Quote Link to comment https://forums.phpfreaks.com/topic/169707-preventing-and-reporting-duplicate-records-in-a-table/#findComment-895335 Share on other sites More sharing options...
halfman Posted August 11, 2009 Share Posted August 11, 2009 Can you first check the DB for the similar email if it exsit just generate a report and enter the report in a text file or somewhere in databse if not insert the email. Quote Link to comment https://forums.phpfreaks.com/topic/169707-preventing-and-reporting-duplicate-records-in-a-table/#findComment-895361 Share on other sites More sharing options...
clay1 Posted August 11, 2009 Author Share Posted August 11, 2009 Thanks for the tip I've got it working using this code.. is there anything I could do better here? $email = $line[$emailkey]; $checkdupes = "SELECT * from \"leads\" WHERE \"e-mail\" = '{$email}'"; $emailresult = pg_query($conn, $checkdupes); if ($dupes = pg_fetch_row($emailresult)){ echo 'Line: ' . $row . ' ' . $line[$namekey] . ' ' . $line[$emailkey] . ' is a duplicate<br><br>'; $rowsinserted--; } elseif(empty($email)){ echo 'Line: ' . $row . ' ' . $line[$namekey] . ' ' . $line[$emailkey] . ' has no email address<br><br>'; $rowsinserted--; } elseif(empty($telephone)){ echo 'Line: ' . $row . ' ' . $line[$namekey] . ' ' . $line[$emailkey] . ' has no phone number<br><br>'; $rowsinserted--; } else { if ($age < 25){ echo 'Line: ' . $row . ' ' . $line[$namekey] . ' ' . $line[$emailkey] . ' is a under 25 years old<br><br>'; $rowsinserted--; } $status = insertRow('leads', $vars, $nulls, $format, $types); Quote Link to comment https://forums.phpfreaks.com/topic/169707-preventing-and-reporting-duplicate-records-in-a-table/#findComment-895496 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.