help! (again!!)
i've noticed that under access 2000/2002 select into queries are giving integer values where previously they were double precision, which is messing up my results in a major way
is there an easy work around or do I have to change to using a create table (specifiying the variable precision) and inserting the data into it!
the problem is in the query below
SELECT A.Start_Block_ID,
A.Number_Of_Readings,
SUM((A.Reading - B.Reading)^2) AS Numerator,
0.0 AS Denominator,
0.0 AS R_Value,
FALSE AS Pass
INTO temp_Homogeneity_Pass_Calculations_ian
FROM tbl_Homogeneity_Data AS A
INNER JOIN tbl_Homogeneity_Data AS B
ON A.Start_Block_ID = B.Start_Block_ID
AND A.ID = B.ID + 1
WHERE NOT A.Pass
GROUP BY A.Start_Block_ID, A.Number_Of_Readings;
what i need is to keep double precion for
select 0.0 as denominatior into table...
select 0.00000001 works but its a bodge!
thanks
ian
i've noticed that under access 2000/2002 select into queries are giving integer values where previously they were double precision, which is messing up my results in a major way
is there an easy work around or do I have to change to using a create table (specifiying the variable precision) and inserting the data into it!
the problem is in the query below
SELECT A.Start_Block_ID,
A.Number_Of_Readings,
SUM((A.Reading - B.Reading)^2) AS Numerator,
0.0 AS Denominator,
0.0 AS R_Value,
FALSE AS Pass
INTO temp_Homogeneity_Pass_Calculations_ian
FROM tbl_Homogeneity_Data AS A
INNER JOIN tbl_Homogeneity_Data AS B
ON A.Start_Block_ID = B.Start_Block_ID
AND A.ID = B.ID + 1
WHERE NOT A.Pass
GROUP BY A.Start_Block_ID, A.Number_Of_Readings;
what i need is to keep double precion for
select 0.0 as denominatior into table...
select 0.00000001 works but its a bodge!
thanks
ian
Last edited: