The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 10-03-2008
PSDba PSDba is offline
Registered User
  
 

Join Date: Oct 2008
Posts: 4
I got it working. It appears to be related to the length and order of the macdef names. You have to have your macdefs in Alpha order and have the name differences occur in the first 8 characters or so. For example:

macdef ftp_TESTDB_cobol
macdef ftp_TESTDB_txt
macdef ftp_TESTDB_log

would always run the first macdef,

macdef TESTDB_cobol
macdef TESTDB_log
macdef TESTDB_txt

resolves the macdefs correctly.

Just in case anyone is interested.