Skip to Content
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odgovori
4564 Prikazi

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
Opusti
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
Opusti
Avtor

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

Related Posts Odgovori Prikazi Aktivnost
5
okt. 23
23529
2
jul. 16
13037
3
mar. 15
9010
2
jan. 23
14810
1
apr. 22
6954