Search found 15603 matches

by ArndW
Fri Sep 11, 2009 4:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to add 2 sequencial files
Replies: 13
Views: 3614

Sainath - cool, I didn't know that command existed!
by ArndW
Fri Sep 11, 2009 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator showing different count for different runs
Replies: 3
Views: 1249

It is in the nature of programs to do the same thing with the same data. If that is not happening, then usually some factor is affecting the outcome. In this case, are you 100% certain that your source dataset has the same cnotents and that every single parameter to the job is the same between runs?...
by ArndW
Fri Sep 11, 2009 4:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to find SoftwareResourceLocator start point
Replies: 6
Views: 1954

an "error like.." is not as helpful as using cut-and-paste and displaying the complete message, particularly when the issue isn't clear as in this case. Also, is this a server or a PX job?
by ArndW
Fri Sep 11, 2009 3:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance Issue
Replies: 5
Views: 1140

Manu1 - You need to find out how many bytes per row your data has and then use the rows/sec value times the number of bytes. Often people say that DS is slow because it is only doing 1000 rows per second - but if each row is 1Mb then the throughput is actually much better than it looks. Thus your co...
by ArndW
Fri Sep 11, 2009 3:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how do i find Project directory using unix command line
Replies: 2
Views: 1369

By default the projects are located in $DSHOME/../Projects/{YourProjectName}. If the projects are located elsewhere, the command

Code: Select all

dssh "LIST UV.ACCOUNT ID.SUP PATH FMT 64L WITH @ID EQ '{YourProjectName}'"
will give the path on line 4 of the output.
by ArndW
Fri Sep 11, 2009 3:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to add 2 sequencial files
Replies: 13
Views: 3614

Create a common column for both files using @INROWNUM and then combine them.
by ArndW
Fri Sep 11, 2009 3:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Empty value in the Source
Replies: 2
Views: 1073

By "tags" do you mean XML-style tags, i.e. <Col></Col>? Or are you just refering to columns that contain no values, i.e. in a comma separated source file

Code: Select all

a,,c,d,,f
where columns B and E have no value?
by ArndW
Fri Sep 11, 2009 3:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue in Reading Data in Sequential file
Replies: 5
Views: 1818

As always when an error message is from the "APT_CombinedOperatorController", add "APT_DISABLE_COMBINATION" to your parameters and set the value to "true" in order to discover the stage causing the problem.
by ArndW
Fri Sep 11, 2009 3:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage
Replies: 8
Views: 5273

www.ibm.com and then go to support. You will need your IBM login id and password and can then search on the eCase/patch number and download from there.
by ArndW
Fri Sep 11, 2009 3:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to run several dssh scripts in one batch
Replies: 8
Views: 3099

How about just using SH scripting
(from UNIX)
cd {project directory}
dssh "SELECT JOBNO FROM DS_JOBS WHERE NAME = 'Test';" > textfile.txt
by ArndW
Fri Sep 11, 2009 3:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Control fatal error (-14)
Replies: 25
Views: 13418

If you look at the dates you would see that this problem is over 3 years old. Patches are generally available for download once you login to IBM's website .
by ArndW
Thu Sep 10, 2009 11:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: remove duplicates using Transformer
Replies: 6
Views: 1500

But since the comparison is done on all 3 sorted columns you won't get duplicates...
by ArndW
Thu Sep 10, 2009 11:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: remove duplicates using Transformer
Replies: 6
Views: 1500

Are all 3 keys supposed to denote the duplicates or just the first or second keys?
by ArndW
Thu Sep 10, 2009 11:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MS Excel file Output
Replies: 10
Views: 3628

Paranoid - in your original post you specified server on "Windows" and all the answers you have gotten so far assumed that Windows was your platform. ODBC to Excel is much more difficult on UNIX, and DSGuru2B's response also assumes a Windows platform. DataStage cannot write to an Excel bi...