Month: April 2021
{“code”:”InvalidTemplateDeployment”,”message”:”The template deployment ‘Microsoft.Web-FunctionApp-Portal-b06e931b-bcdb’ is not valid according to the validation procedure. The tracking id is ‘4d7b14aa-8133-4818-aa26-2ca3dab75b77’. See inner errors for details.”,”details”:[{“code”:”ValidationForResourceFailed”,”message”:”Validation failed for a resource. Check ‘Error.Details[0]’ for more information.”,”details”:[{“code”:”MaxNumberOfServerFarmsInResourceGroup”,”message”:”The maximum number of ServerFarms allowed in a Resource Group is 100.”}]}]}
Microsoft releasing the Visual Studio 2022 public preview
Microsoft has just announced that its Visual Studio 2022 preview is up for developer testing ahead of its planned summer release this year. One of the big news with Visual Studio 2022 is going to be the transition to a 64-bit app. Indeed, Microsoft has… Read More
Change or see the associated storage account used in Azure Functions or Logic Apps (Preview)
Go to Function App –> Under Settings –> Configuration –> Application Settings –> AzureWebJobsStorage You can change the storage account for Azure functions/ Logic Apps (Preview) by changing the value of AzureWebJobsStorage application settings key
Logic Apps (Preview) Workflows missing
Getting following warning while deploying from Visual Studio code through Azure extension 6:37:58 AM: WARNING: Deployment succeeded, but failed to list http trigger urls. Solution:- Check the storage account associated with the logic apps does have private endpoint enabled. If so please ensure that the associated storage account has private link resource types enabled for files… Read More
Azure Functions Timer Trigger CRON Expressions
{second} {minute} {hour} {day} {month} {day-of-week} Type Example When triggered A specific value 0 5 * * * * Once every hour of the day at minute 5 of each hour All values (*) 0 * 5 * * * At every minute in the… Read More
Google.GoogleApiException: ‘Google.Apis.Requests.RequestError
The request cannot be completed because you have exceeded your < a href=”/youtube/v3/getting-started#quota”>quota< /a >.
Google calculates your quota usage by assigning a cost to each request. Different types of operations have different quota costs. For example: A read operation that retrieves a list of resources — channels, videos, playlists — usually costs 1 unit. A write operation that creates,… Read More
Query Unicode Characters in SQL Server
This N prefix tells SQL Server to treat this string literal as a Unicode string and not convert it to a non-Unicode string (as it will if you omit the N prefix). select * from [MalayalamNews] where title like N’%ചെന്നിത്തല%’