The PASS Data Community Summit First Timer Guide
The 2023 First-Timer guide to the PASS Data Community Summit is available from Edwin Sarmiento
The 2023 First-Timer guide to the PASS Data Community Summit is available from Edwin Sarmiento
Learn the basics of Apache Druid and how it can be used to ingest data into a data lake.
Is MongoDB in use within your organization? The Flyway development team is adding MongoDB support into Flyway and would like to better understand the current pain points. If you are able help, or are interested in finding out more, please participate in our 5-minute survey.
Learn how to use the notebook feature of Azure Data Studio to keep a set of queries together with some documentation.
In the past, Steve hasn't often felt management considered databases to be important, but that is changing.
Learn the basics of how Dynamic Data Masking can be used to obfuscate data in SQL Server 2016+.
New solution allows developers and teams to “buy the base and rent the peak” when provisioning for variable workloads without wastage or performance tradeoffs
Or perhaps another way to phrase that is, Microsoft is up to something with parallelism. I don’t know how long it’s been this way – could even be since the launch of Azure SQL DB Serverless – but I just now noticed it while helping a client with a slow query.
When we need to be heroes in IT on a regular basis, that's a problem for Steve.
This article will show the basic outline for how Python scripts can access and work with data in SQL Server.
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...
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...
Comments posted to this topic are about the item Encoding URLs
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