Search found 111 matches

by mahadev.v
Thu Jul 24, 2008 5:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to specify the timestamp format for the field like this?
Replies: 5
Views: 2192

Stop praising and applauding. Which part of Ray's answer did you not understand? What approach have you tried so far? What results did you get?
by mahadev.v
Wed Jul 23, 2008 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Job Partitioning
Replies: 1
Views: 957

Think you are using a different configuration files when creating the FileSet and reading it. Use the configuration file that was used for creating the fileset in the job.
by mahadev.v
Tue Jul 22, 2008 7:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Leading zero's infront for negative values
Replies: 2
Views: 883

If in.Col[1,1] = "-" Then "-" : Right("000000" : trim(InLink.QT), 5) Else Right("000000" : InLink.QT, 6) . I am not sure of the trim syntax. You will have to trim the leading "-" sign. Use online help for that.
by mahadev.v
Thu Jul 17, 2008 7:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Again Join Stage (Data Error)
Replies: 8
Views: 1845

Can you identify the 3rd record? See what exactly is coming into the Join Stage. Maybe a copy, filter and a peek stage on each link would do. And how are you handling the null in the key field (Since you mentioned TRIM and NULL)?
by mahadev.v
Thu Jul 17, 2008 4:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Again Join Stage (Data Error)
Replies: 8
Views: 1845

Looks like a partition problem to me. What partition have you used? Use hash partition on key fields on both links to the join.
by mahadev.v
Wed Jul 16, 2008 5:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: while updating in oracle table fatal error
Replies: 2
Views: 1395

Are you changing the metadata of the field "inputData.STATUS_ID" in the job with the RCP on? If yes switch off RCP in the stage where you have modified the field and run the job.
by mahadev.v
Wed Jul 16, 2008 4:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bad dboption error
Replies: 1
Views: 1569

Where is this error coming? in the sequence log or job log? Any other warnings/errors? Also check the variable values for each run from the log. Do you see any difference?
by mahadev.v
Mon Jul 14, 2008 3:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage get more records than primary link records
Replies: 8
Views: 4570

Generally an entire partition is used on the reference link and the main link is left to auto. No warnings in the log (i am guessing) could be because your key fields are different from the lookup keys.
by mahadev.v
Mon Jul 14, 2008 3:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage get more records than primary link records
Replies: 8
Views: 4570

Probably due to duplicates in the reference data. Remove the duplicates in the reference link on the lookup keys.
by mahadev.v
Mon Jul 14, 2008 2:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage unable to retreive data in parallel jobs
Replies: 3
Views: 1774

Re: ODBC stage unable to retreive data in parallel jobs

the select statment may be invalid"
Is the select query the same in both the server job and the parallel job? Paste the query here.
by mahadev.v
Fri Jul 11, 2008 12:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator - Group Based Calc
Replies: 3
Views: 1086

I heard that the pivot stage in V8 can do the vertical pivot. You might want to take a look at that. Or do a search here on "Vertical pivot".
by mahadev.v
Fri Jul 11, 2008 12:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Redirectly job log to oracle db tables
Replies: 5
Views: 1817

Routines is your best option. In the online help of DataStage, search for sub routines that start with DS.
by mahadev.v
Thu Jul 10, 2008 3:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: getting the value from an environment variable
Replies: 3
Views: 2292

Passwords are encrypted in the file. You cannot directly read from the file. Other variables values Yes, passwords No.
by mahadev.v
Wed Jul 09, 2008 7:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change capture not working in 7.5.3
Replies: 6
Views: 2744

Without posting the error message you will not get any answer. Copy paste the exact error message you got here.
by mahadev.v
Wed Jul 09, 2008 7:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To convert the row values to the columns
Replies: 1
Views: 923

Do a search on "Vertical pivot". There is transformer logic as well, in those posts. You would have to customize it for your needs.