This question has been flagged
1 Reply
5062 Views

Hi Folks, Tops to you this day. I imported accounts (account_account) directly from pgadmin. Afterwards I tried to create a new account from OpenERP, when I try to save,I get the following error message

"duplicate key value violates unique constraint "account_account_pkey" DETAIL: Key (id)=(114) already exists."

Apparently before I imported the accounts from pgadmin, the next in line pkey was 114, I manually assigned this as a database id for one of the imported accounts but somehow the system does not consider the manually assigned database id (assigned during my pgadmin import). I imagine it stores OpenERP assigned database ID some where so I need to go and update that to read the actual last database id based on my assigned values.

Does anyone know where that it is stored or how I can achieve that?

many thanks in advance for your help.

Cheers

Avatar
Discard
Author

I tried it out and it worked. Many Thanks

Flag as answered, thx

@Chike: in the left margin of ECP D's answer there is a check mark. Click on it, to mark your question as answered fully. That way others (like me, for example) will not waste time reading a question which has already been answered. Also, click the up arrow, as I just did, to give ECP D further "karma points" for his excellent, rapid and accurate answer.

Author

@Martin Just did.Thanks

Best Answer

Hi Go to pgadmin, YOURDATABASE/schemas/public/sequences/res_partner_id_seq and Alter/restart value (on your example its need to be what u got in the error message 114.. ) Set this value to the last ID after importing manually your partners.

Avatar
Discard