Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
4568 Visualizzazioni

When we make a massive import (eg. 10.000 partners)there is no process indicator. Is it possible to know during an import which record is currently processed because it's a very long task ?

Avatar
Abbandona
Risposta migliore

I'm not sure how commits are handled in your import, but you can try to query the Postgres database to check on the progress:

select * from res_partner 
order by id desc 
limit 100
Avatar
Abbandona
Autore

Commit is done at the end of the import, so select is not possible during the import.

Post correlati Risposte Visualizzazioni Attività
5
ott 23
23529
2
lug 16
13039
3
mar 15
9010
2
gen 23
14811
1
apr 22
6955