Fading Coder

One Final Commit for the Last Sprint

Configuring Self-Signed SSL Certificates for SQL Server Connections

Before proceeding with SSL certificate configuration, ensure that SQL Server is properly installed and accessible. Two critical prerequisites must be satisfied: Enable TCP/IP Protocol Launch the Sql Server Configuration Manager tool that accompanies SQL Server installation. Navigate to SQL Server Ne...

Working with Database Triggers: From Theory to MySQL Implementation

What Are Database Triggers? A trigger is a specialized database object that automatically executes in response to certain events on a specific table or view. Unlike regular stored procedures, triggers cannot be invoked manually—they fire automatically when INSERT, UPDATE, or DELETE operations occur...

Collecting Disk Capacity and Free Space Metrics in SQL Server

Monitoring storage consumption is a routine operational task. SQL Server exposes several way to inspect disk space, ranging from quick checks to more complete inventories that include total capacity. Quicck check: xp_fixeddrives (free space only) xp_fixeddrives shows the current free space (in MB) f...