Search found 180 matches

by bigpoppa
Wed Dec 03, 2003 8:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential Stage
Replies: 2
Views: 1174

Sequential Stage

Also,

sed '1d;$d' filename >> outfilename

will put all the records in filename except the first and last into outfilename.

-BP
by bigpoppa
Tue Dec 02, 2003 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSExecute in a Sequencer is not executing any command
Replies: 11
Views: 2489

DSExecute in a Sequencer is not executing any command

Nuts! But, thanks for the info.

I actually have several sequencers with similar "execute command" stages that do work, so I guess it's a hit or miss thing.. I wonder why sometimes the stage works and sometimes it doesn't.

- BP
by bigpoppa
Tue Dec 02, 2003 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSExecute in a Sequencer is not executing any command
Replies: 11
Views: 2489

DSExecute in a Sequencer is not executing any command

One of my Job sequences has only one stage: an "execute command" stage that calls a script called #pPathNameScrpt#/#pSed#, where both params are defined in the job properties box. This command never executes when I run the sequencer, though the run log shows the correct command being calle...
by bigpoppa
Tue Dec 02, 2003 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scratch Space Size
Replies: 1
Views: 900

Scratch Space Size

If all you are doing is reading the file, then 30 GB should be enough. If you're doing any hashing and sorting on the file, I would recommend 2x or 3x your file size for swap space.

- BP
by bigpoppa
Tue Dec 02, 2003 3:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Intermittant issues with RSH trying to get Maxsessions
Replies: 2
Views: 527

Intermittant issues with RSH trying to get Maxsessions

Does the user of PX have permission to execute RSH on all of the nodes?

-BP
by bigpoppa
Mon Dec 01, 2003 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How effective DataStage EE on 4 CPU system?
Replies: 10
Views: 3485

Sergey, If you're processing a ton of data, then the more CPUs the better. You will see a marked improvement in performance going from one CPU to four, but you may not see the total improvement that you would like. Sizing your PX job to the best performance is largely a matter of manually increasing...
by bigpoppa
Fri Nov 21, 2003 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use of the 'Release Job' option
Replies: 5
Views: 1558

Use of the 'Release Job' option

One of the DS user's machine crashed while he was doing an export. Because of the crash, two of his DS Server Jobs became locked. The DS Admin tried to release the locks by using the 'release job' option in Manager. However, for both jobs the 'release job' option remained greyed out. We were told by...
by bigpoppa
Thu Nov 20, 2003 12:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HOW CAN I USE BUILDOPS IN PARALLEL???
Replies: 2
Views: 4441

HOW CAN I USE BUILDOPS IN PARALLEL???

A PX buildop is a user-defined c program, written in a PX proprietary style, that does record processing and data transformation. To write one, you will need need to use the PX "New Parallel Stage" option in the Tools stage. The PX documentation should have some good examples of how to bui...
by bigpoppa
Mon Nov 17, 2003 10:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Named pipes in Parallel jobs!!!
Replies: 1
Views: 750

Named pipes in Parallel jobs

It was available in the "import" stage in 6.0. I think the "import" stage was replaced by the sequential file stage in PX, so if the option exists, it should be availabe in the seq file stage.

Can anyone verify this?

BP
by bigpoppa
Mon Nov 17, 2003 10:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error log with column i need help too...
Replies: 3
Views: 3449

error log with column i need help too...

I don't think it's easy to get the DB2 error message for rejects from within PX. My suggestion is that you change your design to: input --> transformer --> sequential_file(s). Then outside of datastage, load DB2 and generate the rejects log. Then, in PX or DS, do: rejects_log --> transformer --> DB2...
by bigpoppa
Fri Nov 14, 2003 12:24 pm
Forum: Enhancement Wish List
Topic: Add "show status" option for DS Sequence jobs..
Replies: 0
Views: 1890

Add "show status" option for DS Sequence jobs..

.. similar to the "performance statistics" availabe for DS Server Jobs.

-BP
by bigpoppa
Fri Nov 14, 2003 12:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: System variable @INROWNUM compare with decimal
Replies: 5
Views: 5602

System variable @INROWNUM compare with decimal

I'm wondering if you need consider the partition number when you use @INROWNUM. Another other thing to try:

Collect all your data into a single stream and see if the same conversion logic yeilds the correct results.
by bigpoppa
Fri Nov 14, 2003 11:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LAPTOP Configuration to replicated ENV...AIX/DB2/DS/PX/QS/
Replies: 9
Views: 3079

LAPTOP Configuration to replicated ENV...AIX/DB2/DS/PX/QS/

I thought PX was being ported to LINUX. If that's happened, you might try to put LINUX on a laptop. Or you could try to cluster 2 linux laptops together. The PX client can sit on any Windows box. It just needs to be able to connect to the server. In that sense, the PX client is mobile. Why are you d...
by bigpoppa
Fri Nov 14, 2003 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Final output in a file greater than 2GB size
Replies: 7
Views: 1847

Final output in a file greater than 2GB size

You can zip your files on output or you could write out a fileset instead of a single file. Writing a fileset is an export option.

-BP