从 SAS 执行 Teradata 存储过程

发布于 2024-11-09 13:27:10 字数 226 浏览 0 评论 0原文

我正在尝试从 SAS 执行 Teradata 存储过程,但未能找到正确的语法, 这是我尝试过的示例:

libname tbconn teradata server =“10.11.18.15”database =“yy”user = x pw = xx; 执行 tbconn.ProcedureName(日期 '2011-03-31');

我还尝试使用调用命令而不是执行,但它也不起作用。 任何想法的人。

I'm trying to execute Teradata stored procedure from SAS ,but am failed to find the correct syntax,
here is example of what i tried:

libname tbconn teradata server="10.11.18.15" database="yy" user=x pw=xx;
execute tbconn.ProcedureName(date '2011-03-31');

and i also tried to use call command instead of excecute but it didnt work also.
any idea people.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我一直都在从未离去 2024-11-16 13:27:10

您是否尝试过以下操作:

libname tbconn teradata server="10.11.18.15" database="yy" user=x pw=xx; call <databaseowner>.ProcedureName(date '2011-03-31');

其中 是 Teradata 上存储过程所在的数据库。我不确定您的示例中的 database="yy" 是否与可以找到存储过程的数据库相同。

编辑:
传递到数据库的 SQL 是否需要包装在 SAS 上的 EXECUTE 函数之类的东西中? EXECUTE(call.();) BY tbconn;

Have you tried the following:

libname tbconn teradata server="10.11.18.15" database="yy" user=x pw=xx; call <databaseowner>.ProcedureName(date '2011-03-31');

Where <databaseowner> is the database where the stored procedure is located on Teradata. I'm not sure if database="yy" in your example is the same database where the stored procedure can be found or not.

Edit:
Does SQL that is passed-through to the database need to be wrapped in something like an EXECUTE function on SAS? EXECUTE(call <db>.<procedure>(<param>);) BY tbconn;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文