Search found 102 matches

by thumati.praveen
Tue Mar 31, 2009 10:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: in XMLoutput stage more than one repeat element
Replies: 26
Views: 8180

in XMLoutput stage more than one repeat element

Hi , Can I use more than one repeat(key column) element in xml output stage under input columns tab? Example:- input:- PORD1,DETAL1 PROD2,DETAIL2 PROD3,DETAIL3 Actual Getting output:- <IDOC> <PROD_HEADER>xyz</PROD_HEADER> <PROD1> <DETAIL1> </DOC> <IDOC> <PROD_HEADER>xyz</PROD_HEADER> <PROD2> <DETAIL...
by thumati.praveen
Thu Mar 19, 2009 1:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete jobs from project .
Replies: 9
Views: 4444

some object for this job is corrupted, so you need to delete it from repository tables. 1. Get the Job id 2. delete from ds_jobs where NAME =<job name> 3. delete from JOB_OBJECTS WHERE NAME =<job name> just check the column names, not sure its NAME or JOBNAME. List and Delete commands not able to f...
by thumati.praveen
Thu Mar 19, 2009 1:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete jobs from project .
Replies: 9
Views: 4444

tehavele wrote:
thumati.praveen wrote:When i am trying to delete it is giving error message like (SOURCE OBJECT CANOT FOUND IN REPOSITORY )ANY body can help the same
Are you able to open that job in the designer ?
Yes I can ,but the probelm is I can not compile/run the job.
by thumati.praveen
Wed Mar 18, 2009 4:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete jobs from project .
Replies: 9
Views: 4444

When i am trying to delete it is giving error message like (SOURCE OBJECT CANOT FOUND IN REPOSITORY )ANY body can help the same
by thumati.praveen
Wed Mar 18, 2009 4:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete jobs from project .
Replies: 9
Views: 4444

Delete jobs from project .

Hi,

Can any suggest the way to delete the jobs from project?

Jobs designs are avilable in designer but not in Adminnistrator and director clients.

Thanks,
Praveen.
by thumati.praveen
Wed Feb 25, 2009 3:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Binary to ASCII
Replies: 3
Views: 2256

Hi Praveen, Or is it some non english character. Please check the NLS settings. Try using column import stage. Thanks, Hi Birendra, source file coming from Mainframe with some columns binary type and some columns CHAR type. I tried using Cexport and Cimport stages I am not able to get it done. Than...
by thumati.praveen
Mon Dec 01, 2008 7:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: WHERE DATE in (StringParameter) in DB2 Stage
Replies: 12
Views: 5004

Hi, when we right clik on the stage and view the data it is allowing.But when I ran the job I got following error. error code is DB2_UDB_Enterprise_1: Error Idx = 5; DB2Driver Embedded SQL message: SQL0401N The data types of the operands for the operation "IN" are not compatible. SQLSTATE=...
by thumati.praveen
Tue Oct 21, 2008 7:31 am
Forum: General
Topic: import jobs command
Replies: 3
Views: 1386

dsimport (client exe) will import the job into the server. You can write a bat file and do the looping to import the jobs, or the simple way could be concatenate all the 50 jobs to a single dsx and import the concatenated dsx. Hi, Are you sure it will import both designs and executables? Thanks, Pr...
by thumati.praveen
Tue Oct 21, 2008 2:12 am
Forum: General
Topic: import jobs command
Replies: 3
Views: 1386

import jobs command

Hi, By using the import command in unix we can import only the job executables.Is their any equalent command in windows to import the job with designs and executables. I have 50 jobs in repository each have one dsx file in my local machine.I want import 50 jobs into new project.All at one time is th...
by thumati.praveen
Mon Jun 02, 2008 7:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job behaviour is diffrent
Replies: 4
Views: 1111

I was split the job then it is working fine.

Thnaks,
Praveen.
by thumati.praveen
Fri May 30, 2008 8:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job behaviour is diffrent
Replies: 4
Views: 1111

job behaviour is diffrent

Hi All, I have one sequence and inside I am calling one job. If I run the job through the sequence it is not working but I run individually it is working fine. when I run through the sequence the lookups are not matching it is giving nulls because of nulls the transformer dropping the records.If I r...
by thumati.praveen
Tue May 27, 2008 6:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Capture stage
Replies: 20
Views: 6221

Roopanwita wrote:I coudn't find $APT_PAD_CHAR parameter.
Already I have made Ref as Bedor & Stream as After link and also set same logic (1 -insert,3 update)
But though there r changed value in reference no record is coming out of CC.
Both links should be same partion method.
by thumati.praveen
Tue May 27, 2008 6:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Capture stage
Replies: 20
Views: 6221

Roopanwita wrote:I m using Explict Key & Values option
The stream link should be after and refrence link should be the before in CC link order.Finally what Change code it returns identify if it is 3 then the source record was changed if it is 1 then new record.
by thumati.praveen
Tue May 27, 2008 6:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing part of job log using routine
Replies: 28
Views: 9004

I want Error detail My code looks like $INCLUDE DSINCLUDE JOBCONTROL.H Ans = 0 Errorid=0 ErrorDetail=0 jobname=' ' handleJob = DSAttachJob(JobName, DSJ.ERRNONE) If NOT(handleJob) Then Errorid = -99 Ans = DSGetJobInfo(handleJob, DSJ.LOGFATAL) Errorid = DSGetNewestLogId (handleJob, DSJ.LOGFATAL) Even...
by thumati.praveen
Tue May 27, 2008 5:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Capture stage
Replies: 20
Views: 6221

once check the link order and what method your using? (Example:Allkeys Explicit values,Explicit keys Explicit values like this...)