Сообщение об ошибке получения переполнения при просмотре отчета - PullRequest
0 голосов
/ 05 июня 2019

Я продолжаю получать сообщение об ошибке «переполнение конверсии» при предварительном просмотре отчета в построителе отчетов Telerik в Visual Studio 2012.

Я проверил форматирование полей даты и чисел, но все еще получаю одно и то же сообщение об ошибке.

    select c.name, c.Address, c.City ,c.County ,c.[Post Code], c.[Territory 
    Code], si.[No_], si.[Serial No_], si.[Manufacturer Code], si.[Model 
    Code], 
    si.[Model Year], max(sil.[Posting Date]) as 'Most Recent Service Date', 
    max(mre.Reading) as 'Last Hour Reading'
    from [service item] si left join [customer] c on si.[Customer No_] = c. 
    [No_] left join [service invoice line] sil on si.[No_] = sil.[Service 
    Item  No_]
    left join [Meter Reading Entry] mre on 
    mre.[Service Item No_] = si.[No_] 
    where si.[Manufacturer Code] not in ('CLK', 'CRN') 
    and si.[Customer No_] not in ('5994c','5998c')
    and si.[Service Item Group Code] = 'FOR'
    and c.name !=''



    group by c.name, c.Address, c.City ,c.County ,c.[Post Code], c. 
    [Territory 
    Code], si.[No_], si.[Serial No_], si.[Manufacturer Code], si.[Model 
    Code], si.[Model Year]

Я ожидаю, что поля будут возвращены. Все данные возвращаются отлично в Sql Management Studio. Я скажу, что когда я удаляю два поля «max» в конце запроса, он возвращает оставшиеся данные без сообщения об ошибке «Overflows Conversion».

...