ERROR [08S01] Communication link failure while inserting data in to external table in netezza

后端 未结 2 1886
感情败类
感情败类 2021-01-22 11:46

I am trying to load data from text file to External table in Netezza.

Here is my command

INSERT INTO XTABLE_DHARMESH SELECT * FROM EXTE         


        
相关标签:
2条回答
  • 2021-01-22 12:14

    I have found in Windows 7 and Windows Server 2008 R2 TCP Chimney Settings were the culprit.

    http://blogs.dirteam.com/blogs/sanderberkouwer/archive/2008/05/15/backward-compatible-networking-with-server-core.aspx

    The Follwing Commands Fixed this issue for me:

    netsh interface tcp set global rss=disabled
    netsh interface tcp set global chimney=disabled
    netsh interface tcp set global autotuning=disabled 
    

    You can confirm that they were disabled with the following command

    netsh int tcp show global
    
    0 讨论(0)
  • 2021-01-22 12:36

    Unfortunately this happens when using older firmware and ODBC drivers. It was fixed in Netezza firmware 7.0

    0 讨论(0)
提交回复
热议问题