Search found 15603 matches
- Thu Jan 05, 2006 11:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: error handling in datastage
- Replies: 3
- Views: 1111
You have two types of approaches to doing this: (a) using the functionality of the "dsjob" command to create a text file which contains the job run status. This can the be parsed (using a UNIX tool or a DataStage job) to get the information you want and then written to the database (b) using a DS/Ba...
- Thu Jan 05, 2006 10:49 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Space Issue
- Replies: 13
- Views: 3615
Try a very simple job, create a dummy source file with 10 records; in your transform stage put a constant derivation of " " for an output data type of CHAR(1) that goes to your table. I prefer to use a row generator stage, but stick with the source sequential file if you haven't done this before. Wh...
- Thu Jan 05, 2006 10:46 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: status code
- Replies: 3
- Views: 1203
srikanth, How are you starting these jobs? If you start them through the dsjob command then you might have mis-spelled your project name. On the sequencer question, there really is no limit to the absolute number of jobs; it depends how you structure your sequencer, how many of the jobs you want to ...
- Thu Jan 05, 2006 10:20 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job access error
- Replies: 5
- Views: 1625
royhhlai, Please ask your administrator to enable the deadlock daemon. You need to attach to the DataStage engine directory, edit the file dsdlockd.config and set the line "start=1" to enable it. It will get started automatically the next time that the DataStage server gets started; you can also sta...
- Thu Jan 05, 2006 10:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Is there a way to find what jobs have Before/After Exec Shel
- Replies: 5
- Views: 1259
- Thu Jan 05, 2006 10:05 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Space Issue
- Replies: 13
- Views: 3615
Santosh, please read the Parallel Job Advanced Programmer's Guide , page 6-25 for the specific information for the APT_ORACLE_PRESERVE_BLANKS information; it is very easy to include in your job parameters and of course you want to force it to preserve blanks so the setting would be "TRUE". In additi...
- Thu Jan 05, 2006 9:35 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Use key management routines in parallel jobs??
- Replies: 8
- Views: 3571
I just did a test with the surrogate key generator stage in PX and can see the limitations - since the values aren't persistant across runs you are quite correct in asserting that the stage is of limited value! I think I'd prefer to use a buildop or a PX transform stage with logic instead of resorti...
- Thu Jan 05, 2006 9:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Is there a way to find what jobs have Before/After Exec Shel
- Replies: 5
- Views: 1259
- Thu Jan 05, 2006 9:07 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Date transformations
- Replies: 3
- Views: 891
- Thu Jan 05, 2006 7:51 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Use key management routines in parallel jobs??
- Replies: 8
- Views: 3571
- Thu Jan 05, 2006 5:58 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Record length in sequential file
- Replies: 8
- Views: 1836
yksjosh, there is no difference between ASCII and EBCDIC; both represent one character in one byte. As mentioned before there is certainly a limitation on record length; but I've done over 1Mb/row so I wouldn't worry about it unless you have longer rows. I suspect that the limitation will be the use...
- Thu Jan 05, 2006 5:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Retrieving the Job Version Number
- Replies: 10
- Views: 2507
Ascential support has confirmed that there is no builtin ability to get this information. The alternatives that they have suggested are: 1. You can export the whole project to a *.dsx file and automate the scanning the file for the: Name "Job Name" JobVersion "50.0.0" 2. You can use the reporting to...
- Thu Jan 05, 2006 5:30 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Space Issue
- Replies: 13
- Views: 3615
Please write your output to a sequential file to test this - if there are spaces in the text file then your problem lies in the Database portion. If your target database is Oracle and the datatype in the database is VarChar2 then Oracle will put in a null. There are also PX load options which might ...
- Thu Jan 05, 2006 5:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Record length in sequential file
- Replies: 8
- Views: 1836
DataStage sequential file rows can be quite large, I'm not sure what the limits are but I know I've used binary records that are in the Mb range. The processing speed it not really dependent upon row width but on the number of columns in a sequential file. Reading 100Kb of data that has one column p...
- Thu Jan 05, 2006 3:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Running sequence multiple times with different parameters
- Replies: 6
- Views: 1510
If you want to make optimal use of your system and will have that many runs of your DataStage job running, then a custom solution will be best. I've done some BASIC coding before in the past where I need to do something similar to what you intend; this program is set to ensure that <n> instances are...