Search found 459 matches

by Minhajuddin
Mon Jun 09, 2008 11:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: log tables
Replies: 2
Views: 1431

Once again, Please post descriptive posts :shock:

You are not getting any help by posting this kind of questions.
by Minhajuddin
Mon Jun 09, 2008 11:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: taking backup
Replies: 3
Views: 1995

Welcome aboard :D You seem to be new to DSXchange, So when you post something, be specific about what you want. By doing this you are helping us help you. Now, with what you have posted I am assuming that you want to take backup of datastage code (jobs, routines, etc,.). You can do this using the Da...
by Minhajuddin
Mon Jun 09, 2008 10:57 am
Forum: General
Topic: Arnd Hits 10K
Replies: 13
Views: 10847

Now, somebody is giving Ray and Craig some competition ;)

No offense! I can not afford offending you guys ;)
by Minhajuddin
Mon Jun 09, 2008 10:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic
Replies: 2
Views: 1132

Your logic is not clear from the example you've posted. I am assuming that you want to send the records which DO NOT have a NULL in column 1 in the output and that you don't want duplicates on col2 in the output. You can read the file through a single sequential file stage (by adding two File proper...
by Minhajuddin
Mon Jun 09, 2008 10:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while running parallel jobs on Windows 2003 Server
Replies: 6
Views: 2008

That's good info, I thought all the versions from DS 7.5x2 onwards can be installed on a Windows server.
by Minhajuddin
Mon Jun 09, 2008 10:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting the total number or records from a dataset
Replies: 11
Views: 6713

ray.wurlod wrote:The dsrecords command is available on all platforms. It has an undocumeted -n option for returning just the number (not the "records" word). ...

Ray, How did you learn about so many hidden tricks ...
What's the secret?
by Minhajuddin
Mon Jun 09, 2008 10:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Funnel Clarification
Replies: 7
Views: 3101

If I am not wrong the OP at first wanted the data to be collected from each link and dump the output on the output link i.e. take the data from the first input link and dump it on the output link then do the same for the second, third and fourth links. And then the "requirement" has change...
by Minhajuddin
Mon Jun 09, 2008 10:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column Import Issue
Replies: 5
Views: 1811

Do any of the rows have a NULL value in the column which you are splitting?
by Minhajuddin
Sun Jun 08, 2008 11:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column Import Issue
Replies: 5
Views: 1811

Column import stage doesn't need any keyed partitioning because it doesn't work on any keys. So, you don't even need "Entire Partitioning". And if Entire partitioning is used, then you'll get one record repeated as many times as there are nodes in your config file. So, now about your probl...
by Minhajuddin
Sat Jun 07, 2008 12:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Funnel Clarification
Replies: 7
Views: 3101

If you set the funnel type to "Sequence" it should give you the desired output.
It copies all the records from the first input link, and then all the records from the second input link and so on....
by Minhajuddin
Sat Jun 07, 2008 12:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compile transformer error when a constraint is used
Replies: 4
Views: 1839

Do a Trim(IsNotNull()) instead of a IsNotNull(Trim())
by Minhajuddin
Fri Jun 06, 2008 1:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting the total number or records from a dataset
Replies: 11
Views: 6713

There is an easier way to get the count of records in a dataset.
You can run:

Code: Select all

$APT_ORCHHOME/bin/dsrecords <absolute_path_of_dataset>
This would give you the number of records in the dataset. We use this on a Windows server, I am not sure if this is available in DS on unix.
by Minhajuddin
Thu Jun 05, 2008 12:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Virtualisation in datastage 7.5x2 version
Replies: 5
Views: 2363

You've put up two posts without actually telling us what you mean by "virtual concept". But, I guess you might be asking if Datastage works on a virtual machine (as Craig guessed). You can run Datastage on VMware, I do that all the time (mine is a test machine). You shouldn't expect any di...
by Minhajuddin
Wed Jun 04, 2008 10:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to run a sequential file in parallel mode?
Replies: 6
Views: 10185

It's funny that if "Number of readers per node" is set to "n" it doesn't run "n" readers per every node. It actually reads using "n" readers on just one node. I guess the guys at Ascential didn't name it properly, It should have been "Number of readers pe...
by Minhajuddin
Wed Jun 04, 2008 10:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise and OCI Stages
Replies: 5
Views: 2464

All the stages present in the "parallel job palette" can be used in a parallel job. The palette you see to the left in the Datastage designer changes based on the type of job you develop, So when you develop a parallel job you can not (can not as in you won't be able to not that you should...