From 63d789d2488c0a0e1b0cc2393e6e183f4102b91e Mon Sep 17 00:00:00 2001 From: tactonbishop Date: Fri, 5 Aug 2022 19:00:04 +0100 Subject: [PATCH] Last Sync: 2022-08-05 19:00:04 --- Databases/Fundamental_database_concepts.md | 2 +- Databases/Relational_database_architecture.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Databases/Fundamental_database_concepts.md b/Databases/Fundamental_database_concepts.md index 604be7e..494add6 100644 --- a/Databases/Fundamental_database_concepts.md +++ b/Databases/Fundamental_database_concepts.md @@ -26,7 +26,7 @@ To ensure the integrity of a database, each change or transaction must conform t > > Databases will have mechanisms for **backup**, **distribution**, and **redundancy**, to ensure data is not lost. -## Database management system +## Database management system: DBMS A DBMS is software that can retrieve, add, and alter existing data in a database. MySQL, PostgreSQL, MongoDB, MariaDB are all examples of DBMSs. You can work with them via programming languages like PHP or through graphical clients such as PHPMyAdmin, MicrosoftSQL, Adminer etc. There is also SQLite which runs on the client not the server, so useful for learning and local development. SQLite is also useful when you need a database specific to a single device without networked communication, such as on mobile. diff --git a/Databases/Relational_database_architecture.md b/Databases/Relational_database_architecture.md index 0dc5014..d220917 100644 --- a/Databases/Relational_database_architecture.md +++ b/Databases/Relational_database_architecture.md @@ -1,6 +1,7 @@ --- tags: - Databases + - relational_databases --- # Relational database architecture