Search found 53125 matches

by ray.wurlod
Wed Jul 19, 2006 2:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ds takes fields from incorrect lookup
Replies: 10
Views: 2171

A virtual Data Set is the structure. Data are buffered through them; it is not necessary to fill it before draining any rows from it. A Copy stage can be optimized out by the compiler. I suspect the support analyst was trying to get a feel for whether your partitioning algorithm was distributing row...
by ray.wurlod
Wed Jul 19, 2006 2:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit conversion from source type "int32" to de
Replies: 8
Views: 8288

The warning is simply alerting you to the fact that some int32s have more than six digits. If you're prepared to ignore this information create a message handler to demote this particular warning to an informational message.
by ray.wurlod
Wed Jul 19, 2006 2:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating Time_Key from TimeStamp giving Error
Replies: 4
Views: 1106

You may need to provide a format string for the timestamp. The default default for Timestamp is "%yyyy-%mm-%dd %hh:%nn:%ss" but your data seem to be "%mm/%dd/%yyyy %hh:%nn:%ss".
by ray.wurlod
Wed Jul 19, 2006 2:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Capture-duplicate records show different change_codes
Replies: 5
Views: 932

What columns have you identified as key? Have you identified any further comparison columns?
by ray.wurlod
Wed Jul 19, 2006 2:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage xe/390
Replies: 6
Views: 1265

DataStage 390 generates COBOL and JCL which are run on a mainframe running OS/390. Do you have one of these? If not, your choice is already made. There is an extra charge for a DataStage 390 licence. Parallel and server job run on UNIX (or Windows) servers, and can access mainframe data through gate...
by ray.wurlod
Wed Jul 19, 2006 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: regarding extracting data from postgresql
Replies: 4
Views: 996

Writing your own plug-in stage is (theoretically at least) also an alternative. This is the reasoning behind the entire plug-in architecture of DataStage; to be able to create components to do things that the standard one's can not do. Is there an API for communicating with postgresql ? The manual P...
by ray.wurlod
Wed Jul 19, 2006 1:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is there a place where all error messages are documented?
Replies: 6
Views: 1284

Yes, in theory. But they are free. They can also be given out during events such as the Server to Parallel Transition Lab. But ask your support provider first; let them earn some of your maintenance moneys!
by ray.wurlod
Tue Jul 18, 2006 8:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sybase and Oracle errors
Replies: 27
Views: 9465

Don't forget to ensure that the 32-bit libraries occur ahead of the 64-bit libraries in the shared library search path used by DataStage processes (unless you're on Tru64 or Itanium machines).
by ray.wurlod
Tue Jul 18, 2006 6:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between Server and Enterprise Edition
Replies: 11
Views: 2148

When you're number 10 you have to try harder. (Paraphrase of old car rental ad)
by ray.wurlod
Tue Jul 18, 2006 6:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Waiting for file to finish and append
Replies: 5
Views: 1210

Do the append in an after-job subroutine. Call ExecDOS and execute the command type file2 >> file1. By the time an after-job subroutine is executed, all output links (and the files to which they refer) have been closed.
by ray.wurlod
Tue Jul 18, 2006 6:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reposistory missing Error
Replies: 0
Views: 1173

It would appear that something has gone badly awry in this project. I assume you are importing from a DataStage export file. My best advice would be to go into the Manager client and delete all "your" objects (not the ones supplied with DataStage) - jobs and routines particularly. Then re-import the...
by ray.wurlod
Tue Jul 18, 2006 6:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unzip in DS
Replies: 10
Views: 2710

The word is "right".

A UNIX script rite is something too horrible to contemplate.
by ray.wurlod
Tue Jul 18, 2006 6:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Did you know this about TRIM()?
Replies: 12
Views: 2716

If Char(N) was specified it was obviously for a reason (ok, or ignorance, or the default in the tool being used). It's in the spec, you have to follow what the spec says. Or challenge the spec, come to the right agreement, and get that decision recorded and signed off . This last step is commonly kn...
by ray.wurlod
Tue Jul 18, 2006 6:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Join on Null
Replies: 8
Views: 2054

Cats(A.Col=B.Col ) = sv1 If IsNull(sv1) Then sv1 Else @NULL = sv2 It is not permissible to assign to the @NULL system variable as you have done. I suspect you are trying to indicate "assign to". Maybe ==> would have been a better symbol. What are you trying to achieve with the Cats() function? As y...
by ray.wurlod
Tue Jul 18, 2006 6:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error when using stored procedure
Replies: 2
Views: 1210

It is not possible to call a stored procedure from a Transformer stage (other than through a custom Routine, and even there it is not a good idea). So you don't understand completely what your job design is actually doing. A passive stage (for example ODBC or Stored Procedure stage) exposes the meth...