Home > Archive > Microsoft SQL Server forum > October 2005 > Unique Selections In Back End









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author Unique Selections In Back End
Neil

2005-10-27, 9:24 am

I am using SQL 7 with an MS Access 2000 MDB front end, using bound forms
with ODBC linked tables. In one form, the user needs to be able to check a
box to select one or more records. This is accomplished with a local table
containing two fields: the primary key value of the SQL table and a boolean
field used for the check box.

Since the local table used to contain the boolean field is local to the MDB
file, the result is a heterogeneous join in the underlying form query, which
degrades performance. I would like to have the entire query be based on back
end SQL data. However, each user needs to be able to make a unique set of
selections, without other users' selections affecting theirs.

An idea I have is to port the selections table to the back end with an
additional field for machine name; create a view of the main table joined to
the selections table; link the view to the front end; and base the form on
the SQL: "Select * From MyView Where MachineName='MyMachi
ne'".

However, I wonder if there's a better approach. Any ideas would be
appreciated.

Thanks,

Neil


SriSamp

2005-10-27, 9:24 am

Relying on machine names may be difficult, since if the machine name
changes, your code will not work (not that it is very frequent, but it
happens). One technique that I've seen people use is to have a local MDB
table itself for making the selections. You can then form a comma-separated
list of IDs that is then sent to a backend procedure. In this procedure, you
can conver the comma-separated values into a temp table (using the
techniques in: http://www.algonet.se/~sommar/arrays-in-sql.html) and then do
the join with the actual table to show the results back.
--
HTH,
SriSamp
Email: srisamp@gmail.com
Blog: http://blogs.sqlxml.org/srinivassampath
URL: http://www32.brinkster.com/srisamp

"Neil" <nospam@nospam.net> wrote in message
news:1LJ3f.1105$hY6.775@newsread1.news.pas.earthlink.net...
>I am using SQL 7 with an MS Access 2000 MDB front end, using bound forms
>with ODBC linked tables. In one form, the user needs to be able to check a
>box to select one or more records. This is accomplished with a local table
>containing two fields: the primary key value of the SQL table and a boolean
>field used for the check box.
>
> Since the local table used to contain the boolean field is local to the
> MDB file, the result is a heterogeneous join in the underlying form query,
> which degrades performance. I would like to have the entire query be based
> on back end SQL data. However, each user needs to be able to make a unique
> set of selections, without other users' selections affecting theirs.
>
> An idea I have is to port the selections table to the back end with an
> additional field for machine name; create a view of the main table joined
> to the selections table; link the view to the front end; and base the form
> on the SQL: "Select * From MyView Where MachineName='MyMachi
ne'".
>
> However, I wonder if there's a better approach. Any ideas would be
> appreciated.
>
> Thanks,
>
> Neil
>



Neil

2005-10-27, 9:24 am

The machine name changing isn't an issue, since these selections are
temporary -- maybe a few hours or overnight at the most. They're not
permanent entities.

Also, if I use a temporary table, I'm not sure how I would bring that into
the front end except through a pass-through query. In that case, it would be
read-only.

Thus, I think it's best that I work with a view that joins the two table or
some other method that allows me to link it via ODBC. I'm a little leary
about the approach I outlined in my message since it means that the view
will have X records x Y machines, which would make it very large. Granted,
it would only return the records for the current machine. Still, it seems
that there would be a large number of records initially dealt with.

Thanks,

Neil


"SriSamp" <ssampath@sct.co.in> wrote in message
news:eu6QXyJ0FHA.1040@TK2MSFTNGP14.phx.gbl...
> Relying on machine names may be difficult, since if the machine name
> changes, your code will not work (not that it is very frequent, but it
> happens). One technique that I've seen people use is to have a local MDB
> table itself for making the selections. You can then form a
> comma-separated list of IDs that is then sent to a backend procedure. In
> this procedure, you can conver the comma-separated values into a temp
> table (using the techniques in:
> http://www.algonet.se/~sommar/arrays-in-sql.html) and then do the join
> with the actual table to show the results back.
> --
> HTH,
> SriSamp
> Email: srisamp@gmail.com
> Blog: http://blogs.sqlxml.org/srinivassampath
> URL: http://www32.brinkster.com/srisamp
>
> "Neil" <nospam@nospam.net> wrote in message
> news:1LJ3f.1105$hY6.775@newsread1.news.pas.earthlink.net...
>
>



Ol!v!é

2005-10-27, 9:24 am

You can create a temporary table in Access only by using Docmd.Runsql
"CREATE TABLE #...", and then using the table as a recordsource for a
form (just be sure to assign the recordsource after the creation of the
table). If you create a primary key in the table, you will be able to
edit it in your forms.
The temporary table will be dropped using a Docmd.Runsql "DROP TABLE
#.."-statement or when the connection from the front-end is closed.

In the procedure, you can then use the temporary table in the queries.

Neil wrote:
> The machine name changing isn't an issue, since these selections are
> temporary -- maybe a few hours or overnight at the most. They're not
> permanent entities.
>
> Also, if I use a temporary table, I'm not sure how I would bring that into
> the front end except through a pass-through query. In that case, it would be
> read-only.
>
> Thus, I think it's best that I work with a view that joins the two table or
> some other method that allows me to link it via ODBC. I'm a little leary
> about the approach I outlined in my message since it means that the view
> will have X records x Y machines, which would make it very large. Granted,
> it would only return the records for the current machine. Still, it seems
> that there would be a large number of records initially dealt with.
>
> Thanks,
>
> Neil
>
>
> "SriSamp" <ssampath@sct.co.in> wrote in message
> news:eu6QXyJ0FHA.1040@TK2MSFTNGP14.phx.gbl...
>
>
>

Steve Jorgensen

2005-10-27, 9:24 am

The strategy I've arrived at is to have a table of working sets, and have the
table of selections include the working set key. When the user starts the
task, the program first makes a new working set record, and thus gets a new
unique ID for the set of selection records.

With this design, you can keep treating working sets as dynamic by deleting
them after use (and have a garbage collection process to empty out old ones
that failed to get deleted) or allow the user to name them, keep them around,
and refer to them again later.

On Fri, 14 Oct 2005 08:11:41 GMT, "Neil" <nospam@nospam.net> wrote:

>I am using SQL 7 with an MS Access 2000 MDB front end, using bound forms
>with ODBC linked tables. In one form, the user needs to be able to check a
>box to select one or more records. This is accomplished with a local table
>containing two fields: the primary key value of the SQL table and a boolean
>field used for the check box.
>
>Since the local table used to contain the boolean field is local to the MDB
>file, the result is a heterogeneous join in the underlying form query, which
>degrades performance. I would like to have the entire query be based on back
>end SQL data. However, each user needs to be able to make a unique set of
>selections, without other users' selections affecting theirs.
>
>An idea I have is to port the selections table to the back end with an
>additional field for machine name; create a view of the main table joined to
>the selections table; link the view to the front end; and base the form on
>the SQL: "Select * From MyView Where MachineName='MyMachi
ne'".
>
>However, I wonder if there's a better approach. Any ideas would be
>appreciated.
>
>Thanks,
>
>Neil
>


Steve Jorgensen

2005-10-27, 9:24 am

I never had much luck with that. Access uses more than one connection to do
its work, and doesn't hold connections open indefinitely, so it's not clear
whether, after creating a temp table, Access will be able to find it later.
You also can't bind a for to a query involving a temp table and have it be
editable because you have to use a pass-though query.

On Fri, 14 Oct 2005 14:35:25 +0200, "Ol!v!é"
<stevenlangenaken-at-@gmail-dot-.com> wrote:
[color=darkred]
>You can create a temporary table in Access only by using Docmd.Runsql
>"CREATE TABLE #...", and then using the table as a recordsource for a
>form (just be sure to assign the recordsource after the creation of the
>table). If you create a primary key in the table, you will be able to
>edit it in your forms.
>The temporary table will be dropped using a Docmd.Runsql "DROP TABLE
>#.."-statement or when the connection from the front-end is closed.
>
>In the procedure, you can then use the temporary table in the queries.
>
>Neil wrote:

Steve Jorgensen

2005-10-27, 9:24 am

On Fri, 14 Oct 2005 08:11:41 GMT, "Neil" <nospam@nospam.net> wrote:

>I am using SQL 7 with an MS Access 2000 MDB front end, using bound forms
>with ODBC linked tables. In one form, the user needs to be able to check a
>box to select one or more records. This is accomplished with a local table
>containing two fields: the primary key value of the SQL table and a boolean
>field used for the check box.


By the way - if you can ditch Access 2000 for 2002 or 2003 - do it now.
Access 2000 has far more bugs and quirks with ODBC usage that can waste your
time and get you into trouble.
Neil

2005-10-27, 9:24 am

The problem is that I won't be able to edit the data if I access it through
a pass-through query. The table needs to be linked to the MDB in order for
it to be edited.

What would be best would be if it were possible to have a view that is
linked to the front end, but which can be customized to return the records
only for the particular user.

Thanks,

Neil


""Ol!v!é"" <stevenlangenaken-at-@gmail-dot-.com> wrote in message
news:1129293323.871920@seven.kulnet.kuleuven.ac.be...[color=darkred]
> You can create a temporary table in Access only by using Docmd.Runsql
> "CREATE TABLE #...", and then using the table as a recordsource for a form
> (just be sure to assign the recordsource after the creation of the table).
> If you create a primary key in the table, you will be able to edit it in
> your forms.
> The temporary table will be dropped using a Docmd.Runsql "DROP TABLE
> #.."-statement or when the connection from the front-end is closed.
>
> In the procedure, you can then use the temporary table in the queries.
>
> Neil wrote:

Neil

2005-10-27, 9:24 am

Right. So it seems that my original idea of just having a view that returns
all records and then use the machine name as a criterion in the recordsource
query is the only way to go. Unless you have another idea? See any problems
with that approach?

Thanks,

Neil

"Steve Jorgensen" <nospam@nospam.nospam> wrote in message
news:6ngvk1tcaigdsb4
g2d0j1d7s285v7st96h@
4ax.com...
>I never had much luck with that. Access uses more than one connection to
>do
> its work, and doesn't hold connections open indefinitely, so it's not
> clear
> whether, after creating a temp table, Access will be able to find it
> later.
> You also can't bind a for to a query involving a temp table and have it be
> editable because you have to use a pass-though query.
>
> On Fri, 14 Oct 2005 14:35:25 +0200, "Ol!v!é"
> <stevenlangenaken-at-@gmail-dot-.com> wrote:
>
>



Neil

2005-10-27, 9:24 am

Never mind my other message in reply to this. Didn't see that you had posted
other messages.

"Steve Jorgensen" <nospam@nospam.nospam> wrote in message
news:6ngvk1tcaigdsb4
g2d0j1d7s285v7st96h@
4ax.com...
>I never had much luck with that. Access uses more than one connection to
>do
> its work, and doesn't hold connections open indefinitely, so it's not
> clear
> whether, after creating a temp table, Access will be able to find it
> later.
> You also can't bind a for to a query involving a temp table and have it be
> editable because you have to use a pass-though query.
>
> On Fri, 14 Oct 2005 14:35:25 +0200, "Ol!v!é"
> <stevenlangenaken-at-@gmail-dot-.com> wrote:
>
>



Neil

2005-10-27, 9:24 am

That's interesting, since I've heard so much about 2002 and 2003 not being
that much different than 2000 and not worth the upgrade. Thanks for the
note.

"Steve Jorgensen" <nospam@nospam.nospam> wrote in message
news:hsgvk1h6r98j4gq
q8n3ardte70dqfli7lb@
4ax.com...
> On Fri, 14 Oct 2005 08:11:41 GMT, "Neil" <nospam@nospam.net> wrote:
>
>
> By the way - if you can ditch Access 2000 for 2002 or 2003 - do it now.
> Access 2000 has far more bugs and quirks with ODBC usage that can waste
> your
> time and get you into trouble.



Neil

2005-10-27, 9:24 am

That sounds fine, and is similar to what I mentioned (working set key would
be machine name). When you used these, were they linked to an MDB or were
they just back end processes? I need to be able to use this in a bound form
approach, where the selection check box on the form is bound to the
selection table. Thus, the recordsource for the form needs to just return
the records pertaining to a particular working set key. How did you
accomplish that?

Thanks,

Neil


"Steve Jorgensen" <nospam@nospam.nospam> wrote in message
news:acgvk19jgev07ll
cb80rlggdqcu7emqj1i@
4ax.com...
> The strategy I've arrived at is to have a table of working sets, and have
> the
> table of selections include the working set key. When the user starts the
> task, the program first makes a new working set record, and thus gets a
> new
> unique ID for the set of selection records.
>
> With this design, you can keep treating working sets as dynamic by
> deleting
> them after use (and have a garbage collection process to empty out old
> ones
> that failed to get deleted) or allow the user to name them, keep them
> around,
> and refer to them again later.
>
> On Fri, 14 Oct 2005 08:11:41 GMT, "Neil" <nospam@nospam.net> wrote:
>
>



Erland Sommarskog

2005-10-27, 9:24 am

SriSamp (ssampath@sct.co.in) writes:
> (using the
> techniques in: http://www.algonet.se/~sommar/arrays-in-sql.html)


That link is dead. My stuff is now on www.sommarskog.se, so the link is
http://www.sommarskog.se/arrays-in-sql.html.



--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se

Books Online for SQL Server SP3 at
http://www.microsoft.com/sql/techin.../2000/books.asp

Gary Walter

2005-10-27, 9:24 am

Thank you very much for this Erland....

a truly well-thought-out tutorial!!!

gary

>
> That link is dead. My stuff is now on www.sommarskog.se, so the link is
> http://www.sommarskog.se/arrays-in-sql.html.
>
>
>
> --
> Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se
>
> Books Online for SQL Server SP3 at
> http://www.microsoft.com/sql/techin.../2000/books.asp
>



Albert D.Kallal

2005-10-27, 9:24 am

Check out my example of multi-select here:

http://www.members.shaw.ca/AlbertKa...s/msaccess.html

In the above, I don't use a column, nor do I use a temp field. So,
presumably, you could pass this "result" to a proc on sql server.....


--
Albert D. Kallal (Access MVP)
Edmonton, Alberta Canada
pleaseNOOSpamKallal@
msn.com
http://www.members.shaw.ca/AlbertKallal


Neil

2005-10-27, 9:24 am

Hi, Steve. Elsewhere in this thread I said to "ignore my other post," so I'm
thinking that my post here got ignored, when I actually meant the other one.
Thus, I'm reposting it below, in case that happened. Thanks!

Neil

Original post:

That sounds fine, and is similar to what I mentioned (working set key would
be machine name). When you used these, were they linked to an MDB or were
they just back end processes? I need to be able to use this in a bound form
approach, where the selection check box on the form is bound to the
selection table. Thus, the recordsource for the form needs to just return
the records pertaining to a particular working set key. How did you
accomplish that?

Thanks,

Neil

"Steve Jorgensen" <nospam@nospam.nospam> wrote in message
news:acgvk19jgev07ll
cb80rlggdqcu7emqj1i@
4ax.com...
> The strategy I've arrived at is to have a table of working sets, and have
> the
> table of selections include the working set key. When the user starts the
> task, the program first makes a new working set record, and thus gets a
> new
> unique ID for the set of selection records.
>
> With this design, you can keep treating working sets as dynamic by
> deleting
> them after use (and have a garbage collection process to empty out old
> ones
> that failed to get deleted) or allow the user to name them, keep them
> around,
> and refer to them again later.
>
> On Fri, 14 Oct 2005 08:11:41 GMT, "Neil" <nospam@nospam.net> wrote:
>
>



Larry Linson

2005-10-27, 9:25 am

"Neil" <nospam@nospam.net> wrote

> The machine name changing isn't an issue,
> since these selections are temporary -- maybe
> a few hours or overnight at the most. They're not
> permanent entities.


How about constructing the T-SQL update Query in code and using it as a
Passthrough Query, or creating a Stored Procedure to which you pass
parameters, or, indeed, just creating a Jet query based on information from
the local table, but that does not Join to the local table -- one of these
approaches might avoid the delays, which are, as you pointed out, due to
using a heterogeneous join.


Neil

2005-10-27, 9:25 am

Hi, Larry! The problem is that the customer really likes the way it's set
up. They have a bound check box control in the form, which they use in form
view or datasheet view, and it's an integral part of how they work with
records. To get them to give up the check box would be hard. Thus, somehow
the field needs to appear in the form with its current selection status.

A new wrinkle, though: I just found out that the selections do not need to
persist between instances of the form. (Previously I thought that that's how
they were using them; but I found out that they actually do all their
selecting and working with selections in a single session.) So that opens up
other possibilities.

Neil


"Larry Linson" <bouncer@localhost.not> wrote in message
news:ePE08HE1FHA.1252@TK2MSFTNGP09.phx.gbl...
> "Neil" <nospam@nospam.net> wrote
>
>
> How about constructing the T-SQL update Query in code and using it as a
> Passthrough Query, or creating a Stored Procedure to which you pass
> parameters, or, indeed, just creating a Jet query based on information
> from the local table, but that does not Join to the local table -- one of
> these approaches might avoid the delays, which are, as you pointed out,
> due to using a heterogeneous join.
>



Steve Jorgensen

2005-10-27, 9:25 am

On Mon, 17 Oct 2005 00:02:35 GMT, "Neil" <nospam@nospam.net> wrote:

>Hi, Steve. Elsewhere in this thread I said to "ignore my other post," so I'm
>thinking that my post here got ignored, when I actually meant the other one.
>Thus, I'm reposting it below, in case that happened. Thanks!
>
>Neil
>
>Original post:
>
>That sounds fine, and is similar to what I mentioned (working set key would
>be machine name). When you used these, were they linked to an MDB or were
>they just back end processes? I need to be able to use this in a bound form
>approach, where the selection check box on the form is bound to the
>selection table. Thus, the recordsource for the form needs to just return
>the records pertaining to a particular working set key. How did you
>accomplish that?


I didn't use check boxes. I used a continuous form with combo boxes for
selecting records to include. To add one to the list, add a record to the
batch detail, and select the target record (filling in its key). To remove
one from the list, delete its batch detail record.
Sponsored Links





Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive | Programming forum archive

Copyright 2008 droptable.com