Jump to content

Recommended Posts

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

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.

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);

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.