Search found 81 matches

by BugFree
Mon Mar 30, 2009 11:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS sequencer finished even the job is aborted
Replies: 4
Views: 2245

hi, It is not at all the DataStage issue. I can assume that you have not given proper link condition in sequence. :) By default the link condition is "Unconditional" and hence it will trigger the second Job Activity irrespective of the 1st Job Activity (Job) status. If you want to terminat...
by BugFree
Mon Mar 30, 2009 4:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is there any Automation Process to hanlde Data
Replies: 5
Views: 1864

ray.wurlod wrote:Welcome aboard.

There's nothing automatic, but you can design recovery.

As noted, designing recovery will require that you keep track of how far the job has got before it fails. ...
Ray, are you reffering to the other new post with subject line "Disigning Recovery handling" :? :D
by BugFree
Mon Mar 30, 2009 3:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File system getting full
Replies: 5
Views: 1241

Neeraj, Are you sure that the file systems are getting full only if you run the sequences? If your answer is yes, then by any chance are your sequences/jobs creating the FlatFiles? If you are loading the files with large amount of data, the size might exceeds its capacity. Just cross check the size ...
by BugFree
Thu Mar 26, 2009 9:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a help on Change Capture stage
Replies: 3
Views: 868

sagar, You will get the delete rows and its corresponding delete code. Of course this depends upon the property value for "Drop output for delete". The other field value is simillar to as it is in the Before link. Reason is, the delete record obviously will not be present in the After data...
by BugFree
Thu Mar 26, 2009 7:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to check the condition?
Replies: 3
Views: 1315

I assume that the (In_Amex_Chnt1_Demo.CHN_STAT_DTE) field is of timestamp and your target field is of string type. Try out this: If (IsNotNull(In_Amex_Chnt1_Demo.MERCH_PRNT_CHN_NBR) And (In_Amex_Chnt1_Demo.MCT_STAT_COD = 'C') And IsNotNull(In_Amex_Chnt1_Demo.CHN_STAT_DTE) ) Then TimestampToString(In...
by BugFree
Thu Mar 26, 2009 5:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Upgrading the SAP R/r PACKs
Replies: 2
Views: 897

Upgrading the SAP R/r PACKs

Hi all, I have a requirement to develop some jobs (to read SAP data) in DS V7.5.1. But after some month down the line, I have to use these jobs in DS V8.0. As per my knowledge, DS V8 will support only SAP PACk V6.0. If I simply import the DS V7.5 jobs (which uses Pack V5.2) to DS V8.0 will not serve...
by BugFree
Wed Nov 19, 2008 12:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error in viewing data at oracle enterprise stage
Replies: 1
Views: 855

Have you installed Oracle client on your machine :?:
by BugFree
Wed Nov 19, 2008 9:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup and Defaults (NULLS)
Replies: 6
Views: 2285

Try to dump the records in DataSet rather than the peek and view the data->for debug purpose.
by BugFree
Wed Nov 19, 2008 9:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup and Defaults (NULLS)
Replies: 6
Views: 2285

Try to dump the records in DataSet rather than the peek and view the data->for debug purpose.
by BugFree
Tue Nov 18, 2008 1:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fixed width file
Replies: 12
Views: 15238

I think you have not mentioned the field length along with the data type as CHAR. For fixed width file, you have to qoute the field length along with data type as CHAR.
I believe the warning is not because of the original table definition.
by BugFree
Thu May 15, 2008 12:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing sql as parameter
Replies: 4
Views: 1460

Try with an escape character.

Code: Select all

select name where state in (\'NY\',\'NJ\')
by BugFree
Wed May 14, 2008 7:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding the Category for each job.
Replies: 8
Views: 2643

Code: Select all

"SELECT CATEGORY FROM DS_JOBS WHERE NAME = 'JobName'
Will get the category name with the hierarchy. Guess you will have to run it using DSExcute().
by BugFree
Tue May 06, 2008 1:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pass parameter value to routine activity Input Argument
Replies: 10
Views: 4059

Define the file path parameter as a job parameters. And give the parameter name in the value expression.
by BugFree
Tue May 06, 2008 1:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: creating and executing a PX routine
Replies: 3
Views: 1468

I think the routine name and the function inside the routine should be the same. in your case both of them should be "replace". I got this error sometime back and i think this solved it.
by BugFree
Mon May 05, 2008 11:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Concatenation function to be used in transformer?
Replies: 7
Views: 20573

Concatenate is same ":" in parallel as well. You can do it in a transformer stage. Not sure about Modify though.