Search found 53125 matches

by ray.wurlod
Thu Jun 17, 2004 4:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: server routine can not execute sql
Replies: 4
Views: 1288

The ODBC drivers that ship with DataStage can be used for 30 days then "they" want you to pay for the privilege; "they" in this case being the vendors of the drivers, Data-Direct Technologies. It would be better - in my opinion - were they up-front about this, rather than to suck users in with the u...
by ray.wurlod
Thu Jun 17, 2004 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting UTF8 to ASCII file and back to UTF8
Replies: 9
Views: 6002

If you have Japanese characters in the input you will need the correct Japanese map to translate them when reading the file. There are many different encodings of Japanese characters; sometimes we even find that different columns are encoded differently, or that the map changes during a data stream ...
by ray.wurlod
Thu Jun 17, 2004 4:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cosort plug in datastage Version 7.0
Replies: 1
Views: 601

Is the COSORT_HOME environment variable set in the dsenv file? This is the only place where DataStage processes can be reliably expected to have initialized environment variables.
by ray.wurlod
Thu Jun 17, 2004 4:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timestamp addition
Replies: 2
Views: 856

Welcome aboard! :D You have two choices; you can convert to internal date and time formats and perform the arithmetic then convert back to timestamp format, or you can deal with the substrings in the timestamp and perform the arithmetic on these. The latter works because there are effectively no dat...
by ray.wurlod
Thu Jun 17, 2004 4:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems with dates
Replies: 9
Views: 4822

Transforms do not have the capability to deal with job parameters. (I am sure this is documeted somewhere; it is obvious when you use the Expression Editor and no "job parameter" appears on the list of available operands.) If you need to use a parameter you will have to use in-line expression within...
by ray.wurlod
Thu Jun 17, 2004 2:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Install parallel Extender
Replies: 1
Views: 1350

The software is on the CD, but you need a separate licence. In version 7, parallel extender is called DataStage Enterprise Edition (or DataStage EE) - this is one of the authorization codes you can enter when installing. You can NOT license the Enterprise Edition from the Administrator client's lice...
by ray.wurlod
Wed Jun 16, 2004 9:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: server routine can not execute sql
Replies: 4
Views: 1288

Looks like you are writing code using BCI functions. Any time a BCI function returns anything other than SQL.SUCCESS (0), you need to remove any information from the handle in question using SQLError(). So, after your SQLExecDirect() call, what values are returned by the SQLError() function? It may ...
by ray.wurlod
Wed Jun 16, 2004 6:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: time calculations
Replies: 4
Views: 1091

Would that be ten Char(1) columns, or ten Char(10000) columns? How fast can your disks/network deliver data? Are you partitioning the data in any way to take advantage of parallel processing? How fast and how many are your CPUs? How much memory is available? Is the weather fine or raining? (Only jok...
by ray.wurlod
Wed Jun 16, 2004 4:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination
Replies: 2
Views: 1139

What warning messages are in the job log of (a) the sequence, and (b) the controlled jobs? Reset them all, then check also for any "from previous run..." message, which might contain additional diagnostic information. Did all three jobs abort? What, if any, were your trigger settings in the job sequ...
by ray.wurlod
Wed Jun 16, 2004 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ignore duplicated rows
Replies: 6
Views: 1926

Re: Ignore duplicated rows

Based on some key you need to sort the data which can be done through a sorter stage. Then the sorted data is fed to a duplicates remover stage which gives you the required output. Since I am new to DataStage, any experts please correct me if I am wrong The Remove Duplicates stage type is not avail...
by ray.wurlod
Wed Jun 16, 2004 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capture file name
Replies: 7
Views: 2754

EXECUTE starts a new shell, and therefore a new pid is allocated. The pid of its caller is not available (alas). So the pid in the Capturexxxxxaa file may not have a record in &PH&. Another possibility is that you are on a system where pids can be larger than five digits. Only the rightmost five dig...
by ray.wurlod
Wed Jun 16, 2004 4:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence number for multi valued data
Replies: 11
Views: 3407

Add BY.EXP.DSND Reading into your Selection tab. Allow DataStage to generate the counter values, using stage variable or other techniques to detect changes in the value of Asset. Use the "Normalize On" drop down to normalize on Reading. Does UniData support dynamic normalization in the same fashion ...
by ray.wurlod
Wed Jun 16, 2004 4:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Response time
Replies: 10
Views: 3204

Indexes on constrained and joining columns will help the SELECT but hinder the update of these tables. You may need an index on the virtual column UPPER(name) to assist the inner query, though you say this is quick.
by ray.wurlod
Wed Jun 16, 2004 4:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting Dummy Row at the end
Replies: 8
Views: 4726

Nice thought. Have you tried it? Given the limited range of collection algorithms currently supported, I have some reservations over whether it could be done this way. The mechanism that a Transformer stage uses to detect end of data is not available to us within the Transformer, because that test i...
by ray.wurlod
Wed Jun 16, 2004 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: join conditions on target columns
Replies: 5
Views: 1616

A couple of quick thoughts.

Could this not be done with a UNION?

To get the first in an ordered by, you can use MIN function in the SQL.