Something like this ought to generate the commands to run:
SELECT 'ALTER TABLE [' + table_schema + '].[' + table_name + '] ' +
'ALTER COLUMN [' + column_name + '] decimal(6, 2)'
FROM information_schema.columns
WHERE data_type = 'decimal'
AND numeric_precision = 5
AND numeric_scale = 2