Re: Copy Data Question

Поиск
Список
Период
Сортировка
От
Тема Re: Copy Data Question
Дата
Msg-id 20060622215447.73314.qmail@web33301.mail.mud.yahoo.com
обсуждение исходный текст
Ответ на Re: Copy Data Question  (Richard Broersma Jr <rabroersma@yahoo.com>)
Ответы Re: Copy Data Question  (Richard Broersma Jr <rabroersma@yahoo.com>)
Список pgsql-novice
> > how can i add *only* nonexisting entries to my db
> > tables (iow, if it is one of the 100+ there now, i
> > don't want to mess with it)?
>
> I will take a stab at the easy question. Out of test
> solutions, this is the one that I know.
>
> 1. create a temp table using destination table
> schema using the LIKE clause.
>
http://www.postgresql.org/docs/8.1/interactive/sql-createtable.html
>
> 2. import external data into the temp table.
>
> 3. select into destinationtable from temptable where
> temptable.primarykey not exists
> ( select destinationtable.primarykey
>    from destination table
> );

Richard, thanks.  in my case, the primary key isn't
relevant, however, the product_number is (it is
unique).  iiuc, in my case i should use product_number
instead of primarykey.

it makes sense - thanks for the enlightenment.

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

В списке pgsql-novice по дате отправления:

Предыдущее
От: Richard Broersma Jr
Дата:
Сообщение: Re: Copy Data Question
Следующее
От: Richard Broersma Jr
Дата:
Сообщение: Re: Copy Data Question