英文:
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.
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] <project> [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 "cat1/subcat2" 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).
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论