Today I had the honor to speak at the SQL Ireland User Group. I covered basics of how to run SQL Server for Linux on Azure, and also some very advance scenarios.
When running is single instance of SQL Server is not enough, and you have always on demand from business, even during a failure. SQL Server Always On availability group to the rescue.
Since the release of .NET Core, it is almost a child's play to run .NET on other platform then Windows. With .NET Core one can officially target Windows, Linux and even macOS. But with docker you can run .NET Core on (almost) anything.
There are several ways to start using Docker. You can either install it on your local workstation or use one of several Cloud services to run Docker. There are even online courses of Docker that provides you with the while environment needed to learn and experiment with. For now I am only going to concentrate on installation on local workstations. These g...