Does PostgreSQL allow running stored procedures in parallel? -
i'm working etl tool, business objects data services, has capability of specifying parallel execution of functions. documentation says before can this, have make sure database, in our case postgres, allows "a stored procedure run in parallel". can tell me if postgres that?
sure. run queries in different connections, , run in parallel transactions. beware of locking though.
Comments
Post a Comment