While scheduling refresh in Power BI, you might get below error . Issue: Unable to convert the value '<pii></pii>' from the source data type 'VT_BSTR' to the expected data type 'VT_I8 . Cause/Reason Behind: Column datatype mismatch between power bi desktop and power bi cloud report. Solution: Edit query in power bi desktop and change the data type so it’s in sync with Power BI service/cloud. Example: In my case, I have modified a column’s datatype from decimal to whole number (to display no. of days). Now power bi desktop and power bi service synced up and I could perform automatic data refresh.
Sometime back in my project , I couldn't deploy wsp packages anymore. After some analysis found there are lot of one time job were running and it was blocking wsp deplopyment. Here I have provided the steps to resolve it, - In Central Admin checked in Farm Solution Management the status was stuck on Deploying - Stopped the SharePoint Admin and SharePoint Timer services - Checked and found multiple One-time jobs, deleted those using the scripts below: - Get-SPTimerJob | where{$_.DisplayName -eq $null} | foreach-object {$_.Delete()}Get-SPTimerJob | where{$_.schedule.description -eq "One-time"} | ForEach-Object{$_.Delete()} - Checked if the timer service is ON using the script - $farm = Get-SPFarm - $disab...
Situation : Created a web application and chosen “Default zone” for Trusted Identify Provider authentication “iTrust” – (SAML Authentication) Note: Trusted Identity Provider Authentication enables federated users in this Web application. This authentication is Claims token based and the user is redirected to a login form for authentication. Issue: Site is working fine but “Search” didn’t work. When checked for the reason, found that the default zone should be windows authentication which makes ‘Search” work. Resolution: - - Need to create standard default zone windows authentication (Though this is not required – as the site created is for federated authenticated external users with SAML authentication). - - Then extend the windows default zone application into Trusted Identity provider “Extranet/Any available zone” site. Step1: Default zone windows authenticat...
Comments
Post a Comment