Consultor Eletrônico



Kbase P17618: Is it possible to run multiple instances of binary load simultaneously.
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   10/16/2008
Status: Unverified

GOAL:

Is it possible to run multiple instances of binary load simultaneously.

GOAL:

How to make multiple binary loads to a DB.

FACT(s) (Environment):

Progress 9.1x
All Supported Operating Systems
OpenEdge 10.x

FIX:

Yes, it's possible.
You have to start a server with the proserve command, then you can start several instances of the binary load utility.
The following UNIX example loads 4 tables at the same time against a database with the same data definitions as a sports2000 database.

proserve mysports -n 4
proutil mysports -C load ./Invoice.bd build indexes &
proutil mysports -C load ./Customer.bd build indexes &
proutil mysports -C load ./Item.bd build indexes &
proutil mysports -C load ./OrderLine.bd build indexes &
The following Windows example does the same as above.

proserve mysports -n 4
start /B proutil mysports -C load ./Invoice.bd build indexes
start /B proutil mysports -C load ./Customer.bd build indexes
start /B proutil mysports -C load ./Item.bd build indexes
start /B proutil mysports -C load ./OrderLine.bd build indexes
Please be aware that, in order to avoid table fragmentation, it is advisable to only run one binary load per storage area.