We’ve been chasing issues with performance across a series of applications where there are multiple cloud providers (specifically AWS and Azure) in play. The application is a fairly typical .net web-based application that does calls to Azure SQL DB and AWS RDS at various times and places. The issue we’ll see from time to time surrounds lag time between the...
Other News
Mixing Flavors of SQL Server
It’s been an interesting ride, optimizing SQL Server, figuring out best use cases for the different flavors of SQL Server that we have come to rely on, and we’re seeing those choices pay off in terms of management, performance, and cost savings. The “flavors” I’m speaking of? AWS RDS SQL Server, Azure SQL DB specifically. Our event platform is based […]
July Spotlight – Db2 LUW: Types of I/O
(Martin Hubel) Since the beginning of commercial applications, input/output (I/O) has been one of the main determining factors for overall performance. In the world of relational database, I/O can easily surpass all other considerations, particularly if an SQL statement asks for a very large result
Part II: Overview of B- Tree and B+ Tree
Introduction to B+ Tree The drawback of the B tree used for indexing is that it stores a data pointer (a pointer to a block of a disk file with a key value) that matches a given key value, along with that key value in the B tree node. This technique significantly reduces the number of entries that can be...
Is it undermining or rude to email the boss to ask him to get his act together?
A busy professional asked me this question: Is it undermining or rude to email the boss to ask him to get his act together after 1am? This is one of the reasons- undermining management, the HR dismissed me for gross misconduct. I was a chef and finished very late every night. I would not do it. It’s...
Getting Started With Deep Learning in Your Browser Using TensorFlow.js
(Raphael Mun) Here we look at: Setting up TensorFlow.js, creating training data, defining the neural network model, and training the AI.
SQL Server Collation Overview and Examples
(Aubrey Love) While installing SQL Server or creating databases and tables, we often run with the defaults. In most cases, that’s not a bad thing. However, when it comes to setting the COLLATION, we again often run with the default settings.
MySQL Escaping on the Client-Side With Go
(Max Dudin) Day-to-day database operation requires, from an administrator, deep knowledge of db internals and security issues, in particular things like SQL injections.
VS Code Gets New Python Language Server, Named After Monty Python Character
(David Ramel) Someone on the development team for Python in Visual Studio Code is a Monty Python fan.
How Hello World! changed – top level statements and functions (C# 9)
(Christian Nagel) C# 9 comes with many new features to enhance productivity and fix bugs. One productivity enhancement comes for small programs and learning C#: top level statements.