Azure – How to read sql server view in python?
I am trying to read some data from a sql view. I am pyodbc driver for that, I found out that pyodbc cannot read views. Is there is a way to read sql view in a python function? Here is…
I am trying to read some data from a sql view. I am pyodbc driver for that, I found out that pyodbc cannot read views. Is there is a way to read sql view in a python function? Here is…
I am currently working on understanding Event Hub along with Azure Function. I have checked out event driven scaling which mentions about the scale controller. But none of the azure documents I referred gave out the logic behind scale controller…
I am trying to learn Azure functions and i have added a HTTPTrigger function and publish on Azure Now what if i don't have any web application on azure to test , and I want to test it my already…
I already have a function app with several functions deployed through devops pipeline. I want to implement deployment slots to my current environment so that we can have better availability. Followed this document from Microsoft https://learn.microsoft.com/en-us/azure/azure-functions/functions-deployment-slots After creating deployment slot.…
I use CosmosClient from SDK Microsoft.Azure.Cosmos 3.28.0 in ASP.NET Core 3.1 in Azure Durable Function. This client is getting and sending data from/to my cosmos instance (Core (SQL)) and it works fine but I see that it constantly throws exception…
I am having the following problem and an extensive search online didn't provide any good results. When trying to access my Azure Data Explorer Database and querying using the Kusto.Data SDK in an Azure Function, it yields the following error:…
is it possible to retrieve a Storage Account's Access Key when deploying the Storage Account via a Bicep module? My parent bicep creates a storage account using a module file, and it then needs an Access Key but I cannot…
I can execute a process "x" in parallel using Azure Functions Durable Fan In/Fan Out. If I divide my unique process "x" in multiple process using this concept, can I reduce the execution time for the function?
I'm gettting rather weird error when attempting to create new Azure Function App with Azure Functions VS Code extension: Subscription MY_SUB_GUID_HERE was not found. No matter what I've tried: reloading VS Code, re-installing Azure Functions extension (incl. older versions), logging…
I had an Azure function that worked completely fine, then I added the pytz package to my script. In Azure I am getting the error: ModuleNotFoundError: No module named 'pytz'. My requirements.txt file looks like this: azure-functions pyodbc==4.0.32 requests==2.28.0 pytz==2022.1…