Polybase feature is not enabled

Surendra Adhikari 21 Reputation points
2021-03-19T08:55:03.687+00:00

I tried to execute the following:
EXEC sp_polybase_join_group

but the following error occured:
This stored procedure is not available because Polybase feature is not enabled

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
12,756 questions
0 comments No comments
{count} votes

Accepted answer
  1. Vaibhav Chaudhari 38,606 Reputation points
    2021-03-19T09:03:09.307+00:00

    Try to enable it by running below query

    exec sp_configure @configname = 'polybase enabled', @configvalue = 1;
    RECONFIGURE;
    

    Please don't forget to Accept Answer and Up-vote if the response helped -- Vaibhav

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful