Search found 6797 matches
- Tue Jan 30, 2007 9:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to implement intersect
- Replies: 11
- Views: 2470
- Tue Jan 30, 2007 9:17 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: 4 digit Year number as string in oracle
- Replies: 10
- Views: 2809
See if thishelps if you want to do in oracle.
If you want to do it in datastage you can A) write a c function B)write a Basic routine and do it in Basic transformer.
If you want to do it in datastage you can A) write a c function B)write a Basic routine and do it in Basic transformer.
- Tue Jan 30, 2007 9:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to implement intersect
- Replies: 11
- Views: 2470
- Tue Jan 30, 2007 8:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reference link get the first row of the reference table
- Replies: 29
- Views: 4178
- Tue Jan 30, 2007 8:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to implement intersect
- Replies: 11
- Views: 2470
- Tue Jan 30, 2007 4:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: connecting to MYSQL DATABASE
- Replies: 2
- Views: 673
- Tue Jan 30, 2007 3:55 pm
- Forum: Site/Forum
- Topic: How about a "DataStage v8 Migration" forum?
- Replies: 3
- Views: 2644
Re: How about a "DataStage v8 Migration" forum?
bcarlson wrote:Thoughts anyone? Anyone? Bueler? Bueler?
Brad, you are one funny guy and I give you an A in sarcasm
Jokes apart, I think thats a great idea. As this is one of the major transitioins from Version x.x to Version 8.0, it would be nice to have all issues regarding the transition in one place.
- Tue Jan 30, 2007 3:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Surrogate Key using sequence ?
- Replies: 34
- Views: 13356
For the Field function above, is everything taken from the first element of the dynamic array before the field marker? I am assuming that it is as it is a C array which is actually one contiguous string. It is one contigous string and the field sperator is the @FM as described by Ray. So Field(Exec...
- Tue Jan 30, 2007 3:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Lock and unlock jobs
- Replies: 20
- Views: 5670
What would hold a developer from invoking your routine that makes the job writable again? If developers will stop at the sign that this job is being used by someone, then do as Ray suggested, a big annotation that will tell anyone who opens it that this job is still under constructioin and not to ch...
- Tue Jan 30, 2007 3:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: maximum number of jobs per project
- Replies: 3
- Views: 1601
- Tue Jan 30, 2007 3:20 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Lock and unlock jobs
- Replies: 20
- Views: 5670
What, they just get in and start modifying your jobs ? DS_AUDIT has all the information on what job was accessed and changed by whom. Catch them and get them nuked. This is insane and very unprofessional. Build another project for yourself, do your development there and ask your adminstrator to only...
- Tue Jan 30, 2007 2:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Lock and unlock jobs
- Replies: 20
- Views: 5670
- Tue Jan 30, 2007 1:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Nulls in Pipe delimited file
- Replies: 8
- Views: 2626
- Tue Jan 30, 2007 1:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Checking whether string is numerical or not
- Replies: 3
- Views: 736
Try this.
Code: Select all
If in.Col[2,19] MATCHES "1N0N" then in.Col[2,4] else ""
- Tue Jan 30, 2007 1:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SQL1652N : File I/O error occurred
- Replies: 34
- Views: 16058
There are around 12 bulk loader jobs which run in parallel but with different tables as targets. Are you providing different TEMP_DIR's for all these jobs in the DB2 Load Stage? They are all trying to create the same set of command files. If their folder is the same then thats your problem right th...