Search found 59 matches

by Scope
Tue May 19, 2009 2:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MQ Message Rollback if job abort
Replies: 0
Views: 971

MQ Message Rollback if job abort

Hi All, I am Pushing message from sequential file to target using MQ stage. In middle of job run the connection was closed/losed. In between that some messages were pushed to queue. when i running next time i getting duplicate in my queue. how to rollback the messages if datastage job failed??? how ...
by Scope
Tue Apr 07, 2009 3:08 am
Forum: General
Topic: loction of .log files
Replies: 2
Views: 2268

Re: loction of .log files

Check in Project Directory.
by Scope
Thu Apr 02, 2009 3:33 am
Forum: General
Topic: Dataset Compression
Replies: 8
Views: 5917

You cannot compress the dataset. Only the descriptor file will be created in directory where you trying to create the dataset. The data will be stored in the resource disk (path mentioned in configuration file) in internal format.
by Scope
Thu Apr 02, 2009 12:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to view dataset in unix
Replies: 4
Views: 9506

You need to add the PXEngine Library Path to the Environment variable
by Scope
Thu Apr 02, 2009 12:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: generating seq nos
Replies: 10
Views: 6316

Try this.

(@INROWNUM * @NUMPARTITIONS) - @PARTITIONNUM

This will generate unique numbers.
by Scope
Tue Mar 31, 2009 12:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController(7),0: -help needed urgently
Replies: 8
Views: 5761

Are you using any transformer stage in the job?
by Scope
Wed Mar 18, 2009 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partition in DB2 ref table Query Vs Data Stage partition
Replies: 4
Views: 4067

Use a Copy Stage inbetween Lookup Stage & DB2 Stage. It may give solution.
by Scope
Wed Mar 18, 2009 3:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Resource Temporarily Unavailable
Replies: 3
Views: 7964

Inform your Unix Administrator to increase the Maximum number of PROCESSES allowed per user Value
by Scope
Thu Mar 12, 2009 10:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can we check all the node are working or not ?
Replies: 4
Views: 2623

Try the below command in unix box & check the maximum number of process allowed per user. If the value is less than 100 inform your Administrator to increase the value.

lsattr -E -l sys0 | grep maxuproc
by Scope
Thu Mar 12, 2009 4:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to reduce one year from current date
Replies: 10
Views: 5070

Try the below function

DateFromJulianDay(JulianDayFromDate(Link.Column) - 365)
by Scope
Wed Feb 18, 2009 12:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning :Missing record delimiter "\n", saw EOF in
Replies: 18
Views: 36721

Try below unix command to remove the Control-M Character from a file

perl -pi -e 's/\r//g;' filename
by Scope
Mon Dec 15, 2008 12:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Amount Column as a key in Lookup File Set
Replies: 12
Views: 3875

first thing use partition 'entire' for creating lookup fileset.

convert decimal to varchar in both db2stage and lookup fileset (use entire par.) before joining.
by Scope
Mon Dec 15, 2008 12:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: to import and compile datastage jobs in UNIX
Replies: 2
Views: 6123

importing job from Unix Server

dsjob -import <project> DSXfile [ [-OVERWRITE] -JOB[S] | jobname ...] | [-LIST]


compiling job from Client


dscc /h <server ip> /u <username> /v <password> <projectname> /j <job name|*> /ouc
by Scope
Fri Nov 28, 2008 2:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Canot populate the target FILE with data
Replies: 21
Views: 16044

cann you try nulltoempty function

Code: Select all

 IF(IsNull(FIELD_NAME) or Len(Trim(NullToEmpty(FIELD_NAME)))=0) Then "Y" else "N" 
by Scope
Thu Nov 27, 2008 5:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Canot populate the target FILE with data
Replies: 21
Views: 16044

hi..

can you run the job without constraint.and find out records poupulated in the target.

do you have any message handler in your job...