Forum Discussion
gadeynebram
May 28, 2025Copper Contributor
2025 Preview, Polybase unsupported connector location prefix
I've installed the preview version of SQL Server 2025 with Polybase enabled. We're currently using it on SQL Server 2022. Every variant I've tried to add a datasource results in the same error (e.g...
- Jun 02, 2025
Never mind, there are 2 settings to enable polybase. I was checking SERVERPROPERTY ('IsPolyBaseInstalled') but I forgot to also enable it
exec sp_configure @configname = 'polybase enabled', @configvalue = 1; RECONFIGURE;
gadeynebram
Jun 02, 2025Copper Contributor
Never mind, there are 2 settings to enable polybase. I was checking SERVERPROPERTY ('IsPolyBaseInstalled') but I forgot to also enable it
exec sp_configure @configname = 'polybase enabled', @configvalue = 1; RECONFIGURE;