Should the Data Lake be Immutable?
Data warehouses and lakes are often loaded from other data, so should they be immutable?
2019-02-26
807 reads
Data warehouses and lakes are often loaded from other data, so should they be immutable?
2019-02-26
807 reads
One thing I learned while working as a database administrator over 17 years is the importance of teamwork across departments. Many times, we have to rely on network and SAN administrator to make changes to their environments in order to make SQL Server run more efficiently. There are times where the storage and network create […]
2019-02-25
63 reads
Will employee data become a target of hackers? It's likely more a movie plot than reality, at least, Steve hopes so.
2019-02-25
77 reads
A company is letting companies trade vacation for payments against student loan debt.
2019-02-22
70 reads
No matter what the reason you have sensitive information, you need to treat it carefully.
2019-02-21
59 reads
2019-02-20
60 reads
Steve talks about the level of engineering effort we need in software development.
2019-02-19
72 reads
Today we have a guest editorial from Andy Warren as Steve is away on vacation. This was originally published on Dec 23, 2014. I was reflecting recently on my first real IT job. It was a small-ish company when I joined it, perhaps a hundred employees or so, and still using a mishmash of software […]
2019-02-18 (first published: 2014-12-23)
205 reads
Steve talks about the need to be careful with backups in this age of malicious attackers.
2019-02-18
61 reads
2019-02-15
74 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