Install MySQL 8 on Debian 9

This guide will demonstrate how to install MySQL 8 on Debian 9. Install MySQL 8 on Debian 9 To install MySQL 8 on Debian 9,

Install MariaDB 10.3 on CentOS 7

This guide will quickly take you through how to install MariaDB 10.3 on CentOS 7. The current stable release of MariaDB is v10.3.15. Se how

Enable MSSQL Server and Database Level Auditing

This guide describes how to enable MSSQL server and database level auditing. Database auditing basically involves capturing and  monitoring database activities. The server-level audit involves

Install MongoDB on Ubuntu 20.04

Install MongoDB on Ubuntu 20.04

Follow through this tutorial to learn how to install MongoDB on Ubuntu 20.04. According to mongodb.com, “MongoDB is a general purpose, document-based, distributed database built

document.addEventListener("DOMContentLoaded", function() { document.querySelectorAll(".scroll-box").forEach(function(box) { box.style.position = "relative"; // Needed for absolute positioning of button var button = document.createElement("button"); button.className = "copy-icon-btn"; button.setAttribute("aria-label", "Copy code"); button.innerHTML = ''; box.appendChild(button); button.addEventListener("click", function() { var text = box.innerText; navigator.clipboard.writeText(text).then(function() { button.querySelector("svg").setAttribute("fill", "#4CAF50"); setTimeout(function() { button.querySelector("svg").setAttribute("fill", "white"); }, 1500); }).catch(function(err) { console.error("Copy failed: ", err); }); }); }); });