informatica powercenter FTP 问题

发布于 2024-09-28 12:56:56 字数 227 浏览 0 评论 0原文

我在 FTP 上遇到问题,我想知道如何解决,以及以下情况的最佳选择。

我正在处理一个通过 FTP 连接并获取文件的进程,使用 Informatica Powercenter 上的 JMS。

我想知道是否有一种方法可以通过 unix 脚本获取连接有问题的日志并重新运行该进程,

或者

我想知道是否有一种方法可以检测 INFORMATICA 上的问题工作流程本身并重新运行该流程。

I'm facing an issue on a FTP I would like to know how, and the best option for the below situation.

I'm dealing with a process that connects via FTP and gets a file, using JMS on Informatica Powercenter.

I would like to know if there is a way to get the log saying that there was a problem on the connection and rerun the process, via a unix script

or

I would like to know if there is a way to detect the issue on the INFORMATICA Workflow itself and rerun the process.

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

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

发布评论

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

评论(2

棒棒糖 2024-10-05 12:56:56

我使用 SCP 并且从来没有遇到过问题,例如:

scp username@ host:Sourcefile Destinationfile
if [ $? = 0 ]
then
echo "Connected and copied the file”
else
echo "ERROR in copying the file using SCP "
fi

I use SCP and i never have problems, ex:

scp username@ host:Sourcefile Destinationfile
if [ $? = 0 ]
then
echo "Connected and copied the file”
else
echo "ERROR in copying the file using SCP "
fi
反话 2024-10-05 12:56:56

或者 grep 查找工作流程/会话日志文件中的特定错误消息/代码。如果grep返回一些东西,那么就有问题了。

在工作流中的会话结束后,您有一个命令行任务,然后执行此操作。

Alternatively grep for particular ERROR message/code in the workflow/session log file. If the grep returns something then there is a problem.

You have have a command line task after your session in the workflow and then perform this action.

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