Opening a dynaset to count the records is incredibly wasteful of system
resources, as well as inconsiderate to other users who will find all the
records locked... If you have to use this method, at least use a Forward
Only Snapshot.
Then again, you just might not think it is sensible to cart an entire 350MB
table across the network when all you want to end up with is a single
integer (4 bytes). The COUNT(*) function, or its DCount() function
shortcut, allows the work to take place on the server and reduces
drastically the network traffic and resources in the workstation.