2019-01-21
122 reads
2019-01-21
122 reads
Do you consider multi-skills useful; or just one with mastery in it?
2019-01-21
143 reads
2019-01-17
66 reads
2019-01-16
145 reads
Being effective is important to Steve. Today he talks about the things you might consider when trying to determine if your group is being effective.
2019-01-15
55 reads
Phil Factor has tried many different ways to remember code and archive old code for reuse, but has yet to find the perfect solution. Does it exist?
2019-01-14
109 reads
Security is important, and Steve wonders if any of us have a list of things we do that improve security.
2019-01-11
79 reads
2019-01-10
106 reads
Failure is one of the ways we get better as software developers. Does that apply to DBAs?
2019-01-09
55 reads
As we gather more and more data about individuals, not only does security become an issue, but also the morality of using the data.
2019-01-08 (first published: 2014-11-18)
144 reads
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,...
By Steve Jones
fawtle – n. a weird little flaw built into your partner that somehow only...
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 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