Dreams of the Future
Steve Jones looks ahead to an interesting trip for the future of a couple of technical geeks.
Steve Jones looks ahead to an interesting trip for the future of a couple of technical geeks.
Steve Jones looks ahead to an interesting trip for the future of a couple of technical geeks.
This tip shows you how you can apply the cross-validation feature in the upcoming SQL Server 2008 release to estimate if the training set size is sufficient for a given model.
Optimize SQL Server non-clustered indexes and queries by considering index fields, compound indexes and SQL Server statistics' impact on non-clustered indexes.
Expressions can be used to dynamically build an output file. Here we will show you another way to do this using the script task.
SQL Server 2008 sets a TPC record. And it hasn't even been released. This editorial was originally published on Mar 4, 2008. It is being rerun as Steve is on vacation.
This article will show how you can produce a return regardless of variables passed and debugging tool for @SQL String.
MVP Simon Sabin continues his in depth look at Full Text Search in SQL Server 2008. This time he examines how you can load Thesaurus files.
In this article Dinesh Asanka demonstrates how you can use your own data sources in SQL Server Integration Services.
Marcin Policht provides a step-through sample implementation of transactional and merge replication.
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