0

我尝试通过 Polybase 将我的 SQL Server 2019 连接到 Oracle。

4/15/2020 1:25:51 PM [Thread:5816] [NativeOdbcConnection:InformationEvent] (Info, Normal): NativeOdbcConnection.Open, ConnectionString: Driver={PolyBase ODBC Driver for Oracle};encryptionlevel=3;arraysize=1048576;enablencharsupport=1;uid=ùser;hostname=192.1.1.100;port=1521;servicename=ORACLE, CreateOptions: ReadExternal, PacketSize: 0, EnableConnectionPooling: True, TransactionPropagationToken: null, ResourceGroup: null [Session.SessionId:SID8][Session.IsTransactional:False][Query.QueryId:QID12]
4/15/2020 1:25:51 PM [Thread:5816] [EngineInstrumentation:EngineQueryErrorEvent] (Error, High): 
Microsoft.SqlServer.DataWarehouse.Common.ErrorHandling.MppSqlException[105082:1]: 105082;Generic ODBC error: [Microsoft][ODBC Oracle Wire Protocol driver][Oracle]ORA-12660: Encryption or crypto-checksumming parameters incompatible Additional error <2>: ErrorMsg: [Microsoft][ODBC Oracle Wire Protocol driver][Oracle]ORA-12660: Encryption or crypto-checksumming parameters incompatible, SqlState: HY000, NativeError: -1 .

我已经卸载了 polybase 服务并重新安装了它。我还将我的 SQL Server 更新到了最新的 CU。

从服务器本身,我无法通过 odbc 或 DBEAVER 毫无问题地连接到 oracle 服务器本身。

感谢您的任何提示

4

2 回答 2

0

包括

    CONNECTION_OPTIONS = 'EncryptionLevel=1, DataIntegrityLevel=1'

在 CREATE EXTERNAL TABLE 命令中。

于 2020-05-25T18:40:55.977 回答
0

似乎我们需要将额外的 SQLNET 参数传递给连接

长时间搜索表明我们应该使用

CONNECTION_OPTIONS = 'DataIntegrityLevel=1'
于 2020-05-25T15:55:21.623 回答