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".
//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
Post a Comment