Search found 53125 matches
- Thu Jun 30, 2005 12:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to compile or open job.
- Replies: 5
- Views: 1579
- Wed Jun 29, 2005 7:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing values to Job Parameters
- Replies: 9
- Views: 1938
If you're on 7.5 you can use Kim's solution, because MKS toolkit is shipped with DataStage. So most UNIX commands are available. You may need to specify ExecSH rather than ExecDOS as the before-job subroutine or "UNIX" as the Shell argument for DSExecute. In each project the SH verb now points to th...
- Wed Jun 29, 2005 7:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to compile or open job.
- Replies: 5
- Views: 1579
NEVER delete the RT_... objects. Or the DS_... objects. These are tables in the Repository database that store the run-time (and design time) information for the job. They are created when the job is created, and no mechanism exists for creating them subsequently (apart from manual intervention). Yo...
- Wed Jun 29, 2005 7:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job aborts after 754K recs with Aggregator: %s
- Replies: 20
- Views: 6004
Sort on ALL grouping columns, and tell the Aggregator stage that you have done so (on the Inputs properties). There's no point sorting otherwise. This allows the Aggregator stage to free up memory as soon as any change occurs in a grouping column. At a pinch, you can tune the memory consumption of t...
- Wed Jun 29, 2005 7:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error extracting data from a AS/400 system
- Replies: 5
- Views: 1365
- Wed Jun 29, 2005 6:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to connect to DS server
- Replies: 14
- Views: 3973
As Administrator, use Administrator client to execute
You may also need to grant table privileges to any extant UV tables.
Code: Select all
GRANT CONNECT TO username;You may also need to grant table privileges to any extant UV tables.
- Wed Jun 29, 2005 6:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Truncate and load with Oracle bulk load plugin stage
- Replies: 6
- Views: 1575
Which stage type are you using? Oracle_7_Load, Oracle_Express_Load or Oracle_OCI_Load? In the Oracle_7_Load stage, the Loading Mode property can be set to TRUNCATE. In the Oracle_Express_Load stage the Load Action property can be set to "Clear Data and Load". However, this does not appear in the Ora...
- Wed Jun 29, 2005 6:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Shared Container problem
- Replies: 8
- Views: 1850
That's why, in the Best Practices class, the recommendation is to create totally separate jobs to populate hashed files. The reason for this is obvious when you accept that more than one job at once can be using the hashed file for reference lookups (and, indeed, that the cache of this can be shared...
- Wed Jun 29, 2005 6:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: XML Output Stage Warning Message.
- Replies: 1
- Views: 863
You're doing a lookup against a hashed file and the total number of bytes in all the key columns, as generated in the Transformer stage reference key expression(s), is more than 768 - which is the maximum permitted by the MAXKEYSIZE configuration parameter in your uvconfig file. I suspect - since th...
- Wed Jun 29, 2005 6:42 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dsjob -run -jobstatus... with Status Code=255
- Replies: 1
- Views: 1259
It might be -1 being reported as an unsigned TinyInt. But you really should be asking this question of the vendor through your support provider. We don't have the source code (though much of the source code for dsjob can be found in Server Job Developer's Guide and Parallel Job Developer's Guide man...
- Wed Jun 29, 2005 6:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Phantom 20630
- Replies: 4
- Views: 1567
Your job number is 330 (from the error message). In the project directory on the server is a subdirectory called RT_BP330 which contains the code generated by compiling Transformer stages and job control routine for this job. Within that directory is a file called JOB.403394601.DT.1369463998.TRANS2 ...
- Wed Jun 29, 2005 6:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading from Excel with Dynamic columns
- Replies: 10
- Views: 6560
- Wed Jun 29, 2005 6:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Admin commands
- Replies: 3
- Views: 3688
- Wed Jun 29, 2005 6:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Using routine read Hash file,generate 500 records of eachrow
- Replies: 10
- Views: 2760
The requirement to increment the date for each of the five sets of 500 rows makes this really ugly to do in a Transformer stage. A Routine will be much cleaner and easier to maintain. One extra step if you are using the Routine to write to the text file would be to position to end-of-file after open...
- Wed Jun 29, 2005 6:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Cannot get exclusive access to Job <JOb name>
- Replies: 3
- Views: 2026
The job may be locked for any of the following reasons (and the list is not exhaustive). job is open in another Designer window, by you or another developer job properties open in Manager, by you or another developer job being monitored, by you or another developer job was locked by a process that w...