This value isn't stored in a table - it is a calculated value. The value is calculated by comparing the current line PRRATEHIST.ANNUAL-SALARY with the previous effective dated (and/or seq num) record PRRATEHIST.ANNUAL-SALARY. The COBOL code looks like this: COMPUTE PA67WS-PCT-CHANGE ROUNDED = (((PA67F1-PRH-ANNUAL-SALARY (I1) - PA67F1-PRH-ANNUAL-SALARY (I2)) / PA67F1-PRH-ANNUAL-SALARY (I2)) * 100) Based on this, I think you're going to have to figure out how to do it in SQL. Good Luck.