基于Windows测试GPLOAD时的错误



当我尝试从Windows的ETL主机执行GPLOAD时。

在Windows环境中使用GPLOAD会产生以下错误:

错误我获取:

gpload.py -f gpload.yml

gpload was unable to import The PyGreSQL Python module (pg.py) - DLL load failed with error code 193

您应该检查pygresql是否正确安装。因为从gpload代码

try:
    from pygresql import pg
except Exception, e:
    errorMsg = "gpload was unable to import The PyGreSQL Python module (pg.py) - %sn" % str(e)
    sys.stderr.write(str(errorMsg))
    sys.exit(2)

我们可以知道这是关于导入pygresql的错误(是否安装,版本是对的?)。如果PygresQL正确安装了Python版本或路径是正确的吗?请检查它们。

相关内容

  • 没有找到相关文章

最新更新