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 Steve Jones
With the AI push being everywhere, Redgate is no exception. We’ve been getting requests,...
By Steve Jones
fawtle – n. a weird little flaw built into your partner that somehow only...
AWS recently added support for Post-Quantum Key Exchange for TLS in Application Load Balancer...
Comments posted to this topic are about the item Semantic Search in SQL Server...
Comments posted to this topic are about the item Encoding URLs
Comments posted to this topic are about the item An SSIS Upgrade
I have this data in a 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