Look-up functions in, errrm, tables...

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

At the risk of being sent to a work camp in Siberia, may I ask what's so
awful about look-up functions in tables?

The objection seems to be that they store only the unique ID of any entity,
but display it's name to the user, which makes the user's life easier. Isn't
that a good thing? We don't want to store text or names repeatedly, only the
ID which points to the record which stores the text. That's what look-up
functions do, right?
 
http://www.mvps.org/access/lookupfields.htm

Take a look at the above link, explains the whys and why nots

HTH Mike B
--
An Engineers Prayer:
At the very end of the day,
when all else fails,
you have tried all,
you have shouted at and blamed the innocent,
and asked everyone you know,

READ THE INSTRUCTION MANUAL.
 
While Access tables look like Excel spreadsheets, they are really big
buckets o' data. When a user looks at an Access table (we're talking about
a casual user, unfamiliar with relational database design and use), what
s/he sees is a spreadsheet. What s/he tries to do with it is spreadsheetly.
What s/he gets when it doesn't act like a spreadsheet is frustrated.

Frustrated users are dangerous users. Do you really want someone who
doesn't understand how relational tables work to be mucking about in your
carefully crafted structure?

Access forms provide a safer and much more user-friendly way to display,
add, edit (and perhaps even delete) data. Access forms provide you, the
developer, a rich event environment that you can use to assist and guide the
user, making his/her life (and data-entry) MUCH easier!

And queries? If you have, perchance, used a lookup field in a table, and
wish to create a query, you (and/or your users) will HAVE to know the
underlying (but invisible) key value stored, because you WON'T be looking up
by the displayed-in-table value... it isn't there!

Can you use lookup fields in tables? Certainly. Are you willing to keep
all the above (and a few more wrinkles) in mind when you use the data? Can
you be certain your users will comprehend (and remember) all the above?

My wife is fond of reminding me that she really doesn't care to know where
the electrons go in our toaster, she "just wants toast". Know any users
like that?<g>

Good luck!

--
Regards

Jeff Boyce
Microsoft Office/Access MVP


Microsoft IT Academy Program Mentor
http://microsoftitacademy.com/

Microsoft Registered Partner
https://partner.microsoft.com/
 
First, they are not really that bad, but when you run into trouble with
them, you will find that you begin to dislike then very much!

So, I going state that as long as they work for you, the more power
to you!

Now, lets clearly define what those developers are talking about!

Use of the lookup wizard feature at the TABLE DESIGN level

I repeat: lookup feature at the TABLE desing level is the the thing to
advoid.

In other words, you are encouraged to use the combo box wizard in a form.
You are even ok to use the lookup wizard when you build a query (often, many
people don't realize that the lookup wizard also works when you build a
query!). However, since you are in the query builder, it is probably much
nicer to draw a join line, and use the relation ability of the query builder
to pull in that lookup value you need to lookup via a join. (ie: it is much
clear and better to simply drop in the additional tables into the query
builder
instead of using lookups).
(more on this in second)..

So, as a general concept of database designs, you encouraged to pull data
from tables all the time. This idea of pulling values from other tables is
the very essence of a relational database. So, yes, use good designs that
encourage values to be looked up from other tables (but, avoid that lookup
feature at the table level). You build and design tables in a database. You
then join these tables together. However, each table should have it fields,
and when you need to lookup values in other tables, you use sql to do this.

So, lots of relations, and looking up values is encouraged in your designs.

However, at the table level, there is few problems as to why the lookup
wizard feature is bad:

The often quoted reason is that then the novice user will NOT know what is
going on! Golly, that is not the best argument here! After all, we can drive
our car to work, and we don't know what the motor does, or even what it
looks like! That don't mean we should not drive!

I mean, the look up feature is there to help users, and make things easy.

However, here is some REAL pit falls:

First, in any good application design, you will RARELY be editing the data
in the tables directly. So, most of the time, we are talking bout a
continues form, or a standard data entry form. This means the benefits of
the lookup are very much reduced. (in those forms, you can quickly build the
combo box with the combo box wizard, and this is most certainly encouraged).

Anyway, just try and build a simple report based on that table with a lookup
field. The first problem that arises is that the text box on the report will
appear by default as a combo box. That don't look very good. Worse, is now
try and use the sorting and grouping options in the report. You get the
weird situation where in the sorting and grouping option, your report will
sort by the ID value, but display by the look up value! This is sheer
confusing, and it don't make sense.

