Search found 65 matches

by djm
Tue Oct 25, 2005 4:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Profile all Jobs end-to-end
Replies: 16
Views: 13350

Zip file to replace horrendous code posting.

As per Kim's suggestion, listing the code was pretty horrendous. If you want the objects and spreadsheet in one, download the zip file.

Sorry Kim - it's late (nearly midnight). Amended the post.
by djm
Tue Oct 25, 2005 4:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Profile all Jobs end-to-end
Replies: 16
Views: 13350

Following suggestion in next reply and deleted code posting. Replaced with links to code at own web site.
by djm
Tue Oct 25, 2005 4:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Profile all Jobs end-to-end
Replies: 16
Views: 13350

Profile all Jobs end-to-end

Want to profile your end-to-end DataStage processing to see potential bottlenecks? Seeing significantly day-to-day variations in your end-to-end job completion time? Having to undertake performance impact testing in a test environment prior to deployment to your production environment without having...
by djm
Tue Oct 18, 2005 4:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conditionnal update
Replies: 5
Views: 2011

How about something like:

Code: Select all

Transform ---- (Constraint: Type = 'NAT') ----> OCI
  |                                              ^
  --------------(Constraint: Type = 'REG') ------|
The OCI then executes an update statement appropriate to each link.

David
by djm
Tue Oct 18, 2005 4:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Director Log
Replies: 14
Views: 5739

Hermant, using the XML from the post should be fairly straight forward. For each block of code in the post: 1) highlight the code and copy it 2) paste it into notepad 3) save the file with a distinct name Then use the import functionality within DataStage manager and pick the XML files one by one. D...
by djm
Tue Oct 18, 2005 3:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Director Log
Replies: 14
Views: 5739

import it with a same name - do you mean the file or the routine? You are able to name the file anything you want. Similarly, if you want just the routine, you could manually edit the XML and change the name, should it clash with a routine that you already have. I recommend that you import each of ...
by djm
Tue Oct 18, 2005 2:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformation Rows to columns
Replies: 4
Views: 2043

And if you can't find it in the forum, one possible solution is the UNIX "paste" command. Try "man paste" for an explanation.
by djm
Tue Oct 18, 2005 2:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Director Log
Replies: 14
Views: 5739

If you want to get a dump of the entire log ...

Try this thread: viewtopic.php?t=95633. It provides you with the ability to dump the content of the log to a flat file. This may be what you are after.

David
by djm
Mon Oct 17, 2005 1:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Log - get the entire content using DS job
Replies: 12
Views: 14778

Check (a) which routine version and (b) only job running

I don't see -13s any more. I did at one stage but I think it was a bug in the initial version(s?) of JobLogGet. I deployed an update to it on Oct 7th. Did you obtain a version prior to then? Is so, could you try getting the most recent version of the routine and see if it helps? Plus there was a min...
by djm
Thu Oct 13, 2005 7:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Omit last record from a sequential file
Replies: 13
Views: 11235

A minor refinement to the grep suggestion. Something like the following:

Code: Select all

grep -v -e '^[0-9]*\|TRA\|END$'
would output everything bar that which matches the format of the trailer record, so TRA could appear in other data records.
by djm
Wed Oct 12, 2005 11:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Log - get the entire content using DS job
Replies: 12
Views: 14778

I think I see a -13 when the most recent action on the job is that is was compiled. I'll have a nosey and see if I can find out more about where the -13 is coming from, but it might not be until next week, as we have an office move on tomorrow.

David
by djm
Mon Oct 10, 2005 1:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: get the job status on UNIX cmd-line ?
Replies: 11
Views: 5096

This thread viewtopic.php?t=95633 may provide you with what you are looking for. It contains a number of DS objects which, when imported into DS, allow you to dump the content of the job log.

HTH.

David.
by djm
Wed Oct 05, 2005 2:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multi lines --> single line ?
Replies: 8
Views: 2977

One option may be the Unix "paste" command. You can use it to roll-up multiple lines of data into a single line (I'm assuming that there are a consistent number of rows per set to be rolled up). I don't have a Unix command session on hand to try this but some variation on paste -s -d '\t\t...
by djm
Mon Oct 03, 2005 2:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Log - get the entire content using DS job
Replies: 12
Views: 14778

Using this job is (meant to be) fairly straight forward. There are five parameters: JOB_NAME_MATCH Specifies a pattern which jobs' name should match to be included in the output. Use ... to obtain all jobs. EXCLUDED_JOBS_LIST A comma separated list of job names that are excluded from the output. EXC...
by djm
Mon Oct 03, 2005 1:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Log - get the entire content using DS job
Replies: 12
Views: 14778

The final object is a job that actually uses the shared container. I'll post this, have some dinner, and then follow up with a brief description of using this job. <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE DSExport [ <!ELEMENT DSExport (Header, (Job | SharedContainer | Dat...