B
Bruce Meneghin
I received the error "Invalid scale for decimal data type" while trying to
execute this crosstab query (created with crosstab wizard)
TRANSFORM Sum(INV_ages.Acres) AS SumOfAcres
SELECT INV_ages.period, Sum(INV_ages.Acres) AS [Total Of Acres]
FROM INV_ages
GROUP BY INV_ages.period
PIVOT INV_ages.Age;
INV_ages is a query. I will spare you its SQL for now.
Any clue what might be causing this strange error. I have executed this
query successfully in the past.
execute this crosstab query (created with crosstab wizard)
TRANSFORM Sum(INV_ages.Acres) AS SumOfAcres
SELECT INV_ages.period, Sum(INV_ages.Acres) AS [Total Of Acres]
FROM INV_ages
GROUP BY INV_ages.period
PIVOT INV_ages.Age;
INV_ages is a query. I will spare you its SQL for now.
Any clue what might be causing this strange error. I have executed this
query successfully in the past.