Az VM create

Az VM create

This Azure CLI article discussed the syntax and usage of the Az VM create command with certain examples of how to use this command. Az VM create You can use the az vm create command to quickly create an Azure Virtual machine using Azure CLI. Syntax of Az VM create: The syntax is as below Az VM … Read more >>

How to create table in Azure SQL database

How to create table in Azure SQL database

In this Azure SQL article, we will discuss a step-by-step guide to create a table in the Azure SQL database quickly. Create table in Azure SQL database Before discussing the actual functionality, let’s discuss the prerequisites needed here. Prerequisites I am assuming that you are ready with all the prerequisites needed here. Let’s start with … Read more >>

How to check Azure Function runtime version

How to check Azure Function runtime version

Let us learn the quick steps to check Azure Function version in Azure Portal. How to check Azure Function version An Azure Function App always runs on a particular runtime version. Below are the three function runtime version in Azure as of now 3.x run time version of the Azure Function is the default version as … Read more >>

How to Change Azure Function Runtime Version in Visual Studio

How to Change Azure Function Runtime Version in Visual Studio

This Azure tutorial will discuss how to check the Azure function runtime version in Visual Studio, Azure Portal, and PowerShell. How to Change Azure Function Runtime Version in Visual Studio Follow the below steps 1. Open your Azure Function Project in the Visual Studio 2019. 2. Right-click on the Azure Function Project name and then click … Read more >>

How to create a Resource Group in Azure

How to create a Resource Group in Azure

This Azure article will discuss the quick steps to create a Resource Group in Azure. How to create Resource Group in Azure Follow the below steps to create Azure Resource Group in Azure Portal. 1. Log in to Azure Portal (https://portal.azure.com/) 2. Now, After logging in to the Azure Portal, search for the “Resource Groups” and click on the search result. 3. Then, … Read more >>

Import-module : the specified module ‘ActiveDirectory’ was not loaded because no valid module file was found in any module directory.

The specified module 'ActiveDirectory' was not loaded

In this PowerShell Azure tutorial, we will discuss how to fix the error. The specified module ‘ActiveDirectory’ was not loaded because no valid module file was found in any module directory, which I got while trying to import the ActiveDirectory module using the Azure PowerShell cmdlet. The specified module ‘ActiveDirectory’ was not loaded because no valid module file was found in … Read more >>

Event Grid vs Event Hub

Azure Event Hub vs Event Grid

In this Azure article, we will discuss Event Hub vs. Event Grid and the key differences between them. Event Grid vs Event Hub Well, let’s do a tabular comparison between the Azure event grid and the event hub. Based On Azure Event Hub Event Grid Azure Event Hub is responsible for the ingestion of data … Read more >>

Azure SQL Database Connection String

Azure SQL Database Connection String

This Azure article will discuss the Azure SQL connection string. Azure SQL Database Connection String We need the Azure SQL Connection String from our local Visual Studio to connect to the Azure SQL Database in the cloud. We need to specify the connection strings in the config file to connect to the Azure SQL Database. Provider … Read more >>

Cannot Import Name ‘cygrpc’ from ‘grpc._cython’

Cannot Import Name 'cygrpc'

In this Azure tutorial, we will discuss fixing the error, Cannot Import Name ‘cygrpc’, I got while trying to run my Python Azure Function in the Visual Studio Code. Cannot Import Name ‘cygrpc’ from ‘grpc._cython’ Recently, I had a requirement to create an Azure Function in Python using Visual Studio Code. I have created the Python Azure … Read more >>