Search found 53125 matches

by ray.wurlod
Mon Mar 01, 2004 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to read this file
Replies: 9
Views: 3154

Splitting the file into three outputs is easy. Read the file with a sequential file stage with one VarChar column defined. Define a Transformer stage with three outputs. Constraint expressions are: Matches "0X' '1N0N" (question and sequence) Matches "1N0X" (response option) Matches "1A0X" (question ...
by ray.wurlod
Mon Mar 01, 2004 2:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: [Resolved]Poor Performance high CPU%
Replies: 16
Views: 4740

Can you monitor the system while this job is running to determine which processes are hogging the CPU? (It was the CPU usage that you thought was high, as described in your subject? If not, monitor the appropriate resource.)
by ray.wurlod
Mon Mar 01, 2004 2:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems creating large hash files
Replies: 14
Views: 4948

As soon as your data looks like getting near to 2GB (even 1.5GB for a safety margin), you can't readily use the default dynamic hashed files; you must switch to 64-bit addressing (or Distributed files, which is an entirely different topic, and you don't get memory caching). Ideally, then, you should...
by ray.wurlod
Sun Feb 29, 2004 11:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: [Resolved]Poor Performance high CPU%
Replies: 16
Views: 4740

chulett wrote:Add a Transform

Craig really means a Transformer stage, not a Transform! 8)
by ray.wurlod
Sun Feb 29, 2004 7:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Error - Informix - AIX
Replies: 3
Views: 2490

Informix IDS has always been notorious for needing exact version match with ODBC driver. Check with IBM (now the owners of Informix IDS) exactly what version of ODBC is required for your version of IDS.
by ray.wurlod
Sun Feb 29, 2004 7:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to migrate data stage jobs into production environment
Replies: 6
Views: 5134

It doesn't matter.
DSAttachJob attaches the highest version-numbered released job if there are any present.
You can (should?) use DSGetJobInfo(hJob, DSJ.JOBNAME) to return the real name of the job being executed (for example MyJob%%rel20.2.1).
by ray.wurlod
Sat Feb 28, 2004 5:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: BuilOP
Replies: 2
Views: 1071

The obvious one is to research smarter algorithms. For example if your 1500 iterations per row processed is to determine whether something exists in an array, contemplate more efficiently searched data structures. Even exiting the loop as soon as something has been found, rather than completing all ...
by ray.wurlod
Sat Feb 28, 2004 5:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: manufacturing data
Replies: 6
Views: 1891

Does that technique work in the PX environment if you have more than one data partition? :?
Yes, you could work around it. Obviously you should use a configuration file specifying just one processing node for this job.
by ray.wurlod
Sat Feb 28, 2004 5:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Zero filling integers
Replies: 0
Views: 502

Zero filling integers

A recent post (m) suggested this code as a means of generating a month with a leading zero. realMonth=right('0':jMonth, 2) In this case, jMonth was a separate column. Possibly a better method is to use Fmt(jMonth,"R%2") which handles the case that jMonth has more than two c...
by ray.wurlod
Sat Feb 28, 2004 6:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Starange Problem
Replies: 9
Views: 2442

Does the job that pre-loads the hashed file that you use for reference lookups Trim the values on the way in, and declare the description field to be the key and the code field to be the non-key column?
by ray.wurlod
Sat Feb 28, 2004 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read only Environments
Replies: 14
Views: 3224

kduke wrote:DS_OBJECTS should be DS_JOBOBJECTS. Must be tired.
Was. Duly edited. Thanks for the heads-up.
by ray.wurlod
Sat Feb 28, 2004 6:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Batch Job for deleting a hash file
Replies: 11
Views: 3055

The error message
Unable to open "" file.
suggests that the parameter value is not being properly transmitted. Check that you have spelled it and used the same combination of upper and lower case letters in your code as in the parameter definition.
by ray.wurlod
Sat Feb 28, 2004 6:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Error - Informix - AIX
Replies: 3
Views: 2490

In the ODBC stage, try clicking the Get SQL Info button. This retrieves what the driver expects as the quote and separator characters, which are used in the generated SQL.
Then recompile and try View Data.
by ray.wurlod
Sat Feb 28, 2004 6:18 am
Forum: Infosphere Master Data Management
Topic: RazzaDS and Date/Time dimensions [Razza]
Replies: 2
Views: 8885

Doesn't really make sense. Typically you populate your date dimension well into the future. About the only thing that would ever change would be the holiday information - unless a Pope gets the notion to fiddle with the calendar again! So the date dimension should require little if any updating. IMHO.
by ray.wurlod
Fri Feb 27, 2004 3:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read only Environments
Replies: 14
Views: 3224

From Administrator client Command window or in a telnet session in the DataStage environment in your project, execute the following commands. Commands are case sensitive; you need all upper case as shown. Job designs UPDATE DS_JOBOBJECTS SET READONLY = 'RO' WHERE READONLY = 'NRO'; Routines UPDATE DS...