What is a Database?
What is an Instance?
An instance contains a set of background processes and memory structures. It is the data management software that connects users and the operating system (OS)
What are the two data types?
Relational database and Non-relational database.
What is Relational Database?
What is a Non-relational database?
What is an ACID Properties and what does it stand for?
What is Atomicity in the ACID Properties?
Atomicity is the guarantee that series of database operations in an atomic transaction will either all occur or none will occur. If an error occurs during transaction execution, the transaction will be rolled back to the state from before it was committed.
What is Atomicity in the ACID Properties?
Atomicity is the guarantee that series of database operations in an atomic transaction will either all occur or none will occur. If an error occurs during transaction execution, the transaction will be rolled back to the state from before it was committed.
What is Consistency meaning in ACID Properties?
A consistent transaction will not violate integrity constraints placed on the data by the database rules. That is, executing a transaction cannot destroy the integrity or consistency of database data.
What is Isolation in ACID Properties?
Isolation means that concurrent transactions are executed sequentially. It guarantees the individuality of each transaction and prevents them from being affected by other transactions.
What is Durability in ACID Properties?
Once a transaction is committed, it will remain in the system even in the event of a system failure.