Hallo Zusammen,
als Neuling hier im Forum habe ich versucht mich irgendwie durchzuhangeln und bin zum o.g. Thema auch auf verschiedene Beiträge gestoßen.
Leider kann ich mit keinem Beitrag eine Lösung herbeiführen.
Ich hänge mal den Code an, der zum Fehler führt.
USE [vdpstatistik]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER function [dbo].[JA - Ranking Gesamtumsatz Total](@pJahr int)
returns @Report_Table table
(
[Jahr] int,
[Umsatz WV] bigint NULL,
[Umsatz PP] bigint NULL,
[Umsatz Roh] bigint NULL,
[Umsatz gesamt] bigint NULL
)
as
begin
with PA as (
select Jahr,
HG, SG, UG, EG,
sum(coalesce(Weiterverarbeitung, 0)) as [Weiterverarbeitung]
from vdpproduktion.dbo.Produktion_und_Absatz_F1_F6 P
where Jahr = @pJahr
group by Jahr, HG, SG, UG, EG
),
VP as (
select Jahr,
HG, SG, UG, EG,
sum(coalesce(Verrechnungspreis, 0)) as [Verrechnungspreis]
from vdpproduktion.dbo.Verrechnungspreis V
where Jahr = @pJahr
group by Jahr, HG, SG, UG, EG
),
WV as (
select PA.Jahr,
sum([Weiterverarbeitung]) as [Weiterverarbeitung],
coalesce(sum(VP.[Verrechnungspreis] * (PA.[Weiterverarbeitung])), 0) as [Umsatz WV]
from PA
join VP
on PA.Jahr = VP.Jahr
and PA.HG = VP.HG
and PA.SG = VP.SG
and PA.UG = VP.UG
and PA.EG = VP.EG
group by PA.Jahr
),
PP as (
select Jahr,
sum(Papier_und_Pappe) as [Umsatz PP],
sum([Zellstoff] + [Holzschliff] + [Altpapierstoff]) as [Umsatz Roh]
from vdpproduktion.dbo.Umsaetze U
where Jahr = @pJahr
group by Jahr
)
insert @Report_Table
select coalesce(WV.Jahr, PP.Jahr) as Jahr,
coalesce(WV.[Umsatz WV],0),
coalesce(PP.[Umsatz PP],0),
coalesce(PP.[Umsatz Roh],0),
coalesce(WV.[Umsatz WV],0) + coalesce(PP.[Umsatz Roh],0) + coalesce(PP.[Umsatz PP],0) as [Umsatz gesamt]
from WV
full join PP
on PP.Jahr = WV.Jahr
return
end
Habe die Ausgabefelder als "bigint" declariert, mehr geht meineswissens doch nicht, oder?
Ich hoffe man kann diesen Code auch ohne weitere Erklärungen lesen. Wenn ich das richtig verstehe, geht es im Prinzip doch nur um die Größe des Ausgabefeldes. Es kann bei der Ausgabe bis hin zu 3 stelligen Millardenbeträgen kommen. Welche Größeneinheit kann man denn hier noch nehmen?
Hat vielleicht jemand eine Idee, wie ich zu meinen Ergebnissen komme.
Vielen Dank schon mal im Voraus
Ralf