Viewing 2 posts - 16 through 17 (of 17 total)
You could use this to get you in the right area. It will get the files from a directory. I did it once before where I basically ordered by date...
February 23, 2012 at 8:08 am
#1450885
Declare @value1 numeric(38,10)
Declare @value2 numeric(1,1)
SET @value1 = 1234567890.123456789
SET @value2 = 0.1
SELECT @value1
SELECT @value2
SELECT @value1 * @value2
= "123456789.012345679"
March 22, 2011 at 6:30 am
#1301830