SQL Server 2019 in Containers
SQL Server 2019 in containers are a fast way to get started with SQL Server 2019, and can be used throughout your data estate from development to production.
2020-05-21
SQL Server 2019 in containers are a fast way to get started with SQL Server 2019, and can be used throughout your data estate from development to production.
2020-05-21
Learn how to perform data filtering in Oracle Linux using a database link to SQL Server
2020-04-13
2,416 reads
Steve Jones highlights the importance he sees for data professionals in the containerization of software.
2020-03-11
293 reads
Learn how to set up Polybase in containers to access an Oracle database.
2020-01-09
5,188 reads
Kubernetes is a technology Steve thinks will be important in the future and knowing a bit more about it can be important for your career.
2019-10-23
270 reads
2019-10-18
532 reads
2019-08-05
691 reads
In this article, see one of the ways in which a container can be created and used for in SSRS as the source for reports.
2019-07-30
3,564 reads
2019-07-29
967 reads
2019-07-22
769 reads
By John
If you’ve used Azure SQL Managed Instance General Purpose, you know the drill: to...
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....
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