Two scripts are querying the state of the database with the proutil -C holder command (sometimes at the same moment in time).
Steps to duplicate the issue:
1. Create a sample database for testing purposes:
$ prodb sports2000 sports2000
2. Then put the following code into a file that will be used as a script. Example: checksh
#!/bin/sh
while :
do
proutil sports2000 -C holder 2>/dev/null
x=$?
echo $x >> prohold.out
done3. Make the script executable:
$ chmod 777 checksh4. From two different terminal sessions, run the checksh script.