Cloning SQL Server Instances with Containers
Learn how containers and WinDocks can be used to quickly provision copies of databases.
2018-12-31
2,107 reads
Learn how containers and WinDocks can be used to quickly provision copies of databases.
2018-12-31
2,107 reads
Learn how to deploy Reporting Services into a container with Windocks.
2018-10-04
8,617 reads
Learn how you can get a SQL Server 2017 container working with Docker and Windocks.
2018-08-28
1,211 reads
Learn how containers can help with database development.
2018-06-07
763 reads
In this case study, see how database containers can help improve a QA process.
2017-03-16
644 reads
Get the basics of what a container is and how this can work with SQL Server.
2017-01-06
9,742 reads
Containers promise to make applications more portable and efficient. The technology, originally based on Linux's cgroups, provides a way of running several applications as modular, platform-agnostic packages in isolation on the same server. Docker's open-source approach to containers has dominated the market, and Microsoft is producing its own equivalent Windows system. What next? Will Containers replace VMS? Robert Sheldon investigates.
2015-02-18
8,746 reads
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