in reply to Re: Re (tilly) 2: millions of records in a Hash
in thread millions of records in a Hash
Something like
should work, and shouldn't tax your "monster dec alpha box" excessively.select distinct key, value into unique_table from duplicate_table
If you want to find which rows have duplicate keys you may have to add a COUNT(*) and a GROUP BY clause...
Michael
Update Note that the select statement above will only work if you have "create table" priviledges in the database...
|
|---|