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
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