473,396 Members | 1,927 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Just Venting and a Question

I'm curious as to why some questions posted here get results and solutions,
while others are answered in a seemingly foreign language and I can't begin to
comprehend or understand the answers that are given. Is there a place to learn
this foreign language to be able to better communicate questions, as to derive
the solution that the poster is attempting to receive? If so, where please?

I have a program that I'm trying to track animal genetic upline, example:

AnimalID is the Animal Name, there in the same table is Sire (father) and Dam
(mother).My problem is I can get the Sire and Dam for the initial animal, but I
can't get the additional Dam's and Sire's for the initial father and mother. Is
it a query that I'm looking to use or code to successfully accomplish this
goal?

Thank you,

Michael
Nov 12 '05 #1
13 1377
I think that the answer to your particular question is closely related
to the first (venting) part.

There is no way one can suggest a working solution to a question like
you asked without knowing how your database is set up. We need to be
able to read table names you use and field names you have, and know whet
primary keys are, and what related tables there are. This enables us to
follow the logic of the database and figure out how to get the
additional Dam's and Sire's for the initial father and mother.
Please remember - we have no information about your database and,
therefore, can not provide advice until we see this information.

Best regards,
Pavel

Lumpierbritches wrote:

I'm curious as to why some questions posted here get results and solutions,
while others are answered in a seemingly foreign language and I can't begin to
comprehend or understand the answers that are given. Is there a place to learn
this foreign language to be able to better communicate questions, as to derive
the solution that the poster is attempting to receive? If so, where please?

I have a program that I'm trying to track animal genetic upline, example:

AnimalID is the Animal Name, there in the same table is Sire (father) and Dam
(mother).My problem is I can get the Sire and Dam for the initial animal, but I
can't get the additional Dam's and Sire's for the initial father and mother. Is
it a query that I'm looking to use or code to successfully accomplish this
goal?

Thank you,

Michael

Nov 12 '05 #2
Lumpierbritches wrote:
I'm curious as to why some questions posted here get results and solutions,
while others are answered in a seemingly foreign language and I can't begin to
comprehend or understand the answers that are given. Is there a place to learn
this foreign language to be able to better communicate questions, as to derive
the solution that the poster is attempting to receive? If so, where please?

I have a program that I'm trying to track animal genetic upline, example:

AnimalID is the Animal Name, there in the same table is Sire (father) and Dam
(mother).My problem is I can get the Sire and Dam for the initial animal, but I
can't get the additional Dam's and Sire's for the initial father and mother. Is
it a query that I'm looking to use or code to successfully accomplish this
goal?

Thank you,

Michael


I may have replied in the past to you and mentioned you should go to
google and look around there. Goto http://groups.google.com and select
AdvancedSearch. In the Words To Search enter
Geneology
and for the groups to search enter
*access*

Anyway, here is just ONE response from the google search. There are 84
threads on just the word Geneology to review. Then start looking for
Dam and Sire and it should have even more results.

Google article:
The human relationships that you want to trace will define
the data structure you need.

For a simple example, see:
Self Joins: tables that look themselves up (Pedigrees example)
at:
http://odyssey.apana.org.au/~abrowne/ser-06.html

That article handles biological parents only, not step parents.
For those, you would need a lookup table that defines the
relationship types, and a link table between 2 copies of your
Person database that links the 2 people by a defined relationship
type.

For more complex tree tracing, see Joe Celko's article:
A Look at SQL Trees at:
http://www.dbmsmag.com/9603d06.html


Nov 12 '05 #3
The .au link I couldn't get to come up to see the relationship for Geneology.

Michael
Nov 12 '05 #4
Pavel, Thank you;

Table Name: tblAnimals
fields: AnimalID - Primary Key 100 characters, usually name of animal and
registration.

Sire - name of father of this animal
Dam - name of mother of this animal

Sire1a - name of father of Sire 1
Dam1a - name of the mother of the Sire 1

Sire1b - name of Sire for Dam 1
Dam1b - name of Dam for Dam 1

Sire 2a - name of Sire of Sire 1a
Dam2a - name of Dam of Sire 1a

Sire2b - name of Sire of Sire 1b
Dam2b - name of Dam of Sire 1b

etc etc, all the way through five generations. All form fields are named, but
unbound.
Nov 12 '05 #5
If you've been learning Access by "just picking it up", then raw SQL,
VBA code, and database theory (normalization, keys, relations) can
absolutely seem like a foreign language.

The Google Groups archives are chock full of recommendations for
tutorial and reference books for people with all sorts of backgrounds.

I *guarantee* you that a decent book will more than pay for itself.

Also: learn to use the Google Groups archives if you haven't already.
They're a treasure trove of information.

Access is so user-friendly that just about anyone who's not afraid to
turn on a computer can learn to use it. Learning to use it *well*,
however, takes an investment of time. Invest that time to study it
more formally, and, IMHO, you'll be thankful that you did.

