D
david epsom dot com dot au
In the case of queries, I thought it was just the query definition
Yes, I agree, although even that is not trivial, since
the query is more or less stored as a record in the file.
But it does raise interesting performance questions:
if you put the SQL into a third file (instead of into
the data file or the application file), at what stage
does the overhead of using the third file become greater
/less than the overhead of using the network to get the
SQL from the data file?
However, since he seems to have already decided to
store the saved querydefs in a third file, the question
is only if he should use a shared copy or a local copy.
In this case, the question of how much demand will
be made on the hardware resolves to simpler questions:
Will the demand be less for the local file (yes) than
for a shared copy? Will the chance of file corruption
be less for a local file (yes) than for a shared copy?
(david)
returned, until the query was actually executed.
Yes, I agree, although even that is not trivial, since
the query is more or less stored as a record in the file.
But it does raise interesting performance questions:
if you put the SQL into a third file (instead of into
the data file or the application file), at what stage
does the overhead of using the third file become greater
/less than the overhead of using the network to get the
SQL from the data file?
However, since he seems to have already decided to
store the saved querydefs in a third file, the question
is only if he should use a shared copy or a local copy.
In this case, the question of how much demand will
be made on the hardware resolves to simpler questions:
Will the demand be less for the local file (yes) than
for a shared copy? Will the chance of file corruption
be less for a local file (yes) than for a shared copy?
(david)
Unicorn said:[Snip]
It will be more reliable and usesomewhat less bandwidth as that mdb file don't cross the network. Yes..this
is the way to go.
I didn't think the entire MDB file was dragged across the network. Just the
whole tables required for SQL to manipulate.
In the case of queries, I thought it was just the query definition was
returned, until the query was actually executed.
If I am wrong, please jump all over me, cause I have made some major
blunders in the past, I am more than capable of having this wrong.
(Do you know what happens to a busy local network when 5 users try and check
for a files status every 10th of a second.I had my own DOS internally,
because of a simple algebraic error. )
Matt