How to fix error "SQL Server Reporting Services Shared Service cannot load the TERADATA extension"

I saw this Even viewer error "SQL Server Reporting Services Shared Service cannot load the TERADATA extension". I fixed them by using following Powershell script.

//Run below powershell script

$ssrs = Get-SPRSServiceApplication

foreach ($app in $ssrs) 
{
        Write-host -ForegroundColor "yellow" Service App Name $app.Name $ssrs.id

        Get-SPRSExtension -identity $app -ExtensionType “Data” | select name,extensiontype | Format-Table -AutoSize

           Remove-SPRSExtension -Name "TERADATA" -ExtensionType "Data" -Identity $app

}

This post is part of my project "Implement the Business Intelligence On Premises SharePoint 2013 Portal".

Comments

Popular posts from this blog

Top JavaScript courses helping you develop SPFx webPart with ReactJS and AngularJS

Effective LLM Prompting skills

How to replace the OOTB SharePoint Help with your custom help page