Good luck!

-Matt

On 14 Apr 2004 21:42:56 GMT, lu*************@aol.com (Lumpierbritches)
wrote:
I'm curious as to why some questions posted here get results and solutions,
while others are answered in a seemingly foreign language and I can't begin to
comprehend or understand the answers that are given. Is there a place to learn
this foreign language to be able to better communicate questions, as to derive
the solution that the poster is attempting to receive?


Nov 12 '05 #6
Lumpierbritches wrote:
The .au link I couldn't get to come up to see the relationship for Geneology.

Michael


Did you just stop at the two links I listed or did you go to google as I
recommended?

Nov 12 '05 #7
With this information it is much easier to suggest a solution.
The database is not normalized properly. This means that information is
not stored in a way that makes it easy to find and retrieve the
information. It may let you enter parents names incorrectly, and it will
not let you store additional information for parents at all.
This design also limits your ability to go back in the tree any deeper
than the number of fields for parents you have put in the table (you
shose 5 levels, but it doesn't have to be).
The solution is simple. Change the table to contain only these columns:

tblAnimals
----------
AnimalID (Autonumber)
AnimalName (Text)
SireID (FK, Number)
DamID (FK, Number)
isFemale (Yes/No)
Picture (Hyperlink)
Other ...

Sire and Dam are AnimalIDs of the parents stored in the same table. In a
table like this you can build a tree as deep as you want.
You can base the form on a query, which you build in query designer. You
will need to link tblAnimals to itself twice - tblAnimals_1 you link
SirID to AnimalID, tblAnimals_2 you link DamID to AnimalID. You can now
set up your form so that Sir and Dam are chosen from drop lists, as
opposed to typing them in, and you can set up a standard form where you
enter animal information. This will let you reduce data entry in cases
when you have the same parents for different animals.

Hope this helps,
Pavel
Lumpierbritches wrote:

Pavel, Thank you;

Table Name: tblAnimals
fields: AnimalID - Primary Key 100 characters, usually name of animal and
registration.

Sire - name of father of this animal
Dam - name of mother of this animal

Sire1a - name of father of Sire 1
Dam1a - name of the mother of the Sire 1

Sire1b - name of Sire for Dam 1
Dam1b - name of Dam for Dam 1

Sire 2a - name of Sire of Sire 1a
Dam2a - name of Dam of Sire 1a

Sire2b - name of Sire of Sire 1b
Dam2b - name of Dam of Sire 1b

etc etc, all the way through five generations. All form fields are named, but
unbound.

Nov 12 '05 #8
Lumpierbritches wrote:
The .au link I couldn't get to come up to see the relationship for
Geneology.


http://members.iinet.net.au/~allenbrowne/ser-06.html

--
Joan Wild
Microsoft Access MVP
Nov 12 '05 #9
>> For more complex tree tracing, see Joe Celko's article: .. <<

Actually, I would rather that you buy my new book on Amazon.com on
trees & Hierarchies in SQL, so I can get royalities :)
Nov 12 '05 #10
lu*************@aol.com (Lumpierbritches) wrote in message news:<20***************************@mb-m02.aol.com>...
I'm curious as to why some questions posted here get results and solutions,
while others are answered in a seemingly foreign language and I can't begin to
comprehend or understand the answers that are given. Is there a place to learn
this foreign language to be able to better communicate questions, as to derive
the solution that the poster is attempting to receive? If so, where please?
...
Michael


Here are some other possibilities you may or may not have considered:

Company A asks me to quote a job. Afterwards, they decide to hire
someone else to do it. I soon notice a posting to
comp.databases.ms-access from Programmer B asking how to do what
Company A wanted. I also happen to know that the first name of
Programmer B matches the first name of a programmer that Company A
knows about. I'm not likely to answer that post even though I know
the answer having just thought about the problem enough to quote it.
I take solace in the fact that even at half my rate Company A is going
to end up shelling out higher bucks and not getting as good of a
product.

I see a posting from a noobie but I can't tell if they're just trying
to learn how to program Access or if they're doing a homework
assignment for their beginning Access class. I tend to err on the
side of helping them. In this case I'll leave a little bit more for
them to do in case I'm wrong.

Some postings are just incomprehensible even to Access developers. If
I have to do too much guessing about their problem it's not worth the
hassle. If they attempted to explain clearly what they are trying to
do I am much more likely to attempt a solution.

I like answering "TV problems" (i.e., ones that can be solved in 30
minutes ;-)). If the problem is going to require a massive amount of
time to solve then maybe they should consider hiring a professional.

It's obvious from the poster's question that they have no chance of
finishing what they are starting. I'll probably answer the question
but I'm left shaking my head. I saw an Access app today that was a
complete mess. Besides things like Command1_Click(), the code
wouldn't even compile and they were running the database anyway!

Sometimes I see a post and think, "Jones, who also reads this NG, is
much better than I am with that subject and will probably answer it."

