Search found 53125 matches

by ray.wurlod
Sat Jul 31, 2010 6:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is its significance ?
Replies: 1
Views: 753

All communication with DB2 will be performed on machines vheter2 and vheter3, possibly because these are the only one on which DB2 client software is installed. Most of the other processing will default to being executed on vheter1 unless stages are constrained to execute in node pool db2 (which is ...
by ray.wurlod
Fri Jul 30, 2010 2:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Format
Replies: 5
Views: 1690

The functions you require are StringToDate() and DateToString().

Research these in the Parallel Job Developer's Guide
by ray.wurlod
Fri Jul 30, 2010 2:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to run the same sequencer over and over each day
Replies: 7
Views: 1693

You can create a parent sequence that looks after the loop within a day, and schedule this parent sequence once per weekday.
by ray.wurlod
Fri Jul 30, 2010 1:51 pm
Forum: IBM QualityStage
Topic: QS - character concatenate investigate - warning message
Replies: 6
Views: 5242

Are you able to remove Unicode from all the fields you are mentioning in the concatenation as a test? It may be that the internal result of concatenation is the "field" that is at fault here.
by ray.wurlod
Fri Jul 30, 2010 5:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to determine current working directory!
Replies: 4
Views: 2772

What you type in is for your user ID. DataStage jobs probably do not run under your user ID. Look at the second event in the job log to determine whether the PWD environment variable is set.
by ray.wurlod
Fri Jul 30, 2010 5:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: some error about StringtoData function
Replies: 2
Views: 1502

Date data type does not have a format - it is stored in a binary format. StringToDate() function must include a format string that describes the actual format of the input string, in your case %yyyy-%mm-%dd. To format that for output you need to convert back to a string, probably using a DateToStrin...
by ray.wurlod
Fri Jul 30, 2010 5:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transpose Columns into rows
Replies: 13
Views: 11062

Essentially you have to include the numeric column headings' values as the sources for the pivot column code - given that they are constant, you can use a Transformer stage to generate the values.
by ray.wurlod
Fri Jul 30, 2010 1:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: decimal field from database to sequential stage
Replies: 1
Views: 780

No idea where the underscore is coming from, unless you have somehow managed to declare your decimal placeholder as "_". The leading non-significant zeroes are normal for Decimal data type - they indicate that precision is being handled properly. You can get rid of these by converting to a...
by ray.wurlod
Fri Jul 30, 2010 1:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transpose Columns into rows
Replies: 13
Views: 11062

You forgot to include the code column in your Pivot stage as a pivoting column.
by ray.wurlod
Fri Jul 30, 2010 1:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading a dat file and loading into oracle table
Replies: 2
Views: 1387

Oracle is ... different. You must ensure that the date you provide to Oracle matches the default date picture Oracle uses (or override that with appropriate functions). Oracle DATE data type always includes a time component. Therefore a query against the table is likely to return the time component ...
by ray.wurlod
Thu Jul 29, 2010 10:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I force an error on a negative DB2 Return Code?
Replies: 12
Views: 4640

There isn't, in any version, a means to promote message severity. What you could do is to create an after-job subroutine to check the log for this particular message and generate a fatal error at that point, though any data processed by the job will remain processed.
by ray.wurlod
Thu Jul 29, 2010 8:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do I get different record type into 1 dataset??
Replies: 6
Views: 1777

In either a sequential file or a data set you could use a record schema that contains three fields, field1, field2 and "the rest" (as a VarChar), at the expense of some parsing.
by ray.wurlod
Thu Jul 29, 2010 8:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Message Handler!!
Replies: 2
Views: 1356

Not true. Any named message handler can include handling of multiple message IDs. Further, you can attach more than one message handler to a job.
by ray.wurlod
Thu Jul 29, 2010 8:42 pm
Forum:
Topic: Operational Metadata for a job
Replies: 10
Views: 4721

We are all presuming that you enabled generation of operational metadata when you submitted the job run requests. Can you please verify that this was done?
by ray.wurlod
Thu Jul 29, 2010 8:40 pm
Forum: IBM QualityStage
Topic: QS - character concatenate investigate - warning message
Replies: 6
Views: 5242

Your use of the extended property Unicode is inconsistent across the stage. A ustring[max=100] is a VarChar(100) with Unicode set, a string[max=100] is a VarChar(100) with Unicode not set. Find this discrepancy and fix it.