On 11 Dec 2006 13:15:32 -0800, "jgscott3@bellsouth.net"
<jgscott3@bellsouth.netwrote:
I don't get: "I do not want the user to have to respond to them every
time they run the queries". Are you saying: after they fill out the
parameters for the first time, next time the query should
automatically use the same parameters? Why would the user want the
same parameter values every time?
I'm assuming you're talking about parameter queries like:
select * from Customers where CustomerID = [Give Customer ID:]
Perhaps you have queries like:
Select * from WorkQueue where Department = [Give Department:]
and an individual user would always enter the same Department, but
another user would always enter a different value.
If you explain more, we'll be better able to help.
-Tom.
Quote:
>I have a number of queries that require various parameters. However,
>the parameters will change infrequently, so I do not want the user to
>have to respond to them every time they run the queries. I am
>tentatively setting up little tables to hold the parameters so they are
>easily accessible to database administrators such as myself but will
>not require user input every time the queries are run. My question is
>whether this is the best way to accomplish my objectives?
>
>Also, if this is a reasonable approach, I see no need to join the
>"parameter tables" within the queries, as I can simply include them in
>design view and incorporate the various parameters as constants.
>
>Any thoughts on this approach or how to improve it would be
>appreciated.
>
>Thank you.
|