Sumy skumulowane nie są obsługiwane do SQL Server 2012+. Przypuszczalnie używasz SQL Server 2005 lub 2008 lub ustawienie zgodności jest ustawione na 105 lub mniej (zobacz tutaj ).
W tych wersjach możesz użyć outer apply
:
select t.*, s.amount
from @t t outer apply
(select sum(t2.amount) as amount
from @t t2
where t2.cname = t.cname and t2.cid <= t.cid
) s;