The struggle to renormalize data
You are given an export of a NoSQL database, in JSON, and asked to import it into a relational database. Sounds easy? It isn't and Phil Factor explain why.
2017-09-11
217 reads
You are given an export of a NoSQL database, in JSON, and asked to import it into a relational database. Sounds easy? It isn't and Phil Factor explain why.
2017-09-11
217 reads
Do you use version control for your databases? For your application code? Is there a time when you think it's not needed? Steve Jones asks the question today.
2017-09-08 (first published: 2013-05-17)
164 reads
Equipment can matter for IT professionals. Read a few thoughts from Andy Warren.
2017-09-07
66 reads
2017-09-06
266 reads
2017-09-05
311 reads
A successful launch, and recovery, of SQL Server running below a balloon.
2017-09-04
81 reads
2017-09-04
48 reads
Today Steve Jones looks at possible ways to improve log shipping and asks for your input as well.
2017-09-01
78 reads
Today Steve Jones talks about understanding and having empathy for other points of view.
2017-08-31
77 reads
Today Steve Jones has a few thoughts on the complexity and cumbersome nature of database development.
2017-08-30
105 reads
By ChrisJenkins
You could be tolerating limited reporting because there isn’t an off the shelf solution...
A while back I wrote a quick post on setting up key mappings in...
By Steve Jones
In 100 years a lot of what we take to be true now will...
Hello, I inherited a number of tables with like 20-30 column using nvarchar(256) in...
Hi, i'm running vs2022. I'm trying out a c# script that i'd like to...
I upgraded a SQL Server 2019 instance to SQL Server 2025. I wanted to test the fuzzy string search functions. I run this code:
SELECT JARO_WINKLER_DISTANCE('tim', 'tom')
I get this error message:Msg 195, Level 15, State 10, Line 1 'JARO_WINKLER_DISTANCE' is not a recognized built-in function name.What is wrong? See possible answers