Search found 5168 matches

by kumar_s
Sun Mar 12, 2006 4:26 am
Forum: Articles, White Papers and Tips and Tricks
Topic: DataStage NLS by Ray Wurlod
Replies: 1
Views: 1992

I could not access this pdf, is it still exitst :?:
by kumar_s
Sun Mar 12, 2006 3:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: access denied when using oracle
Replies: 1
Views: 1075

Thanks eyalush,
Bothered to share your issue and the solution you got. :D
If feel this should be a FAQ post in under the specified Froum.
by kumar_s
Sun Mar 12, 2006 2:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning during execution of StringToDecimal Function
Replies: 20
Views: 8455

Hi Ameyvaidya , Char is a takes 1 byte to store its each character. And if you assing char(10), Datastage assigns 10 byte for storage. If you have space in the field and if you use Trim function and store back to char field it again expects the 10 character to be stored. (And hence does nothing) But...
by kumar_s
Sat Mar 11, 2006 11:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 API Stage
Replies: 3
Views: 1005

Use the after job subroutine for commit. Write a script from which you can Commit the record in db2 with the Command Line features. In simple you can use 'db2 Commit Work' . Use exection handler, (I never tried) if error occurs in previous run, it executes in the next run. Again use a Execute comman...
by kumar_s
Sat Mar 11, 2006 11:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: most frequently used stages?
Replies: 5
Views: 2737

Some advise to avoid Transformer stages (only because they have to generate C++ code that has to be compiled and linked back into the job), but sometimes you just have to use it. Hi Ray, Is all the Myth about Transformer is only for/about first run (until the job get compiled). Because it shouldnt ...
by kumar_s
Sat Mar 11, 2006 10:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Doubt in Constraint
Replies: 11
Views: 1749

So its data type compatability. Say if your file is tab delimited, and if the input is 8,4. The input stage you use to read the file will reject the record with an import warning thrown. If you need to raise an error based on this, it would be easy to maintain a seperate job to import the input data...
by kumar_s
Sat Mar 11, 2006 8:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unrecognized Argument
Replies: 5
Views: 10611

DSguru2B wrote:Got it Andrw. It was my mistake .. thanks anyways

Is it possible to share the root cause, so that atleast fot this thread which will end with an answer.
by kumar_s
Sat Mar 11, 2006 8:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help to write script
Replies: 3
Views: 1318

Rather than writing a script, use the available FTP stage.
by kumar_s
Sat Mar 11, 2006 7:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Doubt in Constraint
Replies: 11
Views: 1749

HI Somu, May I know what is that you want to check? Is that you want to check whether it is a decimal or whether it compatable to the given layout or whether it matches to 7,4 (filled with all character?) If you want to check whether it is decimal you can use IsValid in the constataint as mentioned....
by kumar_s
Sat Mar 11, 2006 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Manipulating timestamp
Replies: 2
Views: 842

Got the result? Or Holded up?
If the input is in date formate you can directly use YearFromDate and MonthFromDate function in transformer and concatinate the both.
Yes, output is not in timestamp. (Input either)
by kumar_s
Sat Mar 11, 2006 3:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join,merge, lookup
Replies: 8
Views: 2513

Hmm... the add by the side take up some space, which cause the alignment to go off.
by kumar_s
Sat Mar 11, 2006 3:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join,merge, lookup
Replies: 8
Views: 2513

Some generic difference among the three. Join Lookup Merge Description RDBMS-style Source and lookup Master table and one Relational tables table in RAM or more update tables Number and names 2 or more inputs 1 source and N lookup 1 master tables and N Of inputs tables update tables Memory usage Lig...
by kumar_s
Sat Mar 11, 2006 1:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning during execution of StringToDecimal Function
Replies: 20
Views: 8455

ArndW wrote:
kumar_s wrote:Trim also works for Char...


Kumar, what does TRIM() on a CHAR(10) field containing "hello " return?

For a char field Len(Trim(field_name)) will return the count without whitspace.
by kumar_s
Sat Mar 11, 2006 1:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning during execution of StringToDecimal Function
Replies: 20
Views: 8455

The option available in transformer (Also available project level). If enabled, DataStage tries to combine all possible orchestrate operator to a single operator while compiling to reduce the over head. Though the funcitons are given in an order, which should also work according to its own precedenc...
by kumar_s
Sat Mar 11, 2006 1:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning during execution of StringToDecimal Function
Replies: 20
Views: 8455

Trim also works for Char.
Try to use Combinability Mode to fasle in the transformer property.