Operations | Monitoring | ITSM | DevOps | Cloud

DevOps

The latest News and Information on DevOps, CI/CD, Automation and related technologies.

How to Install and Connect ODBC Drivers in UNIX

Imagine you’re working in a UNIX-based environment, managing multiple databases like MariaDB, PostgreSQL, or Oracle, and you have to connect their data to different applications. Without UNIX ODBC drivers, you’d have to write custom code for each database, which would quickly turn into a nightmare — each database has its own way of handling queries, connections, and authentication. Luckily, ODBC drivers can save the day by acting as “translators”.

Protecting Against Ad-Hoc Query Exploits

Ad-hoc queries are temporary SQL queries created and executed to perform a specific task without prior preparation or to save as permanent procedures or functions. Usually, they can be used to analyze data, search for particular information, or solve temporary tasks. However, if user-defined input data generates the text in ad-hoc queries dynamically, they may be vulnerable to SQL injections. In the article, we’ll explore what ad-hoc queries are and what security and access risks they may cause.

Top 50 Trends That Will Impact the Future of DevOps in 2025

As a DevOps practitioner with over a decades of experience, I have witnessed the evolution of this domain from its nascent stages to becoming a critical aspect of modern software delivery. As we look forward to 2025, the DevOps ecosystem is poised for significant transformation, driven by technological advancements, organizational shifts, and the growing complexity of software systems. Here are the top 50 trends that I believe will shape the future of DevOps in 2025.

Inclusive Engineering at Redgate

In mid 2024, one of Redgate’s coaches, Clare, pulled together a team to focus on improving inclusivity within Redgate’s Engineering organisation. This group was designed to work alongside the wider company initiatives, under the guidance of Engineering leadership. Inclusivity is a very broad topic, and the group wanted to avoid becoming overwhelmed with all the possible options.
Sponsored Post

The Perfect Guide to IT Alerting Tools: Ensuring Proactive Monitoring and Swift Incident Response

Every second counts when it comes to managing IT infrastructure and handling incidents. The stakes are high, and organizations require tools that ensure no issue goes unnoticed. This comprehensive guide to IT alerting dives into everything you need to know to maintain proactive monitoring and swift incident response. We'll discuss the best practices, core features, and review the Top 10 IT alerting tools and IT alerting software that can drive performance and resilience.

When to Use CHAR, VARCHAR, and VARCHAR(MAX) in SQL

A data type is a particular kind of data item that is defined by the values it can take and the operations that can be performed on it. SQL supports various data types, including numeric, date and time, character and string, binary, and more. The choice of data type affects data integrity, storage, and performance; the choice of the optimal data type is not always all that obvious.