If it looks like they are not really trying to solve a problem they
personally encountered I start questioning their motive for the post.
If the problem looks interesting enough I might give it a try anyway.

Sometimes I realize that answering a post will cause me to opine about
particular software companies or their software. Flame wars are
usually a huge waste of time. I try not to say things that will bring
out extollers or bashers.

When I was first learning Access I received a considerable amount of
help from this newsgroup so I try to answer questions from time to
time when I am able as a way of saying "thanks" and to keep sharp. I
try to choose topics that I have some knowledge of so that limits how
many posts I attempt to answer :-). Be sure to realize that, in
general, answering posts is a volunteer effort. The Catch 22 for the
original poster is that you have to know enough of the "foreign
language" of Access before you can communicate what new language
skills you need.

Hope this helps,
James A. Fortune
Nov 12 '05 #11
James,

You speak so well, but the words that I'm reading are a different language. I
know what you mean about students and cheap labor. I'm a nonprofit company
that's trying to get on my feet internally and doing some outside projects to
pay the bills, till some grants come through hopefully. I'm learning Access 97
- 2002 and each version has it's likes and dislikes to me. I appreciate the
speech and dissertation on edicate and programming logic, I think....lol.

I still haven't got this Dim and declaration down, and I know I need to learn
more, but the resources are limited without funding resources. I have almost
every book written for Access and VBA, along with Visual Basic and dotNet and
I'm slowly learning. It's the help I get here that teaches me, no matter how
much I know, it's only a tidbit of what's available to the programming
community. By using other peoples help and code, it cuts development time by
quite a bit. The old adage, why try and reinvent the wheel is very good when it
comes to code. But, I also understand when someone works for hours, days, weeks
or sometimes longer, giving that freely isn't an option. I also know that
trying to teach the masses can be quite the task too. I for one am attempting
to teach developmentally disabled adults and teens to use technology to gain
higher paying jobs in employment. Some of the applications I'm developing are
going to be used by staff and workers to assist in this task.

Please checkout:
http://www.esoltec.org

Thank you for your time and explanation(s).
Michael Bragg, President
eSolTec, Inc.
a 501(c)(3) company

Nov 12 '05 #12
--CELKO-- wrote:
For more complex tree tracing, see Joe Celko's article: .. <<

Actually, I would rather that you buy my new book on Amazon.com on
trees & Hierarchies in SQL, so I can get royalities :)


Delete your cookies first :-)

http://www.business2.com/b2/web/arti...528427,00.html

--
Error reading sig - A)bort R)etry I)nfluence with large hammer
Nov 12 '05 #13
ja******@oakland.edu (James Fortune) wrote:
The Catch 22 for the
original poster is that you have to know enough of the "foreign
language" of Access before you can communicate what new language
skills you need.


Actually this is why when doing some searching I now always start looking at
groups.google.com. The question was asked, hopefully many times, in many different
ways in whatever terminology the original poster was comfortable with. The answer is
in Access (or other technology as appropriate) terminology.

But when I search on an error number and I only get five or eight hits I get very
concerned. <smile>

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Nov 12 '05 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: Conax | last post by:
Hi there, My boss is hoping that I can come up with a page that displays some information. The information will always be displayed on specific part of the page, with auto refresh. But he...
13
by: Lumpierbritches | last post by:
I'm curious as to why some questions posted here get results and solutions, while others are answered in a seemingly foreign language and I can't begin to comprehend or understand the answers that...
25
by: Tim | last post by:
Dear Developers, Firstly, I'm not sure where this post should go so I apologise if this is in the wrong group or area. I'm currently interviewing for a vb.net developer who doesn't mind...
4
by: Richard | last post by:
In normal asp i used --------- objRS.Open "tbl_Nieuws", objConn, 1, 3 objRS.AddNew objRS.Fields("N_Datum") = FormatDateTime(Now(),2) objRS.Fields("N_Title") =...
12
by: wickwire | last post by:
I have created a class and used it to further overload ostream: class drum { ... friend ostream& operator<< ( ostream&, drum const& ); } ostream& operator<< ( ostream& out, drum const& od )...
11
by: sterling.mckay | last post by:
Just started to teach myself C C++ programming... I have been very interested with computers for a while now and have a nac or so I thought for how they work ... hardware I am ok with ... I can...
20
by: kwikius | last post by:
As I understand it posts to comp.std.c++ shouldnt contain personal attacks. Since several of my posts on this to comp.std.c++ on this subject have now been simply ignored with out any reply by...
31
by: Sam of California | last post by:
Is it accurate to say that "the preprocessor is just a pass in the parsing of the source file"? I responded to that comment by saying that the preprocessor is not just a pass. It processes...
8
by: Killer42 | last post by:
Argh! Just got back to an old VB6 (at home) project I put on the back burner months ago. Among other things, it does a bit of image comparison, which appeared to be taking a ridiculously long time...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.