Please enable JavaScript.
Coggle requires JavaScript to display documents.
ZyBooks 5 - Coggle Diagram
ZyBooks 5
Storage Media
dimensions
Speed
-
Transfer rate
speed at which data is read or written, following initial access.
-
-
-
Types of memory
main memory (RAM)
-
fast, expensive, limited capacity
Flash memory
-
less expensive, higher capacity
-
-
Organization
-
block
-
-
storage data is managed by controllers, which convert between blocks and sectors or pages
the conversion is internal to the storage device, so the database is unaware of page and sector sizes
block size must be uniform within a database but, in most database systems, can be specified by the database administrator
-
Row-Oriented Storage
-
most databases are optimized for transactional applications wich often read and write individual rows.
to minimize blocks transfers, relational databases usually store an entire row within one block, which is called row-oriented storage
-
-