Search found 53125 matches

by ray.wurlod
Thu Mar 27, 2008 10:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how and which stages are used to main version in SCD 2
Replies: 12
Views: 6058

There are at least five different ways for generating surrogate keys which you would have discovered had you bothered to Search rather than hijacking a thread that is more than two years old.
by ray.wurlod
Thu Mar 27, 2008 8:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ModifyStage::Possible range limitation.
Replies: 4
Views: 4409

Because of Oracle - blame Oracle bin Larry.

For example Integer maps into Oracle as NUMBER(38) which the rest of the world would understand as Decimal(38,0).
by ray.wurlod
Thu Mar 27, 2008 7:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ModifyStage::Possible range limitation.
Replies: 4
Views: 4409

That's an alert, notifying you that a 255 character string may contain a number that is too large to load into a Decimal with precision less than 255. You could try adding a NOWARN specification, but probably will end up adding a message handler to demote this particular alert to informational. Data...
by ray.wurlod
Thu Mar 27, 2008 7:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob (-jobinfo works, but -run does not)
Replies: 30
Views: 7894

What happens if there are no quotes around the project name?
by ray.wurlod
Thu Mar 27, 2008 7:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: connecting postgres using odbc drivers thru datastage
Replies: 10
Views: 17162

Which odbc.ini file were you using - the one in DataStage or the one in branded_odbc - when you did this test?

Was there anything useful in the trace log?
by ray.wurlod
Thu Mar 27, 2008 6:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: connecting postgres using odbc drivers thru datastage
Replies: 10
Views: 17162

That's a completely different error. Read both error messages carefully. "Could not be found" and "Could not be loaded" are not the same thing.
by ray.wurlod
Thu Mar 27, 2008 6:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column Export Formatting
Replies: 1
Views: 714

Code: Select all

Trim(TheString, "0", "R")
by ray.wurlod
Thu Mar 27, 2008 6:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversation
Replies: 12
Views: 2832

Beat me to it! I'd just spotted the same thing.
by ray.wurlod
Thu Mar 27, 2008 5:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IsValid() problems with non-standard dates
Replies: 21
Views: 5839

How about assuming that the square brackets mean "optional" and that double-quote characters are needed for the first argument?

Code: Select all

IsValid("date %yyyy%ddd",In.Col) 
by ray.wurlod
Thu Mar 27, 2008 5:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: fatal error: configuration does not contain the invokingnode
Replies: 1
Views: 741

Welcome aboard. Learn to read everything that error messages tell you. In this particular case your configuration file (whose pathname is given by the APT_CONFIG_FILE environment variable) does not include the node name of the machine on which DataStage server is installed. I daresay you have not ed...
by ray.wurlod
Thu Mar 27, 2008 5:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookup anamolky
Replies: 19
Views: 3909

This should be your thought process for text files. Text files do not really have data types - only text. Therefore there can be no concept of NULL in a text file. When you specify metadata for a text file you can specify how NULL is represented, either on a field-by-field basis, or globally. If it...
by ray.wurlod
Thu Mar 27, 2008 5:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installaton of Information Server
Replies: 5
Views: 1673

Mandatory, but globally rather than for each project.
by ray.wurlod
Thu Mar 27, 2008 5:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installaton of Information Server
Replies: 5
Views: 1673

Mandatory, but globally rather than for each project.

The Metadata Delivery service is how metadata are moved to and fro between consumers (such as DataStage Server) and the XMETA database.
by ray.wurlod
Thu Mar 27, 2008 5:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Control characters inserted into Oracle
Replies: 11
Views: 2806

Does any sequential file stage in your job specify DOS-style line terminators, or process a file that was created in a Windows environment?

Ctrl-Z is the Windows end-of-file marker character.