Search found 11 matches

by priyankalaisatwar
Tue Dec 08, 2015 1:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGSEGV error while running IDOC extract stage
Replies: 1
Views: 1702

SIGSEGV error while running IDOC extract stage

I have a job which extracts IDOCS and load into DAtasets. the job is in production from last 3 yrs, but from friday getting error. job is running for more than 5-6 hrs. and failing with below error:- Operator terminated abnormally: received signal SIGSEGV [processmgr/rtpexecutil.C:199] I used $APT_D...
by priyankalaisatwar
Thu Sep 19, 2013 7:40 am
Forum: General
Topic: Shared Container
Replies: 6
Views: 2210

Can you please elaborate it more
ArndW wrote:It is trivial code, you create your Before-Job or After-Job routine, and within the routine do something like:

Code: Select all

   JobHandle = DSAttachJob('MyJob',DSJ.ERRFATAL)
   IF NOT(JobHan ...[/quote]
by priyankalaisatwar
Thu Sep 19, 2013 1:21 am
Forum: General
Topic: Shared Container
Replies: 6
Views: 2210

Shared Container

hi, I have one reuirement that I have one Table which contains information about all job LOGS. Jobnam, Status, startdate, enddate I want to develop reusable component in such a way that, In the starting of the job I will call that shared container. It will insert one row for that Job like:- Job1,Sta...
by priyankalaisatwar
Tue Sep 03, 2013 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datetime Overflow Error
Replies: 11
Views: 6637

I tried to load that column as varchar, Now data is getting loaded and I am not getting any warnings. But I want to load it in datetime dattype only.
by priyankalaisatwar
Fri Aug 30, 2013 5:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datetime Overflow Error
Replies: 11
Views: 6637

Column Type in Target SQL server is Datetime and SOURCe Datatype is DB2 - Timestamp
by priyankalaisatwar
Fri Aug 30, 2013 5:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datetime Overflow Error
Replies: 11
Views: 6637

Re: Datetime Overflow Error

After Removing .0 also I am getting the same error. Do I need to change the lenght of this column in Transformer Output Stream?
by priyankalaisatwar
Fri Aug 30, 2013 12:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datetime Overflow Error
Replies: 11
Views: 6637

Re: Datetime Overflow Error

Hi Sura, First I took one stage variable STG1 and dump the Timestamp column into it. like below left(timestamp_column,19) --> stg1 and the in transformer output link, In the output Timestamp column I did:- StringToTimestamp(STG1,"%yyyy-%mm-%dd %hh:%nn:%ss.0") --> Output_timestamp_column Ge...
by priyankalaisatwar
Fri Aug 30, 2013 12:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datetime Overflow Error
Replies: 11
Views: 6637

Datetime Overflow Error

I am trying to Load data From DB2 to SQL Server, I am getting datetime overflow error. I tried to just load timestamp without microseconds but still getting the same error. Please help! The job is in production and I am getting the error.
by priyankalaisatwar
Fri Aug 30, 2013 12:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Grouping/Looping in datastage
Replies: 6
Views: 2977

Thanks, I will try this
by priyankalaisatwar
Thu Aug 29, 2013 7:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Grouping/Looping in datastage
Replies: 6
Views: 2977

Can you please just give eample for fork join. How to design it?
by priyankalaisatwar
Thu Aug 29, 2013 7:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Grouping/Looping in datastage
Replies: 6
Views: 2977

Grouping/Looping in datastage

hi, My input is (db2 tables after joins) MATERIAL_No PLANT VENDOR_CD FLAG 1009417 FR02 40010458 N 1009417 FR02 40020110 Y 1009417 FR02 40002482 N I need output like- For same MaterialNumber and same plant Where Flag =y, I want to populate its respective Vendor code in FIX_VENDOR column for all rows ...