Delete File or Directory in Linux with Scheduled Azure DevOps Pipeline
In my working environment, we are managing more Linux based Agent machines for building the solution to create artifacts and we got required to clean the build artifacts on regular manner in automatic way
Different ways to List Environment Variables in Linux
An environment variable is a dynamic object that defines a location to store some value. We can change the behavior of the system and software using an environment variable. Environment variables are very important
How to Drop SQL database using PowerShell
My Scenario: As a System Admin/DevOps Guys, we got urgent cost optimization process and it need to done in very less time frame. From the cost optimization list, one of the action is to clean
Pull and Push Docker Image to Azure Container Registry using Azure Devops pipeline
When you want to develop and implement the container application in Azure. The first and main step you would execute is to build the images and push them into the our own private Registry (ex:
A Step-by-Step Guide to Set Environment Variables in Linux
What Are Environment Variables in Linux? Environment Variables in Linux are dynamic values that the operating system and various applications use to determine information about the user environment. They are essentially variables that can influence
How to pass values between Tasks in a Pipeline using task.setvariable Command
Problem ? Azure DevOps pipeline is a set of Tasks which can perform a specific task and these tasks will run inside a Agent Machine (ie., Virtual Machine). While Task is executing, it will be
Rebuild index to reduce Fragmentation in SQL Server
Here we will learn how to identify and resolve by Rebuild index to reduce Fragmentation in SQL Server. Index fragmentation identification and index maintenance are important parts of the database maintenance task. Microsoft SQL Server
How to Continue Azure Pipeline on failed task
Introduction Sometimes failing scripts are not failing the task when they should. And sometimes a failing command should not fail the task. How to handle these situations by Continue Azure Pipeline on failed task? In