Вы можете использовать Charindex для этого, предполагая, что столбец allow_amount равен varchar или nvarchar
select len(substring(allowed_amount,charindex('.',allowed_amount)+1,len(allowed_amount))) from export_core_report_client_output
Это даст вам количество десятичных значений после, а затем вы можете использовать тот же оператор в предложении where для проверки, например:
select len(substring(allowed_amount,charindex('.',allowed_amount)+1,len(allowed_amount))) from export_core_report_client_output
where len(substring(allowed_amount,charindex('.',allowed_amount)+1,len(allowed_amount)))> 2
любые вопросы всплывают в комментариях