Skip to Content
Menu
This question has been flagged
1 Odpoveď
4917 Zobrazenia

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
Zrušiť
Best Answer

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
Zrušiť
Autor

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

Related Posts Replies Zobrazenia Aktivita
5
sep 25
24127
2
júl 16
13437
3
mar 15
9425
2
jan 23
15371
1
apr 22
7243