• Thanks Flo and Bob:

    The Collate statement allowed me to find the incorrect string and the Update query allowed me to correct the data

    UPDATE sometable

    SET someColumn = REPLACE(someColumn,'cqs','CQS')

    WHERE somecolumn LIKE 'cqs%'

    Thanks again:-)