Viewing 9 posts - 16 through 24 (of 24 total)
Shortened Question:
The data type for Reorder Level is smallint and the column allows nulls. You need to produce a report that lists all products, their currently available quantities...
February 16, 2006 at 4:01 pm
I agree with Carl as it seems there would be identical rows in the resultset which doesn't make any sense to me.
December 18, 2005 at 1:47 am
No sequence table is used.
August 26, 2005 at 7:52 am
Will performing the select inside the transaction prevent the id from increasing while the batch writes occur? Will it lock and block itself?
Begin Transaction
SELECT @MaxShipToCode = MAX(SomeID)
FROM MyTable
Insert Into MyTable
Insert Into...
August 25, 2005 at 12:43 pm
I forgot to say that the access code is being converted to T-SQL so that it can run as a SQL job during off hours.
August 24, 2005 at 2:00 pm
Currently there is user created code in an access db that gets the
Max(someid) and in VBA Code loops thru and adds one to the corresponding column in Access table,...
August 24, 2005 at 1:42 pm
Remi yes I know everything you said is true. As I said this database had poor design by the vendor that created it, I can't change it. This is not for...
August 24, 2005 at 1:31 pm
Viewing 9 posts - 16 through 24 (of 24 total)