Databases: Difference between revisions

From Computer Science Wiki
 
(3 intermediate revisions by the same user not shown)
Line 7: Line 7:
== Big Ideas in Databases ==
== Big Ideas in Databases ==


* [[Data modeling]]
*  [[Entity relationship diagramming]]
*  [[Entity relationship diagramming]]
*  Entity relationships
*  Working with entity relationships
*  [[Normalization]]
*  [[Normalization]]
*  [[Unique identifiers]]
*  Transforming From Conceptual Model to Physical Model
*  Introduction to SQL
*  SELECT Statements and Relational Database Technology
*  Using the WHERE Clause
*  Restricting Rows and Introduction to Functions
*  Using Character, Number, and Date Functions
*  Using Single Row Functions
*  Fundamentals of Database Security
*  Understanding Database Transactions
*  MySQL: monitoring and performance
*  MySQL: security
*  [[ACID]]
*  [[CRUD]]
*  [[NoSQL]] (Advanced)


== ACID ==
In computer science, ACID (atomicity, consistency, isolation, durability) is a set of properties of database transactions intended to guarantee data validity despite errors, power failures, and other mishaps. In the context of databases, a sequence of database operations that satisfies the ACID properties (which can be perceived as a single logical operation on the data) is called a transaction. For example, a transfer of funds from one bank account to another, even involving multiple changes such as debiting one account and crediting another, is a single transaction.<ref>https://en.wikipedia.org/wiki/ACID</ref>
[[File:Acid.png|thumb]]


== See also ==
== See also ==

Latest revision as of 08:03, 1 September 2022

Databases[1]

A database is an organized collection of data. It is the collection of schemas, tables, queries, reports, views and other objects. The data are typically organized to model aspects of reality in a way that supports processes requiring information, such as modelling the availability of rooms in hotels in a way that supports finding a hotel with vacancies.[2]


Big Ideas in Databases[edit]


ACID[edit]

In computer science, ACID (atomicity, consistency, isolation, durability) is a set of properties of database transactions intended to guarantee data validity despite errors, power failures, and other mishaps. In the context of databases, a sequence of database operations that satisfies the ACID properties (which can be perceived as a single logical operation on the data) is called a transaction. For example, a transfer of funds from one bank account to another, even involving multiple changes such as debiting one account and crediting another, is a single transaction.[3]


Acid.png

See also[edit]

  1. Please take a look at our SQL page

References[edit]