Search found 53125 matches

by ray.wurlod
Fri Sep 15, 2006 5:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination
Replies: 11
Views: 3573

Tell me which parts of it aren't clear.
by ray.wurlod
Fri Sep 15, 2006 5:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Aggregator
Replies: 1
Views: 1165

It's got nothing at all to do with the Aggregator. You have misdiagnosed this. The problem is that the lock table in DB2 is becoming full due to a combination or your activity and all other activities against the database. You can modify your job's locking strategy, or you can have the DBA create la...
by ray.wurlod
Fri Sep 15, 2006 5:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: lookup condition
Replies: 5
Views: 1309

You need something against which to lookup to determine whether to insert or update. Whether it's a hashed file or the target table directly is up to you, but the hashed file will be faster. TargetTable1 ---> HashedFile | | V insert SourceTable -----> Transformer --------> TargetTable2 --------> upd...
by ray.wurlod
Fri Sep 15, 2006 5:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Open Error
Replies: 1
Views: 892

It means that the generic "open" function, which connects to the database and gets the SQL statement prepared, has not succeeded for some reason. Are there any other warnings, such as DSN could not be found, near this one in the job log? Do you get more diagnostic information when you reset the abor...
by ray.wurlod
Fri Sep 15, 2006 5:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding the Job ID
Replies: 4
Views: 1108

Job numbers (from DS_JOBS) are also unique across a project, but I believe what the original question was really asking for was a Run ID (rather than a Job ID).
by ray.wurlod
Fri Sep 15, 2006 5:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading and writing from the same file?
Replies: 13
Views: 4896

In parallel jobs it is explicitly forbidden to "block" operations. In server jobs you can write data into a sequential file then read from that file, but the read operation does not begin until the write operation completes. (The assertion made by OttMAdpttch is not true in this regard.) This is an ...
by ray.wurlod
Fri Sep 15, 2006 5:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import Error while reading a tab delimited text file
Replies: 5
Views: 1618

It seems likely that you have been insufficiently diligent in accurately setting null field values. You have an empty field at column position 90 (the figure 89 is zero-based numbering) which is the field LINE_UTL_IN_PER; has this field's Null Field Value property been set to ""? Can you see the NUL...
by ray.wurlod
Fri Sep 15, 2006 5:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Startup and stop scripts
Replies: 3
Views: 2401

uv -admin -stop stops all services (not just dsrpcd); uv -admin -start starts all services provided that there are no blocked connections on port number 31538. There is also a script called something like S99ds.rc in your UNIX auto-start directory (named something like /etc/rc2.d) that takes either ...
by ray.wurlod
Fri Sep 15, 2006 5:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unix scripts from Datastage job
Replies: 9
Views: 2797

(1) Before/after subroutine in job
(2) Call DSExecute() subroutine with "SH" as Arg1
(3) Execute Command activity in job sequence

(There are other ways, but these are the most commonly used.)
by ray.wurlod
Fri Sep 15, 2006 5:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing with max timestamp
Replies: 6
Views: 1910

Which database and which database stage are you using?

You could certainly use an SQL file from a shell script executed from an Execute Command activity in a job sequence.
by ray.wurlod
Fri Sep 15, 2006 5:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sappacks with datastage.
Replies: 1
Views: 906

Not sure, but they have been around for a long time - certainly 4.2, probably earlier.
by ray.wurlod
Fri Sep 15, 2006 5:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 1403: update record not found
Replies: 4
Views: 1917

You can learn about Oracle errors using the oerr command on the server. For example

Code: Select all

oerr ORA 1403
by ray.wurlod
Fri Sep 15, 2006 5:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating/updating an unique number for each call of the sequ
Replies: 13
Views: 4457

You could use either of the SDK Key Management routines invoked via a Routine activity. These emulate a sequence in a database; the next value self-initializes to 1 on the first call, and otherwise is preserved in a record (whose key is the sequence name) in a Repository table called SDKSequences.
by ray.wurlod
Fri Sep 15, 2006 5:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring Problem
Replies: 3
Views: 1510

Oconv() is not available in parallel Transformer stages. You can learn about the "G" (group) conversion in online help for Oconv(), but it won't help you.
by ray.wurlod
Fri Sep 15, 2006 5:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 to Oracle Timestamp conversions
Replies: 5
Views: 2873

Oracle also doesn't have a specific TimeStamp data type. All Date data types are stored with time component.