Search found 45 matches

by mujeebur
Wed Dec 20, 2006 1:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DATASTAGE ERROR
Replies: 5
Views: 3118

Re: DATASTAGE ERROR

Just to know more about the error, Is that job running to access to Oracle 10g ?
by mujeebur
Mon Nov 27, 2006 4:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01008: not all variables bound
Replies: 6
Views: 5343

srinagesh, How did you solve the issue? We have facing the similar issue with migration of 6.0 to 7.5.1
by mujeebur
Mon Aug 14, 2006 11:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in Oracle Enterprise Stage
Replies: 2
Views: 1058

Yes, I did. Also it was enabled in project level.
by mujeebur
Mon Aug 14, 2006 10:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in Oracle Enterprise Stage
Replies: 2
Views: 1058

Error in Oracle Enterprise Stage

Its a runtime Error of PX Job. Saying that 'error in decribing the table XXXX on the column YYYY on Oracle_Enterprise_Stage_2' XXXX - table name , YYYY- column name. My Job design is ; Oracle Enterprise Stage1------- -> Xfm-------------> Oracle Enterprise Stage 2 Here, my imput column names were dif...
by mujeebur
Mon Aug 14, 2006 9:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: list of background processes in DataStage
Replies: 3
Views: 2362

Try this out:

$ps -ef | grep dsrpcd

Will give you the DS engine path and to know whether DS is running or not.

$ps -ef | grep ds

Will give all the clint's login information

$ps -ef | grep phantom

Will give you current running of Jobs.
by mujeebur
Tue Jun 06, 2006 11:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To find out duplicate records
Replies: 9
Views: 6535

Its a round about way, but you can achieve what do you want. From the transformer output your data into both DataSet(hashed file) and a sequential file. DataSet will automatically removes the duplicates based on the key column. Now you can compare/diff both DataSet and Seq File to output the duplica...
by mujeebur
Wed Apr 05, 2006 12:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: kill job using job id
Replies: 15
Views: 8356

I tried killing of the Job from UNIX command line promt using PID. But the job did not stop and didn't run either. It just hanged out there. Later I realized that , we SHOULD not kill the job like so in DS.

You could stop the job via Director or Stop via DS Administrator.
by mujeebur
Mon Mar 27, 2006 10:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parrellel jobs and C++ compiler
Replies: 6
Views: 1701

does this forum having anyone posted their experiences on creating logical node in Windows.
by mujeebur
Fri Mar 24, 2006 1:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parrellel jobs and C++ compiler
Replies: 6
Views: 1701

Just a curious question , If windows environment having single processor ( 1 CPU) does it it felxible to create one more logical node to run PX job ?
by mujeebur
Fri Mar 24, 2006 10:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: report generation
Replies: 9
Views: 3494

Re: report generation

I did similar thing by below, of course may be a better way that could find here!. On the Job conrol , execute below: OS = "UNIX" JobNm = DSGetJobInfo(DSJ.ME, DSJ.JOBNAME) SqlLoadCmd = ScriptFileDir : "ShellScript.sh " :SqlScriptFile Call DSExecute(OS, SqlLoadCmd, Output, RtnCode...
by mujeebur
Thu Mar 23, 2006 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to insert into oracle
Replies: 4
Views: 2104

Re: solution

could you please explain how did you got the answer !
by mujeebur
Mon Mar 20, 2006 1:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trimming issue with ORABULK
Replies: 5
Views: 1286

My question is : The trailing spaces are truncating on the character variable's data.

eg: "Pennsylvania @@@@" is writing to datafile from ORABULK
as "Pennsylvania" ( where @=space )
by mujeebur
Mon Mar 20, 2006 11:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Find name of the Job
Replies: 2
Views: 891

How to Find name of the Job

I am sorry , I did search , but could not find exatcly what I need , if its already answered.

How to find the JobName which generetes Hashed file ?
by mujeebur
Fri Mar 17, 2006 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trimming issue with ORABULK
Replies: 5
Views: 1286

Trimming issue with ORABULK

Hope this issue somebody encountered. When I generating the datafile with ORABULK stage , the traling spaces in the input string will be taken off. May I have any explanation on this ? eg: Input File Data ------------------- sno, name 1,"Pennsylvania " 2,"New Jersey " Output File...
by mujeebur
Wed Mar 15, 2006 12:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP only when file exists
Replies: 4
Views: 1273

Re: FTP only when file exists

Write a shell script with the logic of ftp and not fail if no file exists and call that in Job Control of DataStage Job.