Search found 53125 matches

by ray.wurlod
Thu Feb 22, 2007 2:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: routine not working as expected
Replies: 9
Views: 1584

And the ever-hasty DSguruji has posted a routine with imbalanced routine code. There is one End statement missing. Also, there's probably no need to compare the arguments twice. Ans = "NULL" If (Arg1 <> Arg2) Then If (Index(Arg1, "NETWORKING_EXCHANGE", 1) >= 1...
by ray.wurlod
Thu Feb 22, 2007 2:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Accessing CSV files on local drive
Replies: 13
Views: 3119

Is this for a parallel job (as marked) or a server job (as posted)?
by ray.wurlod
Thu Feb 22, 2007 1:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Security
Replies: 6
Views: 1406

The .developer.adm file in the project simply stores what you specify in the Administrator client. It contains a list of those operating system groups that you have allocated to the Developer role. There are similar .*.adm files for the Operator and Production Manager roles. The files should be writ...
by ray.wurlod
Thu Feb 22, 2007 1:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading a file from Mainframe server
Replies: 7
Views: 3449

Arnd has govered the gamut of approaches.

I'd be asking "them" why the COBOL file definition does not match the COBOL file.
:roll:
by ray.wurlod
Thu Feb 22, 2007 1:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fact Load Performance
Replies: 10
Views: 1818

If you are 100% certain that you will deliver good data, you can drop indexes and constraints on the fact table and rebuild them afterwards.

I assume you are already using bulk loader technology; if not, do so, as it's way faster than SQL inserts.
by ray.wurlod
Thu Feb 22, 2007 1:48 pm
Forum: General
Topic: Transformer Compilation Error in AIX
Replies: 7
Views: 3267

That looks more like LD_LIBRARY_PATH than APT_COMPILER. If it's really APT_COMPILER (which should be the pathname of a CC compiler executable followed by some command line executables) then your system is severly horked, to borrow one of Craig's words.
by ray.wurlod
Thu Feb 22, 2007 1:43 pm
Forum: General
Topic: ODBC USAGE on mainframes
Replies: 1
Views: 1149

There is no ODBC stage for mainframe jobs. You use a Relational stage to access your DB2 data on the mainframe. DCLGen is simply one way of representing metadata; you can import the table definition into DataStage from a DCLGen.
by ray.wurlod
Thu Feb 22, 2007 7:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset the Job status
Replies: 8
Views: 1856

What makes you so sure that the job is still running? What Director's status view is reporting is the last time the job reported its status back to the status table. If it had been killed without the opportunity to update the status table, there's no way that the Director can read any other status t...
by ray.wurlod
Thu Feb 22, 2007 6:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Merge Stage - Duplicates in the master link.
Replies: 7
Views: 4262

Re: Merge Stage - Duplicates in the master link.

sreelalpp wrote:Can I conclude that Merge can NOT be used to do the same functionality of Lookup if it contains duplicates in the merge key from the master ?

Yes
by ray.wurlod
Thu Feb 22, 2007 6:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to view data on PX on windows 2000 professional
Replies: 8
Views: 2249

7.5x2 is the only Windows supported in Datastage as of now. What kumar_s has tried to indicate is that, while other versions can be used to create parallel jobs on Windows platforms, only version 7.5x2 (which is not the same thing as version 7.5.2) can be used to run jobs. View Data actually create...
by ray.wurlod
Thu Feb 22, 2007 6:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not Able to view the Oracle Table Data
Replies: 3
Views: 1535

Etiquette Note
I don't think anyone called "u" installed anything. In English (the preferred languate here at DSXchange), the second person personal pronoun is spelled "you".
by ray.wurlod
Thu Feb 22, 2007 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: difference between routine,transform and function?
Replies: 1
Views: 1646

I assume you're referring here to the terms used in the Expression Editor's operands menu. A routine is a separately compiled, stand-alone piece of DataStage BASIC code that is stored in the Routines branch of the Repository. A transform is a DataStage BASIC expression, not separately compiled, that...
by ray.wurlod
Thu Feb 22, 2007 12:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validation of a time column
Replies: 12
Views: 2034

You will find a link to an IsValid() function here
by ray.wurlod
Wed Feb 21, 2007 10:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Number
Replies: 9
Views: 2642

Stop thinking like a server job developer. Give some thought to how you might construct a sequence that is unique over all partitions, apart from the simple-minded approach of sequential execution of the generator. Hint: you will need to include the partition number and partition count in your calcu...