Search found 53125 matches
- Thu Jun 28, 2007 7:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DB2 date format
- Replies: 12
- Views: 3152
Can you please also output Len(Fmt(DSLink8.PROCESS_DT, "L####/##/##")) and Quote(Fmt(DSLink8.PROCESS_DT, "L####/##/##")) so we can be sure there are no non-printing characters? Although theoretically unnecessary, try being specific about the format in the Iconv() function. Iconv(Fmt(DSLink8.PROCESS_...
- Thu Jun 28, 2007 7:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Change DataStage clients default directory (compilation)
- Replies: 8
- Views: 2371
HKEY_LOCAL_MACHINE\Software\Ascential Software\DataStage Client\CurrentVersion\GenCodeRootLoc Good luck getting permission to change the Registry! If they allow that, ask them why the default folder (a specific folder on the C: drive) can not be made writable. You will lose this registry setting whe...
- Thu Jun 28, 2007 7:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORAOCIBL problem
- Replies: 20
- Views: 4558
- Thu Jun 28, 2007 6:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem running multiple instance job in a sequence
- Replies: 8
- Views: 3605
- Thu Jun 28, 2007 4:22 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DecimalToString warning in job
- Replies: 5
- Views: 2148
- Thu Jun 28, 2007 4:20 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: improper records in source files
- Replies: 10
- Views: 2077
- Thu Jun 28, 2007 4:16 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Import
- Replies: 1
- Views: 684
You have not provided enough information. What do you mean by "currupted"? Why do you say that this is so? Who is "somebody" and what did they do? What symptoms exist? What error codes are generated? (Please post exact error messages.) Without that information your question falls into the "my car wo...
- Thu Jun 28, 2007 4:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: lookup
- Replies: 7
- Views: 1218
Your constraint expression is not correct. If the lookup fails, columns from Lkp will return NULL. Using NULL in a comparison is not defined. A better constraint expression would be Not(IsNull(Lkp.Col1)). You don't need to check Col2, and you don't need to check that the returned values are the same...
- Thu Jun 28, 2007 4:05 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Change DataStage clients default directory (compilation)
- Replies: 8
- Views: 2371
- Thu Jun 28, 2007 4:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Project got corrupted while executing the job
- Replies: 8
- Views: 3236
ExecSH can not be called via a Routine activity, because ExecSH is a before/after subroutine and Routine activities can only call routines whose type is transform function. Please verify what routine the Routine activity is calling, and post the code for it (you can right click on the Routine activi...
- Thu Jun 28, 2007 4:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Regarding change for creating new file from existing file
- Replies: 13
- Views: 2698
Do you even understand what this routine does? Is there a specification? If you understand what it does you should at least be able to suggest where it needs changing. I accept that you may not have skills in the language DataStage BASIC, but you'd better get some if this is the kind of thing you're...
- Thu Jun 28, 2007 3:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Rows/Sec
- Replies: 13
- Views: 4161
They are using a routine for generating a ERR_ID.This routine interacts with the data base evokes a sequence and gets the value from it and assigns it to the column. Please find the code below: If IsNull(Db2GetMaxColVal($p_TargetServerNm, $p_TargetUserNm, $p_TargetUserPwd, 'Err_Id', 'Etl_Job_Err_Lo...
- Thu Jun 28, 2007 3:49 am
- Forum: General
- Topic: Error running a batch file
- Replies: 12
- Views: 6263
- Wed Jun 27, 2007 8:36 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: The orcle write method :LOAD
- Replies: 5
- Views: 1114
- Wed Jun 27, 2007 8:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Regarding change for creating new file from existing file
- Replies: 13
- Views: 2698
Change the job that it runs to constrain the output from the Transformer stage with @INROWNUM = 1. This code is an example of a consultancy company creating copies of the supplied routines of DataStage (and charging you for the privilege). There is much that is inefficient about the code, but I have...