SQL Server 2019 Polybase 创建外部 Table 错误 "This operation requires PolyBase to be enabled in the target server"
SQL Server 2019 Polybase Create External Table error "This operation requires PolyBase to be enabled in the target server"
我正在使用 SQL Server 2019 预览版 (15.0.1000.34),我希望在 localhost/SQL2019 命名实例 (Windows 10) 和 Azure Data Studio 上安装 Polybase 服务从 Oracle 数据库(远程服务器)添加外部 Table 并收到错误 "This operation requires PolyBase to be enabled in the target server"。 "SQL Server PolyBase Data Movement (SQL2019)" 和 "SQL Server PolyBase Engine (SQL2019)" 服务在我的笔记本电脑上实际上是 运行。我尝试重新启动计算机,但问题仍然存在。
有谁知道从 Azure Data Studio 创建外部 Table 还需要采取哪些其他操作?
我附上来自 Data Studio 和服务管理器的屏幕截图,最后一个是俄语,但 3 服务的状态意味着 "Running"。
您需要这样做:
-- 将 polybase 值更改为 1
exec sp_configure @configname = 'polybase enabled', @configvalue = 1;
RECONFIGURE;
--重新检查polybase特征
exec sp_configure 'polybase enabled';
那么应该可以了。
我的累积更新 SQL 服务器补丁更新期间出现了类似措辞的问题。
SQLPBDMS SQLPBENGINE 无法重启卡在启动服务状态。由于SQL,累积更新和服务补丁将无法完成服务器 PolyBase 引擎服务在 SQL 服务补丁更新期间未重新启动。
解决方案: 确保 SQL 服务器配置管理器 将 TCP/IP 显示为启用的协议您的 SQL 服务器实例。
SQL 服务器配置管理器通常可以在 "Computer Management" 实用程序中看到。
我正在使用 SQL Server 2019 预览版 (15.0.1000.34),我希望在 localhost/SQL2019 命名实例 (Windows 10) 和 Azure Data Studio 上安装 Polybase 服务从 Oracle 数据库(远程服务器)添加外部 Table 并收到错误 "This operation requires PolyBase to be enabled in the target server"。 "SQL Server PolyBase Data Movement (SQL2019)" 和 "SQL Server PolyBase Engine (SQL2019)" 服务在我的笔记本电脑上实际上是 运行。我尝试重新启动计算机,但问题仍然存在。
有谁知道从 Azure Data Studio 创建外部 Table 还需要采取哪些其他操作?
我附上来自 Data Studio 和服务管理器的屏幕截图,最后一个是俄语,但 3 服务的状态意味着 "Running"。
您需要这样做: -- 将 polybase 值更改为 1
exec sp_configure @configname = 'polybase enabled', @configvalue = 1;
RECONFIGURE;
--重新检查polybase特征
exec sp_configure 'polybase enabled';
那么应该可以了。
我的累积更新 SQL 服务器补丁更新期间出现了类似措辞的问题。
SQLPBDMS SQLPBENGINE 无法重启卡在启动服务状态。由于SQL,累积更新和服务补丁将无法完成服务器 PolyBase 引擎服务在 SQL 服务补丁更新期间未重新启动。
解决方案: 确保 SQL 服务器配置管理器 将 TCP/IP 显示为启用的协议您的 SQL 服务器实例。
SQL 服务器配置管理器通常可以在 "Computer Management" 实用程序中看到。