You will say, golly, why does this thing not sort by the value it displays?
Worse, is how do you in fact sort by the actual looked up value? I mean if
we have a simple list of fruits in a look up table, we probably will want to
sort by the looked value! The problem is that you can NOT sort by the look
up value! The end result is you dump the table lookup feature, and then have
to build a query and join in the actual text value of the fruit from that
table into the reports query anyway!. You then can sort on that! (wow...that
built in lookup feature did not save one bit of work here...did it!).

So, your report will sort by the id value, and displays the by lookup value
unless you dump the use of the lookup. Yuk!

What if you load the data into a reocrdset, then again, what do you get for
the lookup value field? (you get the id value, and again, if you need to get
the value from the other table, you wind up creating a query again! (or
write some code to grab the text value in the lookup table). So, once again,
in code with reocrdsets, the table lookup feature does nothing, and again
tends to surprise the developer as to what value will be returned!. Once
again, you don't save any coding by using this table lookup do you? (it is
ignored in reocrdsets). If you had used a query in the first place, then
in your code, both the ID, and the description would be available
WITHOUT any extra coding!

Further, lets say later on we decide add another field to our fruits table.
Lets say we need to add the colour of the fruit. You have to realize that
over time, database do change a lot! You must *design* for change!

So, now we just add an additional field to the fruits table called colour.

Now, go back to those reports and drop in the colour field beside the fruit
text! OOPS, can't do that!! Of course, the fruit name is a lookup Value.
However, to display the fruit name AND THE colour, then all of those
queries, reports etc. will now need to be modified to display the colour of
the fruit. And of course, to bring in this additional field of colour, we
CAN NOT use the table lookup feature.

Of course, what is really is the problem here is that will have to build
queries to do this! Something we should have done in the first place!!!!
Now, you got a report with both lookups and a join to this other table.
Well, golly, you might as well dump the lookup, since you have to bring in
the (two) fields from the fruits table via sql joins anyway! If you had
built
queries in the first place, then you would just simply plop in this extra
field into the report, and you are done. With the table lookup approach, you
are now stopping in the 12 places in the database, and now building the
queries, or even changing the report source from a table to query. This work
really starts to add up, and bogs you down because of poor design choice in
the first place. We should be able to add this additional field, and not all
of sudden stop dead in our tracks to build queries everywhere.

Worse, it gets messy, as all of a sudden you have to decide if you want dump
the table lookup, as it does not make sense to have both a look up field,
and then some additional fields from that same lookup table brought in via a
sql query join! Yuk!. Worse, after you get knee deep into the project, you
CAN NOT safety remove the lookup field, as then you might introduce bugs and
will have to hunt down every single spot (form, report etc) in the database
that relied on the table lookup feature (that you are now trying to
remove!).
!
So, there is some frustrations in using the lookup. However, if you have not
run into the above problems, then it is most un-fair of me say don't use
them. There is tons of users out there that use and enjoy, and even find
increased productivity from using the table lookup feature. I have to say
that your mileage will vary on this one.

However, due to problems like the above, I do advoid them. Futher, advoiding
them makes you learn the correct skills for other sql database systems you
will use.

They are not that bad..but, some problems will come up when you use them...
 
Thanks for your help.

I still don't fully understand the complexities introduced by look-up fields
at the table level, but I've printed out MikeJohnB's link, and the replies
from Jeff and Albert, and after a few read-throughs I'll probably get it.

In the meantime, I think it's best that data-entry only takes place via forms.

VT
 
You are confusing two things here. What you should avoid is the use of the
look up field wizard, and to a lesser extent the use of the DisplayControl
property to show a value from a column in another rather than the actual
foreign key value in the column. Users should never be given access to
tables in raw datasheet view, so there is no advantage in either.

Your point about using an ID value as a foreign key is a different matter.
It is a question of whether to use a 'surrogate' key or a 'natural' key. Joe
Celko collated the discussions from the old CompuServe CASE forum on this and
they are posted at:


http://community.netscape.com/n/pfx/forum.aspx?msg=19495.1&nav=messages&webtag=ws-msdevapps


With a Cities table for instance you should use a unique CityID numeric key
as city names can be duplicated, but with a States table there is no reason
why the key should not be the state name, usually the abbreviation, as these
are unique, in the USA at least. A foreign key in the Cities table
referencing the key of States can thus be a text State column. An advantage
of this is that there is no need to join the Sates table to Cities in a query
to return the State. When using natural keys it is essential that cascade
updates be enforced, however.

Ken Sheridan
Stafford, England
 
Back
Top