Sql Server 2019 Polybase feature issue

4k Views Asked by At

I'm trying to configure PolyBase on SQL Server 2019 to test some new features.

I already installed this feature and performed all steps from below instruction:
Install PolyBase on Windows

I get an error notification when trying to configure connection to external table in Azure Data Studio:

Azure Data Studio error

I cannot start the SQL Server PolyBase Engine service, maybe it has something to do in this case:

Sql Server Configuration Manager error

Any ideas how to configure it properly to use PolyBase?

2

There are 2 best solutions below

0
On

You need to enable TCP/IP for this SQL Server before starting the services

0
On

You need to:

  • enable TCP/IP as network protocol for your SQL Server instance.
  • Restart the SQL Instance Restart the Polybase services.
  • Enable PolyBase on the instance: exec sp_configure @configname = 'polybase enabled', @configvalue = 1; RECONFIGURE;.

You can read more about this in following two blog posts: