将数据从 SAS 加载到 Teradata - 什么时候准备好?

发布于 2024-07-26 14:06:34 字数 244 浏览 7 评论 0原文

将表从 SAS 加载到 Teradata 时,SAS 加载数据(通常使用 FASTLOAD 工具),然后继续执行脚本。 但是,我经常遇到严重错误,因为 SAS 表示数据已加载,但 Teradata 仍在表中组装数据。

所以数据在数据库中,但还没有准备好使用。 我还没有找到一种方法来知道数据是否准备好与其他表一起处理。 我已经成功地使用了睡眠命令,但这是任意且不可靠的(因为谁知道它需要多长时间)。

您将如何解决这个问题?

When loading tables from SAS to Teradata, SAS loads the data (usually using the FASTLOAD facility) and then continues down the script. However, I often get critical errors because SAS says the data is loaded, but Teradata is still assembling the data within the table.

So the data is in the database, but not ready to be used. I have yet to find a way to know if the data is ready for processing with other tables. I have been successful at using a sleep command, but that is arbitrary and unreliable (because who knows how long it will take).

How would you fix this problem?

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

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

发布评论

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

评论(3

孤独患者 2024-08-02 14:08:54

完善乔恩的答案,您可能需要查看查询处理是否已结束。

我不熟悉 Teradata,但据说必须有一个列出活动进程的系统表。 可以使用 SQL 传递来查询当前进程。

Refining Jon's answer, you might want to look at querying whether the processing has ended.

I'm not familiar with Teradata, but supposedly there has to be a systems table listing active processes. It might possible to use pass through SQL to query get the current processes.

你的笑 2024-08-02 14:08:31

您可以睡觉,尝试查询,捕获任何错误并循环直到准备好吗?

Could you sleep, try to query, catch any error and loop until ready?

忆梦 2024-08-02 14:08:07

我会尝试以下操作:

  1. 测试是否 DBCOMMIT = 数据集选项可以提供帮助
  2. 如果 1. 没有帮助,请使用循环 OPEN 函数来查询表是否准备好,如下所示:

    <前><代码>数据_null_;
    dsid=0;
    i=1 到 3600 while(dsid<=0);
    ts=睡眠(1,1);
    dsid=OPEN('TERADATA.MYTABLE','I');
    结尾;
    如果 dsid 则 dsid=CLOSE(dsid);
    跑步;

I would try the following:

  1. Test if the DBCOMMIT= data set option can help
  2. If 1. doesn't help, use a loop over the OPEN function to query if the table is ready, like this:

    data _null_;
      dsid=0;
      do i=1 to 3600 while(dsid<=0);
         ts=SLEEP(1,1);
         dsid=OPEN('TERADATA.MYTABLE','I');
      end;
      if dsid then dsid=CLOSE(dsid);
    run;
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文