Search results

  1. K

    Results from Quebec election

    Newman I'm just over the 'border' here in eastern Ontario. It looks to me like the electorate has spoken, and said that they are sick of ALL of the old parties. Liberals: the Federal liberals and the sponsership debacle have sunk them, plus its just the same old thing all over again. PQ...
  2. K

    Moving from Excel to Access

    A few issues for you to mull (over and above the critical ones about doing lots of planning and a little research into understanding of how relational databases such as Access works. The previous posters were certainly correct that you can't treat this like just another kind of speadsheet)...
  3. K

    To Code or Not to code.

    If you are still working on this... I would simply use an autonumber 1 to n for your actual [subjectPK] primary key that connects your data to the subject, and use a long integer FK in all of the related tables. Then you can use all of the typical Access techniques to build your db. HOWEVER...
  4. K

    To Code or Not to code.

    You didn't describe how the letter prefix is chosen. Is it assigned at random? Is it one of their initials, etc? Do you go A001, B001, ..., Z001, A002, B002 etc? Does the user get to pick it? This will affect your 'best way'. BTW, this only gives you 26*1000=26000 possible combos. Will...
  5. K

    Forum Restructure

    AFAIK, the spam bots often post to the first or top forum. So, I would suggest set up a structure like you have proposed, but add one at the top, such as "Testing: Do not post here" that can catch much of the spam. The downside is that this would be right at the top of the list, which is...
  6. K

    Meaningless vs Meaningful Primary Keys

    By the way, at the risk of hijacking this thread a bit, my own naming convention seems quite similar to yours, but with a difference: On the 'many' side of the relationship, I use the suffix 'FK' where you use ID. So in your example, the PK in the Employee table would be called [EmployeeID]...
  7. K

    Meaningless vs Meaningful Primary Keys

    I think I agree with Doc_Man on this. Everyone needs to follow a formal NAMING convention. Yours certainly has its merits, but there others that are good as well. However, the CONTENTS of the fields and the NAMES of the fields are two distinct things. The top structure of your .jpg can be...
  8. K

    What's your best/worst joke?

    What you will learn in engineering: * You can study hard and still fail * You can not study and pass * Multiple choice does not mean easy * There are no trains here * Six exams can be written in 4 days, but it hurts * You can skip all the classes, study for 15 minutes before the final...
  9. K

    What's your best/worst joke?

    Psychologically, a square patty looks 'larger' than a round one, for the same amount of meat. Also, having the corners of the patty poking out at you increases the impression that you are getting more meat.
  10. K

    Meaningless vs Meaningful Primary Keys

    Advantage FOR meaningful (MF) keys: (Assuming all of the previously-stated strenuous criteria for selecting a MF key are met) The resulting db structure should be easier to understand, particularly for people other than the original developer(s). This can be really handy if the db survives for...
  11. K

    Meaningless vs Meaningful Primary Keys

    In my opinion, a truely unique meaningful (MF) key might be better than a meaningless (ML) key, unless performance requirements dictate limiting the PK to an autonumber-sized entity. However, finding a truely-unique, under all possible foreseeable circumstances, MF can be difficult, and...
  12. K

    Is Auto Number PK more likey to produce Locking errors in a multiuser db

    from http://en.wikipedia.org/wiki/Microsoft_Jet_Database_Engine
  13. K

    What's your best/worst joke?

    I buy WEINERS in a package of 10. I buy buns in packages of 8. On average, 7 of the WEINERS go into the buns to make hot dogs, and three of the WEINERS are eaten, sans bun, by my son who doesn't like the bun. I actually have EXTRA BUNS. Do you think that they sell packages of SEVEN buns?
  14. K

    Meaningless vs Meaningful Primary Keys

    Proposed argument FOR meaningless key: 4) Sometimes, it is impossible/difficult to find a meaningful key that is GUARANTEED to be unique. I have encountered several cases where an assumed-to-be-unique key turned out out to be non-unique when more data was merged/linked in from other sources...
  15. K

    A message box is required if all tasks completed

    1) Create a summary query that groups by the records that you have on your subform, and COUNTS them in a new field. 2) Copy this into another query (with a different name!) and add a 'where' option for 'completed=true' 3) Create another query that contains all of the relevant fields (or use the...
  16. K

    Averages from multiple colums with ignored values

    OP: Search this forum on 'surveys' as this topic has been discussed before. Rule of Thumb: If you ever find yourself wanting to add/average/count/std dev/etc with similar FIELDS in the SAME RECORD, there's a real strong possibility that your tables are not normalized.
  17. K

    What About This Average?...Field Average...

    What you have is a sample of a spreadsheet. If this is your Access table structure, then you are not normalized You should have a table structure like: RecordID (autonumber), to uniquely identify each record. {Optional, but strongly recommended} SampleID (integer) CriterionID (integer) Value...
  18. K

    identifying the user

    http://www.access-programmers.co.uk/forums/showthread.php?t=105243
  19. K

    What's your best/worst joke?

    How do you kill a yellow elephant? Tell him dirty elephant jokes until he turns pink, then shoot him with a pink elephant gun.
  20. K

    What's your best/worst joke?

    As long as we're doing bad elephant jokes... How do you get four elephants in a little red mini? Two in the front, two in the back How can you tell if an elephants been in the fridge? There's a set of footprints in the butter How can you tell two elephants have been in the fridge...
Back
Top Bottom