You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of repeating a complex query (e.g. complex where conditions) on every iteration using “ID grater than”, it would be interesting to use native PostgreSQL cursors.
Using PostgreSQL cursors you avoid repeating the query on the database (you avoid repeating it on each iteration, however if the db session ends, then you need to perform the query again, probably using “ID grater than” in this case).
Instead of repeating a complex query (e.g. complex
where
conditions) on every iteration using “ID grater than”, it would be interesting to use native PostgreSQL cursors.Using PostgreSQL cursors you avoid repeating the query on the database (you avoid repeating it on each iteration, however if the db session ends, then you need to perform the query again, probably using “ID grater than” in this case).
Related:
The text was updated successfully, but these errors were encountered: