简体   繁体   English

Sql Server 2019 Polybase 功能问题

[英]Sql Server 2019 Polybase feature issue

I'm trying to configure PolyBase on SQL Server 2019 to test some new features.我正在尝试在 SQL Server 2019 上配置 PolyBase 以测试一些新功能。

I already installed this feature and performed all steps from below instruction:我已经安装了此功能并执行了以下说明中的所有步骤:
Install PolyBase on Windows 在 Windows 上安装 PolyBase

I get an error notification when trying to configure connection to external table in Azure Data Studio:尝试在 Azure Data Studio 中配置与外部表的连接时收到错误通知:

Azure 数据工作室错误

I cannot start the SQL Server PolyBase Engine service, maybe it has something to do in this case:我无法启动 SQL Server PolyBase Engine 服务,在这种情况下可能与此有关:

Sql Server 配置管理器错误

Any ideas how to configure it properly to use PolyBase?任何想法如何正确配置它以使用 PolyBase?

在启动服务之前,您需要为此 SQL Server 启用 TCP/IP

You need to:你需要:

  • enable TCP/IP as network protocol for your SQL Server instance.启用 TCP/IP 作为 SQL Server 实例的网络协议。
  • Restart the SQL Instance Restart the Polybase services.重新启动 SQL 实例 重新启动 Polybase 服务。
  • Enable PolyBase on the instance: exec sp_configure @configname = 'polybase enabled', @configvalue = 1; RECONFIGURE;在实例上启用 PolyBase: exec sp_configure @configname = 'polybase enabled', @configvalue = 1; RECONFIGURE; exec sp_configure @configname = 'polybase enabled', @configvalue = 1; RECONFIGURE; . .

You can read more about this in following two blog posts:您可以在以下两篇博文中阅读有关此内容的更多信息:

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在 SQL Server 2019 中安装 PolyBase 时出错 - Error during PolyBase installation in SQL Server 2019 SQL Server 2019 Polybase 创建外部表错误“此操作需要在目标服务器中启用 PolyBase” - SQL Server 2019 Polybase Create External Table error "This operation requires PolyBase to be enabled in the target server" PolyBase 基于 SQL 服务器 2019:IBM DB2 外部表 - PolyBase on SQL Server 2019: IBM DB2 External tables 使用PolyBase从SQL Server创建外部表到hadoop的问题 - Issue creating external tables from sql server to hadoop using polybase 是否可以在 SQL Server 2019 中为 Polybase 外部表设置行级安全性? - it's possible do Row Level Security for Polybase external table in SQL Server 2019? SQL Server 2019 Polybase MongoDB 在外部表中找不到用户定义的列 - SQL Server 2019 Polybase MongoDB user defined column was not found in the external table 使用hadoop的SQL Server 2016多基础错误 - SQL Server 2016 polybase error using hadoop SQL 服务器 Polybase:110064;Windows 身份验证失败 - SQL Server Polybase: 110064;Windows authentication failed CData ODBC 驱动和 SQL 服务器 Polybase - CData ODBC driver and SQL Server Polybase developer 2019 安装中缺少 sql server 集成服务功能 - sql server integration services feature missing from developer 2019 installation
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM