Viewing 2 posts - 1 through 2 (of 2 total)
I suggest you use an Access Project, then all the calls will not be through ODBC or Jet.
I agree it's not the best solution for a production system but it...
April 23, 2008 at 1:35 am
#805896
How about
SELECT TOP 1 A AS FirstMissingNumber
FROM (SELECT ROW_NUMBER() OVER (ORDER BY CoordinatorID) AS...
February 6, 2008 at 2:24 am
#775477