MS SQL Server and Azure Data Studio on Arch Linux

Installing MS SQL Server along with Azure Data Studio on Arch Linux requires a combination of Microsoft packages and some extra tweaks since SQL Server isn’t natively available for Arch and Azure Data Studio is mainly targeted for Debian/Red Hat based distros. Step 1: Install Azure Data Studio Azure Data Studio is available via AUR. yay -S azure-data-studio-bin This installs the latest prebuilt version from Microsoft. Option 2: Manual (optional) If you want to manually install: ...

April 15, 2025 · 2 min · 293 words · Ahmad Hassan

Introduction to Databases - MySQL

Database Database is a collection of interrelated data. A database is an organized collection of data that can be easily accessed, managed, and updated. It stores data in tables, rows, and columns, allowing efficient retrieval and manipulation. Examples include MySQL, PostgreSQL, and MongoDB. DBMS DBMS(Database Management System) is software used to create, manage, and organize databases. A DBMS is software that manages and controls database operations like storing, retrieving, and updating data. It ensures data consistency, security, and integrity while providing an interface for users to interact with the database. Examples include MySQL, Oracle, and Microsoft SQL Server. 🚀 What is RDBMS RDBMS (Relational Database Management System) - is a DBMS based on the concept of tables (also called relations). Data is organized into tables(also known as relations) with rows(records) and columns(attributes). E.g., MySQL, PostgreSQL, SQL Server etc. SQL SQL is Structured Query Language - used to store, manipulate and retrieve data from RDBMS. ...

March 11, 2025 · 11 min · 2291 words · Ahmad Hassan