Re: Abort state on duplicated PKey in transactions
От | Haroldo Stenger |
---|---|
Тема | Re: Abort state on duplicated PKey in transactions |
Дата | |
Msg-id | 3B9A6FF8.12ADCEE8@adinet.com.uy обсуждение исходный текст |
Ответ на | Abort state on duplicated PKey in transactions (Haroldo Stenger <hstenger@adinet.com.uy>) |
Список | pgsql-hackers |
"Matthew T. O'Connor" wrote: > > > A solution, could be to query for the existance of the PK, just before the > > insertion. But there is a little span between the test and the > > insertion, where another insertion from another transaction could void > > the existance test. Any clever ideas on how to solve this? Using > > triggers maybe? Other solutions? > > > > All you need to do is use a sequence. If you set the sequence to be the > primary key with a default value of nextval(seq_name) then you will never > have a collision. Alternatly if you need to know that number before you > start inserting you can select next_val(seq_name) before you inser and use > that. By the way the datatype serial automates exactly what I described. Yes, but there are situations where a sequenced PK isn't what is needed. Imagine a DW app, where composed PKs such as (ClientNum, Year, Month, ArticleNum) in a table which has ArticleQty as a secondary field are used, in order to consolidate detail record from other tables. There, the processing cycle goes like checking for the existance of the PK, if it exists, add ArticleQtyDetail to ArticleQty, and update; and if it doesn't exist, insert the record with ArticleQtyDetail as the starting value of ArticleQty. See it? Then, if between the "select from" and the "insert into", other process in the system (due to parallel processing for instance) inserts a record with the same key, then the first transaction would cancel, forcing redoing of all the processing. So, sort of atomicity of the check?update:insert operation is needed. How can that be easily implemented using locks and triggers for example? Regards, Haroldo.
В списке pgsql-hackers по дате отправления: