Choosing a strategy for calculating a unique and reliable device identifier can be a frustrating and somewhat more difficult decision than you might initially think. There’s no silver bullet and like many things in the world of programming, pros and cons need to be determined and trade-offs need to be made. In this article, I…
Month: November 2021
InSQL
Sometimes when working with a SQL Server database, you need to update a specific table row or insert a new row if the one you were trying to update isn’t already there. This logic is known as an ‘upsert’ operation i.e. either update or insert a row depending on whether it currently exists. In this…