. "OpenLink's re-link scripts are associated with missing library errors and missing symbol errors. Use the following guidelines to troubleshoot these problems: Missing Libraries:\n\n 1. Search the machine for the missing library.\n 2. Insure that no file or directory permissions prohibit access to found libraries.\n 3. Insure that LD_LIBRARY_PATH, LIBPATH, or SHLIB_PATH pass the location of found libraries.\n 4. Pass the full path to found libraries within the re-link script itself. In most cases, pass the library on the cc -s -o line. However, pass the library on the make -f line in Oracle scripts. Pass the library under $PRO_EXTRA in Progress mkdlc scripts.\n\nMissing Symbols\n\n 1. Login to the machine.\n 2. cd into the database's /lib sub-directory.\n 3. Run the following command: nm -A *.so | grep . For example:\n\n nm -A *.so | grep xsendto\n\n 4. Record the names of files, which contain the symbols. The filename will be the first name in the nm output.\n 5. cd to the /lib sub-directory of the OpenLink installation.\n 6. vi the script that produced the error.\n 7. Pass the full path to found libraries within the re-link script itself. In most cases, pass the library on the cc -s -o line. However, pass the library on the make -f line in Oracle scripts. Pass the library under $PRO_EXTRA in Progress mkdlc scripts.\n" . . .