MSOLEDB connection manager
I am using SSIS 2019 to create packages. In the list of connection manager driver, I cannot find MSOLEDBSQL, There is a microsoft OLEDB for SQL server, but that is SQLOLEDB, as the microsoft online doc says both SQLOLEDB and SQLNCLI native client…
Data Factory Copy activity failing with Error code 2200 - Operation failed as split count exceeding upper bound of 1000000
Hi , I am copying large data from ADLS gen 1 to ASDW(Azure synapse Analytics) using Data Factory (polybase set to yes and mentioned blob storage settings). The Source data is *.parquet format and is partitioned. Copy activity fails. In first attempt…
Can't access blob from Azure Windows VM
Strangely, we have an issue where we can't download a blob from an azure windows VM but it works perfectly from anywhere else on the internet. I see this: <Error> <Code>AuthorizationFailure</Code> <Message>This request is…
Use Power Automate to connect Excel Online to Salesforce
Hi, we have a task list on Excel in our shared drive and when someone completes a task for a specific client they put their initials in the box for that task. So as an example a row would be the clients name and then 5 or so cells each for a specific…

How to use "Open folder" tasks to run custom mingw build / cmake script?
Hello, I just started looking into Visual Studio, since there will be C++20 support soon and my current IDE (Eclipse) seems to have no plans to update anytime soon .. even some C++17 features are still broken. I have a few related questions so I'll use…
API scopes and roles
Hi, When I register an application (Web api) and Expose the API (adding scopes). I see that we can add appRoles in the manifest. Is there a way to associate roles and scopes? Like to say an Admin role has Read and Write scopes and the Employee…
Inserting different calendar months onto different worksheets in the same workbook?
Instead of having different Excel files for each of the different months of my calendar, I wanted to have them all enclosed in one worksheet, a different month for each tab at the bottom ("January 2020" on one tab, then "February" on…
App Registration and MS Graph API User.Read
Hi, When I register an application (web api) and when I go to the API Permissions section. I see that the MS Graph API User.Read is there by default. Is this necessary If I don't plan to access the Graph API? If it is necessary, what would be the…
Azure Update Management fails for servers behind Log Analytics Gateway
Hello, Since a few days we can't use Update Management anymore on our on-premise servers that they are using a Log analytic Gateway to connect to Azure. The Update Agent readiness shows "Disconnected" for those servers and any update…

Azure AD - Custom Claims for onpremise application authentication.
HI Guys I trying to figureout how I can create the right claim ransformation to send to my onpremise application the value he expected. into the source attribute I choosed User.onpremisesamaccountname but my application expect domain\samaccoutname. …

APIs to monitor pipleine?
Hi, Are there any APIs to monitory Pipeline, Dataflow, Activities in Azure Data Factory? The API can directly be used in .Net application.
How can I check if my parameter consists of one or more attributes?
Hi see attachment When the string of the incoming pipeline parameter contains one attribute I should use byName, otherwise byNames. That that would presume I should build two different flows, which for the rest do the same. How can…
Get-AzureADUser : ProvisioningErrors how to export to “normal readable format
Hi, I know, that I can generate export of provisioning errors with command… $errors = (Get-MsolUser -UserPrincipalName "*****@Xdomain.com").Errors $errors | foreach-object {"`nService: "+…

Microsoft.ReportingServices.ReportViewerControl.WebForms version 150.1404.0
After installing Microsoft.ReportingServices.ReportViewerControl.WebForms version 150.1404.0 via nuget in Visual Studio 16.7.7 when I now run an existing rldc in ProcessingMode.Local I get an error: <Error> <Message>An error has…
B2C - Cannot log out when using the Edge browser
During implementtion of the B2C logout process I used the Chrome browser and it was pretty much trouble free - I used the logout endpoint url as specified in the app registrations section in AAD B2C and added the post_logout_redirect_uri to the end of…

Format for GPS geopoint
I'm sure this should be really simple to find but i can't see this info anywhere. What is the required format for the location property on Iot Central? I can see it is geopoint but i have formatted my data as per the below and this doesn't work: …

Not able to execute AZ comments using System.Management.Automation lib in IIS
i wanted to execute the az login using System.Management.Automation. its working in my local. when i tried to deploy the same in web server, the system is not recognizing AZ comments, Note: I've already installed AZ cmdlets public class ValuesController…

Azure Identity Protection
How Microsoft interprets the Password Spray Attack. After checking the alert what all relevant information we should check if there is a successful compromise of account. There is no sufficient evidence from Microsoft about the Password spray Attack

AD B2C ROPC JavaScript Token Retrieval
I have Azure AD B2C and a Blazor Server-side app with a Login page. I created a ROPC Custom Policy and tested with Postman and it retrieves the token with the claims correctly. But when I want to retrieve the token from the browser with JavaScript to the…

How to get data for missing months
Hi, Below is my DDL CREATE TABLE #Temp ( Id INT, ReportMonth int, ReportQuarter int, PaymentAmount MONEY ) INSERT INTO #Temp VALUES (123,1,1,25), (123,3,1,50),(123,4,2,50),(123,5,2,50),(135,1,1,50),(135,4,2,50) …