Search found 53125 matches

by ray.wurlod
Mon Apr 07, 2008 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to write csv file
Replies: 2
Views: 815

The import warning is probably "first line is column headers" not being correctly set.

The export warning is specifically "output file full" - could be a full disk or a quota being exceeded.
by ray.wurlod
Mon Apr 07, 2008 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the method of partitioning ideal for my JOB?
Replies: 3
Views: 1199

Round Robin will preserve the generated order. However, they will be spread over the nodes mentioned in your configuration file. For example if you have four nodes your Data Set will receive: node #0: 1 5 9 13 ... node #1: 2 6 10 14 ... node #2: 3 7 11 15 ... node #3: 4 8 12 16 ... When you use View...
by ray.wurlod
Mon Apr 07, 2008 3:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Jobs updating the same Hash File
Replies: 8
Views: 2535

Welcome aboard.

The rule for Hashed File stage is "destructive overwrite" - last one in wins.

Therefore your "obviously" statement is incorrect.

But your job logic is dangerous - why not use two separate hashed files?
by ray.wurlod
Mon Apr 07, 2008 3:07 pm
Forum: General
Topic: RE: Helper Subroutines
Replies: 14
Views: 3818

Wrong. UniVerse is gone. It went away in 2000.

You have DataStage Engine database for storage within the DataStage server as well as a more "open" common Repository for which the choices, in version 8.0, are DB2, Oracle or SQL Server.

Things may change in future.
by ray.wurlod
Mon Apr 07, 2008 3:02 pm
Forum: IBM QualityStage
Topic: Debugging QualityStage
Replies: 2
Views: 1870

Not easily. You can certainly test Rule Sets independently. You can also include Peek stages (or compile in trace mode) so that you can record what goes into and comes out of the QS stages, but that's about all there is.
by ray.wurlod
Mon Apr 07, 2008 6:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server Architecture
Replies: 31
Views: 8455

Premium membership costs less than 30c (Rs12) per day, so is a very inexpensive way to enhance your knowledge about DataStage by being able to read the entirety of the five premium posters' contributions, as well as other benefits that, although slow in arriving, will be announced shortly (let's sa...
by ray.wurlod
Mon Apr 07, 2008 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server Architecture
Replies: 31
Views: 8455

Currently Java is not used by the DataStage Engine. Java is only used by the stages that work with Java - essentially those in the Java PACK (and maybe deep within some of the XML stages, I'm unsure about those). Ernie may have more to say on that. Looking forward, and given that IBM has decided tha...
by ray.wurlod
Mon Apr 07, 2008 6:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to set up alert mechanisms based on the DS logs
Replies: 8
Views: 2595

So you want to do in code what you do manually in Director log view?

Look at the Help for DSGetNewestLogID() and DSGetLogEvent() functions.
by ray.wurlod
Mon Apr 07, 2008 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Error: data source is empty
Replies: 6
Views: 1415

Verify that the SQL being sent from DataStage is exactly the same as what you executed through QTODBC. You may need to involve your DBA to monitor the connection to establish what query is actually being received by the database server. Also, please report whether you received any warnings or errors...
by ray.wurlod
Mon Apr 07, 2008 6:21 am
Forum: Site/Forum
Topic: How did you learn DataStage?
Replies: 34
Views: 29121

I posted as "other" because I was an employee of VMark Software then Ardent Software then Informix then IBM. I learned DataStage by preparing to teach classes and by providing technical support for the product.
by ray.wurlod
Mon Apr 07, 2008 4:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: tracing log from director using parallel routines
Replies: 8
Views: 2704

Based on your other post, I'd suggest you come up with a detailed specification of what you wish to achieve first. Otherwise you and we will be wasting time.
by ray.wurlod
Mon Apr 07, 2008 4:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to set up alert mechanisms based on the DS logs
Replies: 8
Views: 2595

DataStage will never report "number of records inserted in table". DataStage reports "number of rows sent to table" - whether or not they are successfully inserted depends upon the database server. If it generates error messages, these are returned to DataStage and logged. Thus, if you want to calcu...
by ray.wurlod
Mon Apr 07, 2008 4:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Error: data source is empty
Replies: 6
Views: 1415

It's not an error. "Is empty" means that your query returns 0 rows. Try the same query using any other client (not DataStage) - you will get the same result.

If that's not what you require, you will need to review the constraints in your SELECT statement (or stored procedure).
by ray.wurlod
Mon Apr 07, 2008 3:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookup warning
Replies: 4
Views: 2477

Then would you please, as originator, mark the thread as Resolved?
by ray.wurlod
Mon Apr 07, 2008 3:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing Oracle table from Job control
Replies: 5
Views: 1403

Read the Oracle table using a job - probably a server job if the number of rows is small. The target of this can be a file (which you can read using an Execute Command activity in the job sequence), or you can put a value into the server job's "user status" area and recall it from there. Once you ha...