Search found 53125 matches

by ray.wurlod
Sat Feb 04, 2006 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: last record
Replies: 8
Views: 1979

If you use ODBC stage you can set it to return multiple rows on a lookup, and make your own arrangements about getting the last of these. The OCI stage does not support this functionality.
by ray.wurlod
Sat Feb 04, 2006 2:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash files and lookups
Replies: 17
Views: 8131

I do not recall receiving any private mail/message on this topic.
by ray.wurlod
Sat Feb 04, 2006 2:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Project getting locked
Replies: 22
Views: 9782

Welcome aboard. :D

This can occur if someone is performing an administrative task that requires exclusive access to the Repository.

If that process was interrupted (killed) then the lock may continue to be held, though spuriously. Restarting DataStage may help.
by ray.wurlod
Sat Feb 04, 2006 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while Import
Replies: 27
Views: 9002

It is possible that running UVFIXFILE in FIX mode has made DS_JOBOBJECTS "terminally ill". My advice at this point would be to rename DS_JOBOBJECTS and restore it from your most recent UNIX backup. This way you will at least get something back, provided DS_JOBOBJECTS wasn't corrupted prior to the ba...
by ray.wurlod
Fri Feb 03, 2006 9:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash files and lookups
Replies: 17
Views: 8131

In any scenario - real time or otherwise - it depends on what you're looking up and why. For example, to detect existence, you need only the key values in the lookup table (or hashed file). Even in India this is unlikely to get anywhere near 2GB. But, if it does, all you have to do is change your ha...
by ray.wurlod
Fri Feb 03, 2006 4:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: moving text data type from one table to another.
Replies: 4
Views: 1619

The ODBC stage is limited in the maximum row size it can work with. This is configurable via MAXBUFFSIZE in the uvodbc.config file (iirc). Search the Forum for uvodbc.config to be sure. It's out there somewhere. (Yes, I'm in an airport lounge, away from DataStage again.)
by ray.wurlod
Fri Feb 03, 2006 2:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Issue
Replies: 8
Views: 2028

Put in timing points in the job control code or in the job sequence (note: it's sequence, not sequencer). Use a Routine activity to do this in the job sequence. Find out where the delay is.
by ray.wurlod
Fri Feb 03, 2006 2:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in moving Hashfiles from one project to another proj
Replies: 7
Views: 3023

Or you can use format.conv (the "proper" name for fnuxi) -export and -import options to do the transfer for you, and thereby byte order is handled automatically.
by ray.wurlod
Fri Feb 03, 2006 2:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Date to SQL Server Date or TimeStamp
Replies: 7
Views: 4820

There are no SQL data types within server jobs. This means that, even though you perform a "string" operation, if the metadata specify that the column is TimeStamp, it will be stored as TimeStamp.
:D
by ray.wurlod
Fri Feb 03, 2006 2:37 pm
Forum: General
Topic: command to get the job creation date
Replies: 3
Views: 3486

Since you're new to the forum, and I'd guess even newer to DataStage SQL (especially for multi-valued fields), here's a starter pair of queries. SELECT INSTANCE, CREATOR, DTC FROM DS_AUDIT WHERE CLASS = '2' AND INSTANCE = '<<JobName>>'; SELECT MODIFIER, DTM FROM UNNEST DS_AUDIT ON MODS WHERE CLASS =...
by ray.wurlod
Fri Feb 03, 2006 4:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: About @DATE
Replies: 9
Views: 7409

This paper may also shed some light on date conversions.
by ray.wurlod
Fri Feb 03, 2006 4:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in Link Collector
Replies: 4
Views: 1797

Just to strengthen the point that Arnd made, intra-process (or within-process) row buffering is not acceptable. There must be a process boundary, because the Link Collector stage must run in its own process. You can enable inter-process row buffering. You can also place an IPC stage between each Tra...
by ray.wurlod
Thu Feb 02, 2006 10:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while Import
Replies: 27
Views: 9002

There is a significant problem with your DS_JOBOBJECTS hashed file. One of the pointers has become corrupted; I am guessing that this is the fundamental cause and that all the rest are consequent errors. These errors can sometimes be fixed and sometimes not; it depends whether it's a "legitimate" BL...
by ray.wurlod
Thu Feb 02, 2006 10:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange Connection Error - Unable to Login
Replies: 2
Views: 1369

What is the meaning of error code 80011? The putty telnet client connects via telnet (port number 23). The DataStage clients connect via DataStage RPC (port number 31538). It seems highly likely that the DataStage RPC daemon (dsrpcd) is not running, which means that it did not start automatically wh...
by ray.wurlod
Thu Feb 02, 2006 10:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Date to SQL Server Date or TimeStamp
Replies: 7
Views: 4820

Then concatenate " 00:00:00.000".