Search found 15603 matches

by ArndW
Tue Sep 11, 2007 6:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with appending the seq file
Replies: 7
Views: 1347

Ok, I should have stipulated "you cannot have 2 links writing to the same sequential file in the manner you have shown" :)
by ArndW
Tue Sep 11, 2007 5:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: The source and destination have differing nullability.
Replies: 6
Views: 8533

Can you try adding an explicit "CAST(<type> AS NULLABLE INT32)"
by ArndW
Tue Sep 11, 2007 5:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: resetting the job
Replies: 9
Views: 2185

I would recommend using the DSPrepareJob() routine call in this case, it will reset the job if necessary.
by ArndW
Tue Sep 11, 2007 5:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How delete Datasets
Replies: 4
Views: 1530

Raghavendra - Even though you can do that, you don't need to. The descriptor file contains a copy of the configuration file used to create that dataset, and it can be used to locate the appropriate directories for the part files.
by ArndW
Mon Sep 10, 2007 11:54 pm
Forum: General
Topic: Regarding Executing jobs in Unix
Replies: 16
Views: 4573

That means that the $DSHOME/bin directory is not in your environment's path; execute the `$DSHOME/bin/dsjob' command.
by ArndW
Mon Sep 10, 2007 11:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with appending the seq file
Replies: 7
Views: 1347

You cannot have 2 links writing to the same sequential file. Make both links go to a link collector and then have one link append to your sequential file.
by ArndW
Mon Sep 10, 2007 10:25 pm
Forum: General
Topic: Regarding Executing jobs in Unix
Replies: 16
Views: 4573

Your command will not work.

try

Code: Select all

dsjob -run -mode NORMAL ric_dss_dev J0dsjob
by ArndW
Mon Sep 10, 2007 9:56 pm
Forum: General
Topic: Regarding Executing jobs in Unix
Replies: 16
Views: 4573

You need to include "-mode NORMAL" in the command line as well.
by ArndW
Mon Sep 10, 2007 8:42 pm
Forum: General
Topic: Sequential File Stage Reader
Replies: 2
Views: 986

Hota, Since the first two lines have a different number of columns to the rest, you can do this with a reject link in your source sequential stage that just dumps those rows into a dummy terminating copy stage. I am not sure from your data if you have tab delimiters or backslash delimiters, plus the...
by ArndW
Mon Sep 10, 2007 3:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Varchar to smallint
Replies: 1
Views: 1247

If the contents of the VarChar() field are actually numeric, then this conversion will function correctly and implicitly.
by ArndW
Mon Sep 10, 2007 3:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performace issue in job sequence run
Replies: 3
Views: 964

Along the same lines, check to see how big the log files of the 2 jobs in question are; purge them if necessary or ensure that the autopurge settings are enabled.
by ArndW
Sun Sep 09, 2007 9:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify stage implicit conversion
Replies: 4
Views: 1600

Did you confuse Part_Num with Conv_Part_Num? Your posted derivation indicates you are creating Part_Num in the modify stage.
by ArndW
Sun Sep 09, 2007 8:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify stage implicit conversion
Replies: 4
Views: 1600

Hello and welcome to DSXchange!

In your Join_68 stage you have declared Conv_Part_Num to be 36 long when in reality it is coming in as 50. Your modify stage has nothing to do with that error.
by ArndW
Sun Sep 09, 2007 4:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs have become invisible!!
Replies: 17
Views: 7278

abc123, All posts that I see regarding re-indexing as well as the command itself state that all users need to be logged out in order for the command to work correctly. I don't see how you can state that the posts in DSXchange got you into trouble. You still haven't stated what else you have done, pe...
by ArndW
Thu Sep 06, 2007 10:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running multiple job params at the same time
Replies: 1
Views: 681

dsjob -run -mode NORMAL -param Name=MyName -param Path=/sample/path {project} {job}