Search found 459 matches

by T42
Thu Mar 10, 2005 11:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job owner
Replies: 9
Views: 4071

On UNIX, there are three type of priviledge: User - Group - Everyone. You can only have ONE specific type of access right for each file - although there might be some UNIX flavors out there that provided an extension of that. If anyone knows of any, let us know. You can restrict specific jobs to eac...
by T42
Thu Mar 10, 2005 11:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to split data into files?
Replies: 15
Views: 5852

The following document (as part of your DataStage PDF library), parjdev.pdf, have a chapter on this: Chapter 55: Specifying your own parallel stages.

How well do you know C++?

There are sample files within the PXEngine directory that you could use for custom stages.
by T42
Wed Mar 09, 2005 6:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: view read
Replies: 4
Views: 870

Or buy DataStage EE and let the code do the work for you most of the time. :)
by T42
Wed Mar 09, 2005 5:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Handling using Modify stage
Replies: 3
Views: 2030

Do a search for "Orchestrate" or "Modify" and "Null"
by T42
Wed Mar 09, 2005 5:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between DataSet and FileSet
Replies: 2
Views: 1803

On your parjdev.pdf document, read chapter 4 ("Data Set Stage") and Chapter 6 ("File Set Stage").

The PDF is provided with every client installation of DataStage, unless it was turned off.

Happy reading.
by T42
Wed Mar 09, 2005 5:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning in Remove Duplicates Stage
Replies: 2
Views: 1872

You are attempting to sort on all (or less) of the keys you're trying to remove duplicate on. You need to sort on all keys, PLUS one data field.
by T42
Wed Mar 09, 2005 5:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job owner
Replies: 9
Views: 4071

No. You shouldn't separate groups. In fact, you can not really separate groups on a Project-wide level. However, you CAN force an umask to 755, requring the user sole access to that file to run/edit/whatever, but strange things can happen when you attempts that. Why can't you set different groups on...
by T42
Wed Mar 09, 2005 5:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Priority of process
Replies: 5
Views: 1730

Actually, I believe you can adjust priorities in Windows. However, I do not know whether DataStage adheres to this NT feature, or even provide any control for this feature. For a clear indication that Windows does have this feature, go to Windows Task Manager, click on Processes tab, and right click...
by T42
Wed Mar 09, 2005 5:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Trannsformer column dropped
Replies: 12
Views: 8000

Aha!

Hmm.

Something tells me that Oracle is switching metadata on you. I am not sure why, or how. I do not have access to Oracle at the moment to play around with it. Best solution - Switch the metadata to whatever Oracle forces DataStage to use, and the warnings will go away.
by T42
Wed Mar 09, 2005 5:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to split data into files?
Replies: 15
Views: 5852

Sort the file and pass it to a Transformer stage . Use stage variable to compare the previous row , if its changes write to different file , else write to the same file. Like wise you may have accounts.txt and address.txt ..etc by using constraints mechanism. This does not address the "unknown...
by T42
Tue Mar 08, 2005 10:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before-SQL - To be committed only after the job finishes
Replies: 6
Views: 1958

Yes, but it suffer from the problem I mentioned above: Each node is independent of each other for the most part. It have little idea of what each other is doing. So.. Open and Close basically get run by all nodes. So for a 4 nodes job, you have 4 DB2 stages asking to drop the same index and recreate...
by T42
Tue Mar 08, 2005 10:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Trannsformer column dropped
Replies: 12
Views: 8000

If you have a metadata of "Number" -- it defaults to (38,0) (or in some versions of DataStage - (38,10)). You will need to do a manual conversion (DecimalToString() - and handle the null if there's one) if you want to use it as an integer. It's just the way things are with certain database...
by T42
Tue Mar 08, 2005 10:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remote Database setup
Replies: 3
Views: 3431

Contact Ascential for the latest copy of the DB2 Connectivity document. I believe it is called "DataStage EE Remote DB2 Configuration". There might also be a copy on the Ascential's forum download section. The guideline within the manual is incorrect. Hopefully you will find the document u...
by T42
Tue Mar 08, 2005 10:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job owner
Replies: 9
Views: 4071

Unfortunately, if you wish for the user to develop, run, and manage several jobs -- this would be very difficult to manage. That user will require general access to the DataStage engine (by default: dstage), and general access to the project folder in question. I am sure that it is possible somehow,...
by T42
Tue Mar 08, 2005 10:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in jobs with Funnel Stage
Replies: 5
Views: 2082

Yup. This is what's going on right now:

ETL::Dev([path])> ps -ef |grep DSD.RUN
[username] 606412 913512 0 11:07:30 - 0:00 phantom DSD.RUN [job] 0/0 [parameters]

The parent process is Director I have open right now.