我想复制DataStage Designer中的作业名称。

huangapple go评论51阅读模式
英文:

I want to copy job names in datastage designer

问题

我想复制DataStage Designer中的作业名称。
使用'Ctrl+C'和'Ctrl+V'无效。如何复制作业名称?也适用于工具栏中。

英文:

I want to copy job names in datastage designer
It doesn't work using 'Ctrl+C' and 'Ctrl+V'. How can I copy job names? also In pallete too.

我想复制DataStage Designer中的作业名称。

Find in DATASTAGE Tutorial

答案1

得分: 0

列出按名称和类别分类的作业

您可以使用命令行界面中的dssearch命令列出作业(就像它们在设计时出现的那样):

dssearch -ljobs -matches -sub [category] [-oc] [-oj] <project> [job]

  • sub类别是您想要搜索的“文件夹”。省略以在整个项目中搜索。
  • oc 启用打印出类别
  • oj 启用打印出作业类型

示例:

  • dssearch -ljobs -matches -sub pr01 列出项目pr01的所有作业。
  • dssearch -ljobs -matches -sub "cat1/subcat2" pr01 CopyOf* 列出项目pr01路径为“cat1/subcat2”,以“CopyOf*”开头的所有作业。

> dssearch命令列出项目中所有作业,就像它们在设计时出现的那样。如果您需要按运行时状态查找作业,请使用dsjob -ljobs命令
> 请注意,dssearch的文档在版本8.5后消失,但根据我的经验,它仍然存在并且在版本11.7时仍然可用。

英文:

Listing jobs by Name and Category

You can list jobs (as they appear in design time) using the dssearch command at the command line interface:

dssearch -ljobs -matches -sub [category] [-oc] [-oj] &lt;project&gt; [job]

  • sub The category is the "folder" you want to search in. Omit to search the entire project.
  • oc enables to print out the category
  • oj enables to print out the job type

Examples:

  • dssearch -ljobs -matches -sub pr01 lists all jobs of project pr01.
  • dssearch -ljobs -matches -sub &quot;cat1/subcat2&quot; pr01 CopyOf* lists all jobs of project pr01 in the path "cat1/subcat2" beginning with "CopyOf*".

> The dssearch command lists all jobs in the project as they appear in design time. If you need to find jobs by runtime status, use the dsjob -ljobs command.
> Note that the documentation for dssearch disappeared since version 8.5, but from my experience it still exists and works (as of version 11.7).

huangapple
  • 本文由 发表于 2023年5月11日 17:31:19
  • 转载请务必保留本文链接:https://go.coder-hub.com/76226141.html
  • datastage
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定