Search found 53125 matches

by ray.wurlod
Mon May 23, 2005 5:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSjobreport
Replies: 5
Views: 2173

Welcome aboard! :D My guess is that it's writing UNIX-style line terminators (LF) rather than Windows-style line terminators (CRLF). If you open with, say, Word you can convert them. There are also converter programs out there, such as unix2dos , that will perform these conversions. (Or you could cr...
by ray.wurlod
Mon May 23, 2005 12:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aborted Sequencer: Attempting to Cleanup after ABORT raised
Replies: 7
Views: 1419

You get that error because a stage aborted.
Reset the job in Director. There should then be an entry in the job log "From previous run..." which contains additional diagnostic information.
by ray.wurlod
Mon May 23, 2005 12:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Total rows out of a link on first INROWNUM
Replies: 3
Views: 1109

The number of rows processed on each link connected to an active stage, such as a Transformer stage, is captured automatically in the job log, in an event called "Active stage finishing..."
by ray.wurlod
Mon May 23, 2005 12:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: About "Universe stage compatibility" in Hashfile s
Replies: 2
Views: 864

Opening the Help for this stage gives a useful and concise explanation. :wink:
by ray.wurlod
Mon May 23, 2005 5:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to generate a calendar Year Using DataStage
Replies: 12
Views: 7451

Hi Ray I have tried using the solution you mentioned and was not able to generate the dates from one input date i need to generate it using one input date and it should get generated in the first run that means when i run my datastage job the dates should get generated for all the five years can u ...
by ray.wurlod
Mon May 23, 2005 5:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Does ODBC query gets killed, when your reset a Job
Replies: 6
Views: 1143

Usually have the DBA kill the session. No-one else has the privileges necessary.
by ray.wurlod
Mon May 23, 2005 5:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling Dates
Replies: 2
Views: 716

Just to make the point that there are many ways, you could also do it with simple string concatenation, perhaps formatting each component to ensure that leading zeroes exist. Fmt(InLink.DayNumber, "R%2") : "/" : Fmt(InLink.MonthNumber, "R%2") : "/&q...
by ray.wurlod
Mon May 23, 2005 5:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Controller problem:
Replies: 2
Views: 1098

Look in the DSINCLUDE folder in your project (on the server) for a file called JOBCONTROL.H within which you will find a section of constants whose names begin with DSJE. Among those find the one that equates to -14 and you're well on your way to a diagnosis. (I am in a hotel room at the moment and ...
by ray.wurlod
Sun May 22, 2005 8:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: current timestamp
Replies: 9
Views: 3938

Even TIME() does not give milliseconds on all platforms. On some platforms you can only do it in code, by specifying the compiler declaration $OPTIONS TIME.MILLISECOND. Try SYSTEM(12) - if I recall correctly - this will report in milliseconds if the system is capable of providing same. Therefore OCO...
by ray.wurlod
Sun May 22, 2005 5:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieving DBMS error messages
Replies: 3
Views: 1334

On the reject link you can access the other link's link variables to obtain:
    SQLSTATE (ODBC-specific code)

    DBMSCODE (the error code generated by the DBMS server)

    LASTERR (the text of the error/warning message from the driver/server)

    REJECTED (true = row rejected by output link)
by ray.wurlod
Sun May 22, 2005 5:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error
Replies: 22
Views: 4917

It's my understanding that a persistent DataSet can exist as multiple files, each of which isn't bigger than 2GB. Are you saying that this is not the case for virtual Data Sets?
by ray.wurlod
Sat May 21, 2005 9:01 am
Forum: IBM QualityStage
Topic: Error opening source file in QS Match Job
Replies: 9
Views: 5574

In a QS project there is a directory called Data in which QS expects to find its data files. The error messages suggest that a file called FPLOCALR can not be found there. Are you sure you placed this file in the correct location? And that it's readable and/or writeable by whatever user ID you're us...
by ray.wurlod
Sat May 21, 2005 8:57 am
Forum: IBM QualityStage
Topic: QS Job Run time Error:Error returned from tkGetToken
Replies: 5
Views: 3229

When you're working with QualityStage rule sets, there is a menu option that allows you to test. I don't have QS where I am working at the moment. Explore. That's how I find most things.
by ray.wurlod
Fri May 20, 2005 6:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can't connect to Datastage server
Replies: 6
Views: 1227

DataStage sets no limit on password length. However, your system administrator may have. :twisted:
by ray.wurlod
Fri May 20, 2005 6:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generate Sequence
Replies: 2
Views: 601

Do you really mean for each column? Or each row?

If "each row" then Craig's solution, and yours (if in stage variables), will work.
Otherwise, you need a separate stage variable for each column, and one that updates the driver stage variable by the number of columns in the row.