Search found 6797 matches

by DSguru2B
Tue Jan 30, 2007 9:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to implement intersect
Replies: 11
Views: 2470

Naaa....just using his quote :wink:
by DSguru2B
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.
by DSguru2B
Tue Jan 30, 2007 9:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to implement intersect
Replies: 11
Views: 2470

Einstein says "Your welcome" :wink:
by DSguru2B
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

Because you made that a key. Make that column key on which you are doing lookup so that it shows up in the "where" predicate.
by DSguru2B
Tue Jan 30, 2007 8:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to implement intersect
Replies: 11
Views: 2470

Left outer join can be accomplished without the constrained. The key words in Ray's reply were "constrained to put only those records for which the lookup succeeded ".
by DSguru2B
Tue Jan 30, 2007 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: connecting to MYSQL DATABASE
Replies: 2
Views: 673

Import meta data rather than defining it yourself.
Oracle and MYSQL are two different database. They will have data type mismatches. Thats where DataStage comes in and does data conformity. Use the rich functions of datastage to get that done.
by DSguru2B
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 :wink:
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.
by DSguru2B
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...
by DSguru2B
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...
by DSguru2B
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

I dont think there is a limit but you might be running out of space. Hence the limit is directly proportional to the disk space. But it is better to avoid having large number of jobs as it will, then, start taking longer in pulling up jobs and other objects from the repository.
by DSguru2B
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...
by DSguru2B
Tue Jan 30, 2007 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lock and unlock jobs
Replies: 20
Views: 5670

When you say lock it, you mean to say to make it read only or keep it open on your desktop and come back and continue working?
by DSguru2B
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

They can be if you make the target as varchar.
by DSguru2B
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 ""
by DSguru2B
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...