-
Recent Posts
Archives
Categories
Category Archives: Uncategorized
SQL Server Transactional replication error
This week, the replication of the subscription of one of our most important databases stopped working. The distribution agent job stopped. In the job history, it had logged the following error: The distribution agent failed to create temporary files in … Continue reading
Posted in Uncategorized
Leave a comment
How I passed the exam AZ-900 Microsoft Azure Fundamentals
This week, I passed my first Azure exam: AZ-900 Microsoft Azure Fundamentals. As the name suggests, this is the most basic Azure exam, and therefore a nice place to start if you want to get certified in one of the … Continue reading
Posted in Uncategorized
Leave a comment
Dynamic PIVOT statement
My attempt to make a dynamic PIVOT statement. The table used is the same as the example in my 70-761 book. First, theĀ @list_of_columns parameter is filled to create a list of columns, using COALESCE. Next a common table expression is … Continue reading
Posted in Uncategorized
Leave a comment
Convert MSDB job history to datetime
This script will get the job history for a particular job. The start time will be converted from integer to datetime. Works for job duration under 1000 hours. Since I’ve still got clients on SQL 2008, I can’t use the … Continue reading
Posted in Uncategorized
Leave a comment
Does the Powershell command Restart-Service -force restart dependent services?
This could be my shortest post ever, with a simple “yes”, but let me elaborate. At times, you have to restart a service. With Powershell, this is easy enough (provided you have the right permissions): Restart-Service -name will do the … Continue reading
Posted in Powershell, Uncategorized
Leave a comment
Creating a virtual machine with Vboxmanage
Lately, I’ve been creating, deleting and recreating a lot of virtual machines with Oracle VirtualBox. So today, when I needed to start with a clean environment, I decided to create a virtual machine using the command line instead of the … Continue reading
Posted in Uncategorized
1 Comment