Using JSON in SQL Quicktipp

I had a situation recently where I needed to filter specific offboarding tasks from my database. Sounds simple at first, but the challenge was that the relevant information was not stored in its own column, it was inside a JSON field. In my case, the table stores requests from au2mator. Every request can have differentContinue reading “Using JSON in SQL Quicktipp”

Trigger Azure Automation Runbooks Using the Azure Management API

  Introduction This lines providing you step-by-step instructions on how to use a PowerShell script to trigger an Azure Automation Runbook using Azure REST API. We will explore each step from setting up authentication to retrieving the execution output of the runbook. Prerequisites Before starting, ensure that you have the following: Azure Subscription: You needContinue reading “Trigger Azure Automation Runbooks Using the Azure Management API”

LIFO & FIFO with Powershell

In this Post i will explain how we can Use Stack’s & Queue’s in Powershell. It is nothing specail but sometimes very helpfull to know ! Last in First out (LIFO) LIFO is nothing more than a stack. An example of a stack would be the back button in many programs. The previouse value weContinue reading “LIFO & FIFO with Powershell”