Wanted to ask if anyone could help me with this problem.
The thing is that i have a big geometry, with 5,000,000
vertices and an space of 170MB
. That i want to store in a postgres database, after i apply the process of ST_MakValid
(https://postgis.net/docs/ST_MakeValid.html). The problem is that the process juts takes too long to finish. I ran
SELECT ST_MakeValid(geom) FROM myTable
for several hours and never ended. So wanted to check if someone knew a way to permorf this operation with a better perfomance.