Search found 50 matches

by Mat01
Fri Feb 17, 2006 8:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookup generating null string
Replies: 4
Views: 2423

Thanks for your answers. I found the reason why it didn't work. The lookup will put a null in your nullabe output field if the corresponding input field is also nullable. Otherwise, the field gets a default value which does not respond to the tests: IsNull() or = ""

Thanks,

Mat
by Mat01
Fri Feb 17, 2006 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Joining Billions of records with millions
Replies: 9
Views: 3910

Hi Senthil, You would need a LOT of RAM to use a lookup stage there! I'd recommend a join stage since the amount of memory used will be much lower. Anybody else working on the same server will appreciate you for this. Also, sort the DB2 ouput by your join keys, this will help. HTH, Mat PS: Think abo...
by Mat01
Fri Feb 17, 2006 7:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 UDB Remote Configuration
Replies: 4
Views: 1582

Hi Rajanalla,

Sorry but I have never tried that. You went further than me. Perhaps you could recontact IBM.

Regards,

Mat
by Mat01
Thu Feb 16, 2006 9:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 UDB Remote Configuration
Replies: 4
Views: 1582

Hi, If you try to configure the way the manual tells you to, you will need to install DataStage on the remote server too. This why it does a rsh connection, it is treating both your servers as part of a cluster and it wants to start DataStage on the remote server. There is a way to trick DataStage i...
by Mat01
Thu Feb 16, 2006 9:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookup generating null string
Replies: 4
Views: 2423

lookup generating null string

Hi All, I have a problem with the values returned by a lookup. My field is defined as Char (1) and some of the values are not matched. I have set the lookup to continue in this case. My understanding is that the value returned by the lookup will be set to null when no match was made. However, the lo...
by Mat01
Tue Feb 14, 2006 5:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Version Control freezing when selecting components
Replies: 3
Views: 1283

Thank you for your answers.

I have about 20 jobs in my VC project and I waited about 5 minutes before killing the process.

I am using version 7.5

Thanks,

Mat
by Mat01
Mon Feb 13, 2006 10:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Version Control freezing when selecting components
Replies: 3
Views: 1283

Version Control freezing when selecting components

Hi All, I have a problem with Version Control. Every time I select components the progress bar appears but the client freezes there and needs to be stopped from the task manager. I select components using right-click in left pane-->select-->User (Or Batch, Release, etc.) Has anybody experienced simi...
by Mat01
Fri Jan 13, 2006 2:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 API vs DB2 UDB enterprise
Replies: 5
Views: 3701

DB2 UDB stage usefulness relies on its ability to execute DB2 treatment in parallel. Hence, the speed of execution will be greatly reduced if you switch to a API stage on a multiprocessor server. There are ways to connect to another server with the DB2 UDB: The first and IBM recommended method is to...
by Mat01
Thu Sep 08, 2005 12:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TIMESTAMP
Replies: 3
Views: 1271

Hi,

Try this one: timestamp_from_string[timestamp_format](string)

Converts the string to a timestamp
representation
using the specified timestamp_format.

By default, the string format
is %yyyy-%mm-%dd
hh:nn:ss.

HTH

Mat
by Mat01
Thu Sep 08, 2005 11:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: After-job subroutine
Replies: 3
Views: 1642

Under UNIX, you should put a preceding $ char to call a variable.

Code: Select all

File_Name=my_file.csv

dsjob -run -param Test=$File_name ifmdsd01 test_batch_after
HTH

Mat
by Mat01
Thu Jul 14, 2005 7:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UDB configuration
Replies: 3
Views: 2142

Hi Vbeeram,

You should have a file named .dshome at the root of your machine. This file contains one line only which is the path to your DSEngine directory.

ie:
as0006s@sodium01(/) $ cat .dshome
/usr/local/datastage/Ascential/DataStage/DSEngine

HTH

Mat
by Mat01
Tue Mar 15, 2005 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read XML file in PX
Replies: 14
Views: 7452

Thank you for your reply,

I'm not sure I follow you...How do you the use of the column import? I'd like to see an example if you can.

Thanks

Mat
by Mat01
Mon Mar 14, 2005 1:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read XML file in PX
Replies: 14
Views: 7452

Read XML file in PX

Hi All, I am trying to use the XML stages to read and transform XML data. I was able to read my file in Server (Thanks Kim for your ETLstats examples) but I haven't found a way to do this in PX. The main problem seems to be that I cannot read an entire file as one single field in PX. Hence, The XML ...
by Mat01
Fri Dec 10, 2004 8:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key Suggestions from the experts
Replies: 4
Views: 3162

One solution is to modify your sequence to add one step to get the value and one to assign it to a job. What I have is a sequence like the following: 1. Job to get DB Key and write to a file --> 2. Routine to get the value from UNIX (cat) --> 3. Job for your surrogate key job (Surrogate key stage us...