0
votes
2answers
99 views

What is the opposite of “Reference Data”?

I'm looking for a term that means "non-reference" data i.e. any data in a database that strictly ISN'T reference data. Master Data /\ / \ / \ / \ ...
0
votes
1answer
48 views

What is “Full constraint” in database theory field?

What does "full constraint" mean? Its used in http://en.wikipedia.org/wiki/Multivalued_dependency
2
votes
5answers
110 views

Finding the right terminology for a dictionary table

My concern is about what I currently call "dictionary tables", that are database tables containing a list of controlled vocabulary. Let's use an example: Suppose you have a table User containing ...
0
votes
1answer
52 views

There is some name to describe databases that are about domains like movies, games, etc?

This is question is only about terminology. I want to know if there is some special name to describe the database that are about some theme/domains like movies, games, music, places, etc.
1
vote
4answers
54 views

What should I call this structure? [closed]

I'm implementing a key-value database. The keys are structured heirarchcally and resemble file paths, like area/section/name. The underlying data chunks are broken up into several large files, ...
2
votes
2answers
478 views

DAO and JDBC relation?

I know that Hibernate implements ORM (Object Relational Mapping), what type of mapping does JDBC implement? Does it implement DAO? I don't totally understand how/if DAO is related to JDBC...?
1
vote
2answers
66 views

i know i know this database term, i just can't for the life of me remember it [closed]

i've been trying to rack my brain for this term but I just can't think of it. The description of it is as follows... say I have a database in which a column is the day of the week and it contains ...
0
votes
5answers
41 views

What's the term for a DB table that consists of foreign keys only?

Here's an example of such a table: item_tag_relationships(item_id, tag_id);
0
votes
2answers
107 views

Terms for related DB records

Here's a DB schema: users(id, name); items(id, user, name), user is a foreign key tags(item, name), item is a foreign key Based on that schema: each item has one user (one to one relationship) ...
2
votes
3answers
84 views

What is a good term for a percent (2%) being stored as 0.02 in a database? [closed]

I want to store 2% in a database as 0.02. This column was going to be called percent_off, but now I'm just wondering if math provides a better term for it. Any ideas?
5
votes
6answers
3k views

Difference between a statement and a query in SQL

I still live in this ambiguity: conceptually what's the difference between a statement and a query in SQL? Can anybody give a definition for each of them? It would be useful, for example when choosing ...
3
votes
2answers
2k views

What does “incremental load” mean?

I regularly see the expression 'incremental loading' when reading articles What does is really (technically) mean? What does it implies ? Explanations using use-cases are welcome.
2
votes
4answers
4k views

What does “bulk load” mean?

Jumping from article to article I can see everywhere the expression bulk loading. What does is really (technically) mean? What does it implies ? Explication through use-case are welcome.
6
votes
5answers
1k views

NULL permitted in Primary Key - why and in which DBMS?

Subquestioning my question "Why to use “not null primary key” in TSQL?" [1] As I understood from other discussions, some RDBMS (for example, MySQL, SQLLite, which else?) permit "unique" NULL in ...
3
votes
6answers
264 views

Tables with a common primary key

What's the term describing the relationship between tables that share a common primary key? Here's an example: Table 1 property(property_id, property_location, property_price, ...); Table 2 ...
6
votes
6answers
5k views

Difference between Primary Key, Unique Key and candidate key

What is difference between Primary Key, Unique Key and candidate key?
4
votes
5answers
5k views

What is a lookup table?

I just gave a database diagram for a DB I created to our head database person and she put a bunch of notes on it suggesting that I rename certain tables so it is clear they are lookup tables (add "lu" ...
1
vote
4answers
698 views

What is Extract/Transform/Load (ETL)?

I've tried reading the Wikipedia article for "extract, transform, load", but that just leaves me more confused... Can someone explain what ETL is, and how it is actually done?
17
votes
2answers
3k views

Explanation of BASE terminology

The BASE acronym is used to describe the properties of certain databases, usually NoSQL databases. It's often referred to as the opposite of ACID. There are only few articles that touch upon the ...
0
votes
3answers
2k views

What is 'document data store' and 'key-value data store'?

What is document data store? What is key-value data store? Please, describe in very simple and general words the mechanisms which stand behind each of them.
21
votes
10answers
4k views

Normalization in plain English

I sort of understand the concept of database normalization, but always have a hard time explaining it in plain English - especially for a job interview. I have read the wikipedia post, but still find ...
3
votes
3answers
2k views

What does it mean to vacuum a database?

As referenced by this Firefox bug, what does the act of vacuuming a database accomplish? Is this operation supported by all modern database software, or only certain ones?
23
votes
6answers
5k views

What is sharding and why is it important?

I think I understand sharding to be putting back your sliced up data (the shards) into an easy to deal with aggregate that makes sense in the context. Is this correct? Update: I guess I am ...