调试 SAS 错误消息“错误:无法从 SAS 元数据存储库检索元数据。”
提交代码时出现上述错误,如下所示:
337 data x;
338 set nz.aa;
ERROR: Cannot retrieve metadata from SAS Metadata Repository.
339 run;
NZ 库位于通过 UNIX(libname 引擎)、SAS 9.1.3 访问的 Netezza 服务器上。我们的登录脚本是自动化的,不易可见。
出现此类消息的最可能原因是什么,和/或如何获得进一步的详细信息?
I get the above error when submitting code as follows:
337 data x;
338 set nz.aa;
ERROR: Cannot retrieve metadata from SAS Metadata Repository.
339 run;
The NZ library is on a Netezza server accessed via UNIX (libname engine), SAS 9.1.3. Our signon script is automated and not easily visible.
What is the most likely cause of such a message, and/or how can further detail be obtained?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我首先检查运行代码的用户是否具有元数据读取该库的权限。对我来说这似乎是最有可能的罪魁祸首。
I'd first check to see that the user running the code has permissions in metadata to read the library. That seems the most likely culprit to me.