Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a large project that contains many reference / look up type tables. This is maybe not the correct place to ask this question but I would like to find out the name that people give in English to these kind of tables:

The tables contain data such as status_code, status_type. They are preloaded and the data in them will probably never change.

Please excuse my not knowing this but ENglish is not my first language and I need to do a presentatation to talk about these kind of tables.

share|improve this question
the best word i can think of is "report" – Ibu Jun 13 '11 at 7:15
Could you provide an example? Something like var Status = { Failure: 0, Success: 1 }, which would be called an enum (mostly because of how they're used in other languages, although JavaScript technically does not have enums as you can get away with things like Status.Failure = 2). – Bryan Jun 13 '11 at 7:18
Yes just like your wrote where the status table can have "Failure", "Success", "Ready" and then there are more tables that cover things like the materials used in buildings. All these tables are used to populate drop down lists. – Jennifer82 Jun 13 '11 at 7:20
1  
People give different names - LookUpData, ReferenceData, StaticData, etc depending upon the properties of data. – Sandeep Jindal Jun 13 '11 at 7:22
Yeah, if it's merely assigning integers to keys, in most languages those are enums. But really, these are all objects in JS, and the answers others gave are good, especially if you have things like var Status = { Failure: { message: "Oh no!", value: 0 }, Success: /* ... */ }. There's no fixed name. – Bryan Jun 13 '11 at 7:27

4 Answers

up vote 3 down vote accepted

People give different names - LookUpData, ReferenceData, StaticData, etc depending upon the properties of data. Is this answer your questions? If not, probably you need to be more elaborative.

share|improve this answer

The most often used english name I've encountered is 'static data'. This indicates that the data does not change very often.

Aside: one interesting aspect of static data is that it is a good candidate for caching.

share|improve this answer

We tend to use the term "Reference Data". But there isn't a standard term, it varies a lot in my experience. I haven't heard "Static Data" before, but I like it.

share|improve this answer

Where the tables contain data that's interesting to the application, but do reflect not the outside world - status codes, for instance - I tend to call them enumeration tables.

Where the table contains values that change rarely, but do reflect the outside world - cities, currencies, etc. - I tend to call them lookup tables.

Where tables contain "friendly" values - e.g translating ISO country/locale codes - I tend to call them reference tables.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.