0

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?

jarlh
  • 42,561
  • 8
  • 45
  • 63

2 Answers2

0

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

PBVK
  • 1
0

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:

Francesco Mantovani
  • 10,216
  • 13
  • 73
  • 113
Niels Berglund
  • 1,713
  • 8
  • 6