Search found 5168 matches

by kumar_s
Thu May 11, 2006 12:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LD_LIBRARY_PATH
Replies: 3
Views: 989

DSParams holds the total varibles of Datastage including adminstrator client. As mentioned "Environment variable settings:" will be 2nd or 3rd depends on your setting. You can find the value passed to the job for each variable.
by kumar_s
Mon May 08, 2006 6:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Internal Tables
Replies: 11
Views: 10842

Thanks for the repsonse.
BTW I actually ment Informatica uses 3rd party database like oracle to build and maintain its repository.
by kumar_s
Mon May 08, 2006 6:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Due to Informix ODBC driver error few rows getting rejected
Replies: 6
Views: 2799

No I mean update using UPDATE command. Because it ment that the records with the same primary key is already present in the table and hence the update action is takin place rather than insert. And BTW the record you insert shouldnt be inserted due to refrential integrity constriaint. Are you trying ...
by kumar_s
Mon May 08, 2006 6:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: In Informix DataBase condtion for NULL value getting fail
Replies: 12
Views: 2884

Perhaps to Dsxchange :D
by kumar_s
Mon May 08, 2006 6:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with look up
Replies: 3
Views: 1688

Just try to rename the column and execute once and try to view the fileset contol file from unix prompt just by cat fileset.fs, and make sure the renamed column is getting reflected in the control file.
by kumar_s
Mon May 08, 2006 6:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: End Date Calculation
Replies: 7
Views: 1709

If there is a need of transformer, it is always advisalbe to accomplish all the logic in the same stage (not overloaded) inorder to avoid the additional buffering of data, memory usage, disk usage (IO).
by kumar_s
Mon May 08, 2006 5:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: active-to-active link problem
Replies: 29
Views: 6079

Not sure whether Server jobs is also a victim of fork lock conditions. Also Iam not that experience in server jobs with the design of writing into the hash and reading from the same stage in the same job. Perhaps experts can comment. But do you mean to say that by removing hash2, i.e., connecting tr...
by kumar_s
Mon May 08, 2006 5:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: In Informix DataBase condtion for NULL value getting fail
Replies: 12
Views: 2884

Ooff... a quick response...
Are you sure you are lookin after the output directly after the transformation and not after any join or merge where the null will play a vital role.
Try using debugger to know rows wise processing.
by kumar_s
Mon May 08, 2006 5:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: running jobs from the command prompt?
Replies: 3
Views: 1071

Hi and Welcome Aboard :D This forum has nearly 20K topics. If you search you can find a lot of information related to your queries. Infact more that you need. Pls do a search of dsjob a command though which you can call the ds jobs. Also pls go though the given doumentaion to know about the compilat...
by kumar_s
Mon May 08, 2006 5:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: End Date Calculation
Replies: 7
Views: 1709

If you concern is more into processing efficiency you may try using Modify stage instaed of transofmer stage.
You can find the simila funciton avialable there.

Code: Select all

timestamp_from_seconds_since[timestamp](dfloat)
timestamp_from_date [time](date)
timestamp_from_time
by kumar_s
Mon May 08, 2006 4:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: active-to-active link problem
Replies: 29
Views: 6079

Sorry I could not view the image you attached, but may I know the use of Hash1 to transformer1?
Though the suspection is at hash2, are you able to see the progress of the rows through the performance staticts, are you able to identify the bottleneck?
by kumar_s
Mon May 08, 2006 4:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing subroutine
Replies: 7
Views: 2487

And what is the functionality that you are trying to replace BASIC Routine instead of Unix script.
by kumar_s
Mon May 08, 2006 4:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Time stamp
Replies: 5
Views: 2508

If I the question properly and as explained and to explain you the issue is to "extract the year and month from the timestamp".
by kumar_s
Mon May 08, 2006 4:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Internal Tables
Replies: 11
Views: 10842

So is the Hawk's Repository is built on a 3rd party database, and not on UV like Informatica?
by kumar_s
Mon May 08, 2006 4:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: timestamp
Replies: 42
Views: 9260

Also use

Code: Select all

julian_day_from_date (date_from_timestamp [date_format])
to do exact numerical comparision using modify stage.