unique rows - Mailing list pgsql-sql

From TJ O'Donnell
Subject unique rows
Date
Msg-id 4512208C.9050607@acm.org
Whole thread Raw
Responses Re: unique rows  (Kaloyan Iliev <news1@faith.digsys.bg>)
Re: unique rows  (Markus Schaber <schabi@logix-tt.com>)
Re: unique rows  (Bruno Wolff III <bruno@wolff.to>)
List pgsql-sql
I want to make a table that has unique rows - no problem.
Create Table x (smarts Varchar Unique);

I have input data that has many duplicates and until now
I was creating a temp table allowing duplicates, and then
Insert into x (smarts) select distinct smarts from tmpx;
This is now failing when I have hundreds of millions of
rows, running out of temp space (while trying to sort to
accomplish the distinct?)

So, is there a way (a constraint, a check?) that will simply
REJECT a duplicate when I insert the raw data directly into x
rather than FAILING on an error as it does
with the unique constraint above?

Thanks,
TJ O'Donnell


pgsql-sql by date:

Previous
From: vijay balan
Date:
Subject: UnSubscribe
Next
From: dmz@streamyx.com
Date:
Subject: UnSubscribe