Search found 9 matches

by srinath
Mon Aug 20, 2007 3:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load Error when unicode is used
Replies: 0
Views: 1171

Load Error when unicode is used

We are facing problem in using Load/Replace method in Oracle stage in datastage for all jobs.The jobs which were running earlier are now failing with the following error: ANNUNCIATOR_INPUTS_OUTPUT_ldr,11: APT_FileExportOperator unable to export record: Record larger than fixed-length record stream A...
by srinath
Thu Aug 02, 2007 7:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running datastage job in debug mode when target is SAP stag
Replies: 1
Views: 1955

Running datastage job in debug mode when target is SAP stag

Hi All, We are facing a problem while loading the data into SAP stages like BAPI and IDOC, to identify the issues we would like to know how the the values are passed to the BAPI / IDoc Stages so that we can resolve our issues. Is there any way that we can debug the job and ABAP together. Thank you, ...
by srinath
Wed Jun 20, 2007 4:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conditional update of a field
Replies: 1
Views: 1319

Re: Conditional update of a field

Yes, You can do this with 2 links one link with the constraint "link1.myDate <= '01/01/2007' " and updating all the columns and the other link with constraint "link1.myDate > '01/01/2007' " and updating the column that you want to update.
by srinath
Fri Jun 15, 2007 3:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: why is dscmdexport omitting "read-only objects"?
Replies: 2
Views: 2361

Re: why is dscmdexport omitting "read-only objects"

Hi experts, with kim duke s export batchfile I managed to export my project every night. Controlling the log file and export file, I see that the size of the exported dsx file is about 160 MB, but at initial run two days ago it was 240 MB. In the current log file I have a line saying 375 read-only ...
by srinath
Fri Jun 15, 2007 1:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: if then else problem
Replies: 7
Views: 2836

Re: if then else problem

hi guys, i have code like this aruments i dec arg1,a1,a2 if arg1= '+' then res=a1+a2 else if arg1='-' then res=a1+a2 else if arg1='*' then res=a1*a2 end end end when i was compiling the code iam getting error if Arg1= '+' or Arg1='-' then res=a1+a2 end else if Arg1='*' then res=a1*a2 end
by srinath
Thu Mar 08, 2007 6:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Row count of a link
Replies: 24
Views: 21627

As per Datastage "StageName is the name of the active stage to be interrogated".. May be you are not giving active stage
by srinath
Wed Feb 07, 2007 5:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call a SQL Server stored procedure in ds
Replies: 4
Views: 2066

USE ODBC Stage and in the general tab select stored procedure.
by srinath
Fri Dec 22, 2006 6:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to join the extra look up condition in the lookup
Replies: 3
Views: 1806

Take ODBC lookup and make colm1,table2.startdt,table2.enddt as keys and in user defined query use select table2.col3 from where table2.colm1= ? and table2.startdt > ? and table1.date < ? and in the transformer give the values for table2.colm1 as table1.colm1, for table2.startdt as table1.date and fo...
by srinath
Mon Dec 18, 2006 6:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: conversion of julian date of format 'yyyyjjj' to date
Replies: 10
Views: 10123

I think the julian date format will be CYYJJJ and the data will be like
dj = 106346

to convert the above one we can use this OCONV(ICONV(dj + 1900000,"D2/"),"D4/MDY").

You can use some other date formats for the above one to get the desired result.