Search found 53125 matches
- Wed Dec 08, 2004 2:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Sequencer
- Replies: 4
- Views: 1107
- Wed Dec 08, 2004 2:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Cannot Stop the Job
- Replies: 2
- Views: 1094
Add a message to your code that is logged after your code exits from the loop. You will then be able to confirm that the loop has finished. Note that OPENSEQ takes the ELSE clause if the file unit is opened successfully but the file does not yet exist. You need to test the STATUS() function for this...
- Wed Dec 08, 2004 2:30 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Configuration problem version 7.5
- Replies: 4
- Views: 1571
Any time you get a "library can not be loaded" error the first thing to suspect is the environment variable that defines the library search path. Depending on which UNIX you're on this is called LD_LIBRARY_PATH, SHLIB_PATH, LIBPATH, or something similar. Make sure that it is set up properly in the $...
- Wed Dec 08, 2004 2:25 pm
- Forum: IBM QualityStage
- Topic: Awkward metadata Import problem
- Replies: 4
- Views: 2177
- Tue Dec 07, 2004 3:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: sql query to ETL
- Replies: 12
- Views: 3908
Put the SELECT statement in one stage, run the results through a Transformer stage (even if you do nothing to the data) and have the final stage perform the INSERT (or bulk load). Create another job that updates the control job; similar design: SELECT in one stage, Transformer, update in final stage...
- Tue Dec 07, 2004 3:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How can DS listen/loop on a directory for coming files?
- Replies: 10
- Views: 2832
- Tue Dec 07, 2004 3:01 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Oracle Error - OCI_INVALID_HANDLE
- Replies: 6
- Views: 11244
It's a connectivity error. The "handle" (a variable used in the OCI to manage the connection or the statement) is invalid. Possible causes include improperly specifying the connection string or database name, or a connection that has been lost since first being connected - that is, a network failure.
- Tue Dec 07, 2004 2:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to access 5 days worth of data
- Replies: 4
- Views: 1422
Is there a mechanism in the database table that allows you to answer the question "5 days worth"?
Then surely the simplest mechanism is to use an appropriate date difference function in the extraction SQL. For example
Then surely the simplest mechanism is to use an appropriate date difference function in the extraction SQL. For example
Code: Select all
SELECT columns FROM table WHERE datefield >= (sysdate - 5);- Mon Dec 06, 2004 2:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Read Multiple text files from a folder
- Replies: 2
- Views: 788
- Mon Dec 06, 2004 2:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSJobReport Output
- Replies: 10
- Views: 3374
But Ray, doing with simple unix commands will simplify the job to a great extent. Using the stream editors like sed will simplify the preparation of the sequential file without having to go for a job. If you are calling DSJobReport from the After-Job subroutine, you can very well use DataStage Basi...
- Mon Dec 06, 2004 2:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Teradata load timings...
- Replies: 5
- Views: 2624
- Mon Dec 06, 2004 1:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSJobReport Output
- Replies: 10
- Views: 3374
- Mon Dec 06, 2004 1:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSJobReport Output
- Replies: 10
- Views: 3374
- Sat Dec 04, 2004 11:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Generate sequential number for inserts
- Replies: 3
- Views: 973
Welcome aboard! :D There are several solutions to this problem. If you've already loaded the master records, then you can load a hashed file with each master key. A non-key column could store the "next value" for each master key. Indeed, you could even load them into the SDKSequences hashed file use...
- Sat Dec 04, 2004 3:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: @INROWNUM dosn't match @OUTROWNUM
- Replies: 6
- Views: 1637