1

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

gnc
  • 25
  • 2

1 Answers1

0

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).

Justus Kenklies
  • 440
  • 3
  • 10