I’m working with an ETL tool, Business Objects Data Services, which has the capability of specifying parallel execution of functions. The documentation says that before you can do this, you have to make sure that your database, which in our case is Postgres, allows “a stored procedure to run in parallel”. Can anyone tell me if Postgres does that?
I’m working with an ETL tool, Business Objects Data Services, which has the capability
Share
Sure. Just run your queries in different connections, and they will run in parallel transactions. Beware of locking though.