I know that the order in which a database stores data in a table is random - provided there is no primary key. My question is, fundamentally, what's going on when the data changes order after a query? If one opened a database, closed it and opened it again to find the data in a different order, what's going on when that happens?
|
feedback
|
|
Its, probably, the question about realization - so it depends on what DBMS you're using. The simplest answer - data from this table gone out of DBMS cache and will be read from disk in arbitrary order, if not specified with explicit ORDER BY operator. The main issue of non-existing primary key - the loss of data consistency. The only reason for table not to have primary key - when the table is a staging (buffer) table. | |||
|
feedback
|
|
I think you're confusing a number of related concepts. A primary key is a conceptual thing. It's the unique identifier for a record in a relational database. Primary keys are often implemented through unique indices. On some database systems, you can specify these as "clustered"; these affect the physical ordering of the data on disk. The order in which data is returned is controlled firstly by the "order by" clause; if that's not available, it's not defined - each database is free to implement this as it wants to. In practice, that means "in the order in which it's stored on disk"; if there's a clustered index, it will be in that order; if there isn't, it could be whatever's in the query cache, or the order in which the records are stored on disk. | |||
feedback
|
Actually, this assumption is not valid. Declaring a primary key doesn't require the database to lay out the data in some particular order in disk. The only thing that it does is require the database to guarantee that there are no rows with duplicate keys. Now, how does the database guarantee that? The short answer is in any way it chooses to; as long as it works, database implementers are free to pick anything. The most common mechanism creates a unique index and uses it to guarantee uniqueness; the index is ordered, but the table isn't. But RDBMSs often offer alternative strategies to do the same thing; e.g., index-organized tables, an optional feature available in Oracle, follows the strategy of keeping the table itself ordered. This has some advantages and disadvantages compared to the default strategy (promotes better performance for some kinds of queries, but uses more disk space). And this is, after all, the point of database systems: you define the data's schema in high-level terms (tables, keys, constraints), and the RDBMS decides how to organize the data. We give the RDBMS a lot of freedom on how it chooses to do so because we want the smart folks who design and implement database systems to invent newer and better ways of doing the same thing.
Well, first of all, unless you tell the database that you want the query results in a specific order (with an The most common reason: the database has picked different execution plans, and these plans use different indexes on the same table. Different indexes have different orders, so different choice of index leads to different order of results. There can be other reasons, however. For example, some databases may execute different pieces of your query in parallel, and in this case, it's not predetermined which rows will be available first. The key thing, again, is that the fact that there's no predefined order in which the rows must be produced allows the database implementors to pick alternative strategies based on what they think will be fastest. | |||
feedback
|
|
Provided that you're not ordering using Some examples of ways it could order;
In other words, don't trust the order unless you explicitly ask for it, the database may surprise you by optimizing things for your benefit. Also note that this fundamentally has nothing to do with a | |||
feedback
|
|
"But someone asked me the other day WHY the data changes order and I didn't know." The reason is that absence of "inherent" ordering is one of the most fundamental properties of the relational model. The set {1 2} is the very same set as the set {2 1}, and the relational model has its origins in set theory. | |||
|
feedback
|
|
You can implement programmatic keys - manage data via programming logic; neverthelss this is not a good practice. In addition, data without primary keys can't be properly managed by DBMS- data consistency can be (and will be) compromised | |||||||
feedback
|