Outer Join – What am I missing (SQL Spackle)
This article shows how to find missing rows in a table using a outer join.
This article shows how to find missing rows in a table using a outer join.
In this article, we look at a SQL Server Dynamic Management View (DMV) that helps find queries that trigger missing index recommendations.
AWS offers a robust suite of tools designed to manage big data effectively. This article explores focusses on how SQL is leveraged within Amazon Redshift and Amazon Athena. We will delve into the technical features, practical applications, and step-by-step examples for using these services, highlighting how they can transform raw data into actionable insights for your business.
Algorithms rule the world and Steve talks about the impact those have on the world.
This next article looks at how a Logic App in Azure can start and stop various database services and save money.
Learn how to get started with Elasticsearch with data in your SQL Server database.
Steve has a few thoughts on how AIs change the role of databases.
Create an SQL Server backup for an Azure Managed Instance that you can download and restore on another SQL Server instance.
In Azure SQL Database serverless edition, we get an upgrade to our configuration.
By DataOnWheels
Ramblings of a retired data architect Let me start by saying that I have...
By Steve Jones
A customer was testing Redgate Data Modeler and complained that it auto-generated PK names....
By Steve Jones
With the AI push being everywhere, Redgate is no exception. We’ve been getting requests,...
Hi everyone, Below is a consolidated summary of what we validated Architecture & data...
Hi all, I recently moved to a new employer who have their HA setup...
Comments posted to this topic are about the item Semantic Search in SQL Server...
I have this data in a SQL Server 2025 table:
CREATE TABLE Response ( ResponseID INT NOT NULL CONSTRAINT ResponsePK PRIMARY KEY , ResponseVal VARBINARY(5000) ) GOIf I want to get a value from this table that I can add to a URL in a browser, which of these code items produces a result I can use? See possible answers