G
Guest
I am splitting a database (tables on server, everything else on clients) and
trying to understand how it will work in the following scenario:
The database has 1 main table; it stores feedback organized according to
course. I am allowing a user to filter the table records from a main form
according to several criteria (date submitted, course name, type or topic of
feedback, and a couple others). Once the user implements that first filter,
he or she gets to review the filtered set in a subform.
Then, using a field in the table named "temporarySelect" (chkbox), he or she
can choose a subset of the first filtered set and review just those. (I
create the second filtered set by querying the query that provides the
recordset for the subform and setting the criteria for temporarySelect to
"true".)
My question: if two or more people are using the database simultaneously,
will the result sets be particular to the various users (so that user A will
not be running her second query off her own first query result set and not
that of user B)? Does the fact that the queries are not being run from the
server imply that the result sets they "create" are particular to the clients
running the queries?
Thanks
trying to understand how it will work in the following scenario:
The database has 1 main table; it stores feedback organized according to
course. I am allowing a user to filter the table records from a main form
according to several criteria (date submitted, course name, type or topic of
feedback, and a couple others). Once the user implements that first filter,
he or she gets to review the filtered set in a subform.
Then, using a field in the table named "temporarySelect" (chkbox), he or she
can choose a subset of the first filtered set and review just those. (I
create the second filtered set by querying the query that provides the
recordset for the subform and setting the criteria for temporarySelect to
"true".)
My question: if two or more people are using the database simultaneously,
will the result sets be particular to the various users (so that user A will
not be running her second query off her own first query result set and not
that of user B)? Does the fact that the queries are not being run from the
server imply that the result sets they "create" are particular to the clients
running the queries?
Thanks