Search found 6797 matches

by DSguru2B
Fri May 04, 2007 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mainframe and Datastge
Replies: 7
Views: 1799

That wont change the nature of the signed packed fields. The packed fields can be handled by the CFF stage. Use that.
by DSguru2B
Fri May 04, 2007 6:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job locked
Replies: 18
Views: 6670

ray.wurlod wrote:...the child processes turn into zombies, which are very difficult to kill.

That almost sounded like a dialogue from "Resident Evil". :wink:
by DSguru2B
Fri May 04, 2007 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Conversion
Replies: 24
Views: 6450

The previous phenomenon that the OP was experiencing was weird. As in, sending the date in internal format. You guys think its possible that since the column type is set as "Date", the DSEngine takes the internal conversion and changes to the right format :shock: ?
by DSguru2B
Thu May 03, 2007 1:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Conversion
Replies: 24
Views: 6450

Change it to YYYY-MM-DD format using ICONV/OCONV and then send it to oracle as date.
by DSguru2B
Thu May 03, 2007 1:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Command Stage Help
Replies: 3
Views: 752

Can you execute the batch script residing on the remote server from your datastage server, via command line, using rsh? If you can then you definately can specify that command in your execute command stage.
by DSguru2B
Thu May 03, 2007 11:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Type of System
Replies: 4
Views: 1414

Almost all unix systems are SMP. If your system has 2 or more cpu's then its SMP. MPP is more of an architecture towards an application. Each system can have multiple CPUs, you can have many such systems connected to run one application which is broken into many sub processes running at the same tim...
by DSguru2B
Thu May 03, 2007 11:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage fetches only 1 row
Replies: 9
Views: 1214

Is this the only job thats behaving like this. If yes then I have no idea whats going on, without further detective work. Delete the job and rebuild it. See if this behaviour goes away.
by DSguru2B
Thu May 03, 2007 10:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage fetches only 1 row
Replies: 9
Views: 1214

When you view data, make sure your Skip Count is set to 0 and Period is set to 1.
by DSguru2B
Thu May 03, 2007 9:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: capture SQL error code
Replies: 2
Views: 730

DB2 API does not support reject links. Only enterprise stages do. User DB2 Enterprise stage to capture rejects in a PX job. In a server job you can only capture rejects using the transformer. Right click on the extended expression window, go to Link Variables and select Output . There extend the lin...
by DSguru2B
Thu May 03, 2007 9:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: mv Command again
Replies: 3
Views: 815

To move a directory you can use the mv command

Code: Select all

mv dir1 dir2

As far as ftp is concerned, I doubt it. But you can ftp all the files within a directory.
by DSguru2B
Thu May 03, 2007 9:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: idea on implementing process flow (higher level question)
Replies: 7
Views: 1464

a) They should be able to capture the sysout. I know ControlM does. b) Correct, double check with your scheduling group about the return codes. c) dsjob -run, if successful will return exit code of 0. 2 means something went wrong in the command itself. Now if you want the jobstatus then you need to ...
by DSguru2B
Thu May 03, 2007 9:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing to the same file in the same job
Replies: 13
Views: 3697

Guess what, you are right, funny ideas keep popping in my head :oops:
by DSguru2B
Thu May 03, 2007 9:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage fetches only 1 row
Replies: 9
Views: 1214

WHat happens when you run the job. Do all the records get processed?
by DSguru2B
Thu May 03, 2007 9:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing to the same file in the same job
Replies: 13
Views: 3697

I know I contradicted myself as the second thought came up. When you have two links going out to the same file and you have links ordered, then a single row will go through the first link first and then to the second link (round robin). This way each record will be appended to a file, one at a time....
by DSguru2B
Thu May 03, 2007 8:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call stored procedure
Replies: 1
Views: 1051

Did you try searching my friend. Its all here, covered before, along with syntax.