Search found 44 matches

by creatingfusion
Tue Sep 21, 2010 2:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file lookup problem
Replies: 17
Views: 8205

Probably you are doing the lookup in a transformer stage where you have the main link coming from the sequential file and the reference from the hash file stage. You might be updating the hash file somewhere first from a database stage probably ODBC. so in reference link remove the hash file and dir...
by creatingfusion
Tue Sep 21, 2010 1:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file lookup problem
Replies: 17
Views: 8205

if you have checked everything then its strange if you do not get any data from the hash to the look up although you have matching data. The job as i suppose you are looking at have some source link entering the lookup and there being a database link updaing the hash file that goes into the lookup r...
by creatingfusion
Mon Sep 20, 2010 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Require assistance in conversion from string to date
Replies: 2
Views: 1571

Require assistance in conversion from string to date

I have a requirement where I have to get the value in the output field as '00000000' which is a date field. The requirement is to be done in the transformer and gets further into IDOC Sap Stage. I tried the following function: StringToDate("00000000","%yyyy%mm%dd") It transforms ...
by creatingfusion
Wed Sep 15, 2010 12:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: log in the director
Replies: 2
Views: 1246

Re: log in the director

There also being settings in the DS Administrator Project Properties that restricts the logs as based on the last runs of the job. Verify that and that should give you a picture that how many runs of the logs are captured for the jobs in the project.
by creatingfusion
Wed Sep 15, 2010 12:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Output File error!
Replies: 11
Views: 3483

ulimit -a is giving me.. It should be a warning and not an error. It is not causing the issue it should be something else. Verify the file path and the file name and also the delimiter in the file properties probably quotes and others. Probably try to copy some sequential file stage from any other r...
by creatingfusion
Tue Sep 14, 2010 10:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substitute for server function SubString in PX
Replies: 2
Views: 1356

Substitute for server function SubString in PX

Hi,
My requirement is like there is a string say "abcpqrxyz"
i want it to convert it into "abc-pqr-xyz"

In server i could cut the strings and concatenate with "-" in between.

But i need to do this in parallel job.

Please suggest.
Thanks
Abhijit
by creatingfusion
Wed Aug 18, 2010 1:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load 60 Million records from SAP to DB2
Replies: 4
Views: 2208

Re: Load 60 Million records from SAP to DB2

can u please let me know a bit more on how to do the bulk loading
by creatingfusion
Wed Aug 18, 2010 1:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load 60 Million records from SAP to DB2
Replies: 4
Views: 2208

Load 60 Million records from SAP to DB2

Hi, I am trying to import around 60 Million Records from SAP R3 ABAP Stage to the DB2 Database. The source stage is the ABAP Program Stage to pull the records from R3 using the ABAP program. Then we are getting the data loaded into DB2 database without any transformation in between. In this process ...
by creatingfusion
Mon Aug 02, 2010 11:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join Stage error
Replies: 5
Views: 2254

Re: Join Stage error

If you are doing Inner Join on the Col1 the output would have one record.
So try to remove the duplicates with key being Col1 and then sort the records using the Hash Partitioning, before you do the join ...
Probably on doing that you wont be getting this error.
Thanks
Abhijit
by creatingfusion
Mon Aug 02, 2010 11:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing parameter
Replies: 5
Views: 3469

Re: Passing parameter

You can parameterize the query limit offcourse.
Check on the records how would you like to filter that into six groups based on which you may use the query limits in that. You can create that parameter in the Job properties .
Abhijit
by creatingfusion
Mon Aug 02, 2010 9:44 am
Forum: General
Topic: Execute Command Stage - Command ksh did not finished OK
Replies: 13
Views: 7111

include the following statement in the beginning of yours shell script if its not there....

#!/bin/ksh

Abhijit
by creatingfusion
Wed Jul 28, 2010 7:32 pm
Forum: General
Topic: Unable to Open Sequential File Stage
Replies: 6
Views: 2875

check the DNS name in the network setting if the project you are connecting is in server with a designated dns configuration suppose you have yours server at ABC@xyz.com check if the domain name xyz.com is added in the network setting DNS names if not add it else while you login to datastage put the...
by creatingfusion
Wed Jul 28, 2010 10:05 am
Forum: General
Topic: Delete the not compiled job error
Replies: 3
Views: 1745

Re: Delete the not compiled job error

just right click on the job name in the repository window in designer and say delete.... if it does not gets deleted then probably some issue with urs connection between client and server. try to compile the job i hope it should yet give error. Deletion of jobs have nothing to do with its status. If...
by creatingfusion
Wed Jul 28, 2010 9:40 am
Forum: General
Topic: Email Notification
Replies: 4
Views: 1750

Try doing using unix

Its true the SMTP mail server being not set up for offshore..... Also try sending mail using unix do a test if it works else check the log.... From UNIX you can send mail using the following command. mailx -s "Type Subject Here" mail_id\@domain < "file name to be mailed as content&quo...
by creatingfusion
Wed Jul 28, 2010 7:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find memory utiliztion of a parallel job?
Replies: 6
Views: 3548

You may try the command as..... ps -ef | grep DSD this would show all the datastage jobs running in the server and you can explore the process using the process id. Further regarding the memory utilization you may check the size the scratchdisk while the job is running the command du -g . or df -g .