Search found 91 matches

by ssunda6
Fri Jul 13, 2007 1:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Formatted length of fields & record<declared length-W
Replies: 18
Views: 3238

Hi Arnd,

As told by you, i tested the job by repalcing Oracle stage with PEEK stage.
Now, the warning is not coming.

Regards,
ssunda
by ssunda6
Fri Jul 13, 2007 12:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Formatted length of fields & record<declared length-W
Replies: 18
Views: 3238

Hi, Please see if the following additional info will help to find a solution. I checked the statistics on oracle table and the statistics are: Avg Record length is 70. And column wise also it listed avg column length. The summation value of all the columns length is 77. But none of these values are ...
by ssunda6
Tue Jul 10, 2007 3:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Formatted length of fields & record<declared length-W
Replies: 18
Views: 3238

Hi, I am using "LOAD" option for write method in oracle stage.( So, this will use SQL Loader ). Total there are 24 columns in the Input file and 16 columns in the target table. Total length is neither 272 nor 273. The following is the metadata of table. BUS_DT NOT NULL DATE STORE_NUM NOT N...
by ssunda6
Tue Jul 10, 2007 3:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Formatted length of fields & record<declared length-W
Replies: 18
Views: 3238

Hi Arnd,

I have copy pasted the error as it is. Yes, it is referring to the oracle stage for the error in the director log .

In the transformer, I am converting some decimal fields to date type( decimal->string->date) and some decimal fields to varchar. Just FYI.
by ssunda6
Tue Jul 10, 2007 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Formatted length of fields & record<declared length-W
Replies: 18
Views: 3238

Hi,

I have checked the table definition. No field is having length of 273.
The file that I am reading is in EBCDIC format.

Regards,
ssunda.
by ssunda6
Tue Jul 10, 2007 2:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Formatted length of fields & record<declared length-W
Replies: 18
Views: 3238

Formatted length of fields & record<declared length-W

Hi, I am getting the following warning in datastage director log: oraInsertData: When checking operator: Formatted length of fields and record (272) less than declared length (273) oraInsertData: is the name of oracle stage in the job. In my job, I am reading data using a sequential file, performing...
by ssunda6
Thu Jul 05, 2007 11:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job hanging when using $APT_ORA_IGNORE_CONFIG_FILE_PARALLEL
Replies: 3
Views: 1364

Hi Ray,

The table is partitioned and yes, there is SELECT privilege to the ID that I am using

Regards,
ssunda.
by ssunda6
Mon Jul 02, 2007 11:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job hanging when using $APT_ORA_IGNORE_CONFIG_FILE_PARALLEL
Replies: 3
Views: 1364

Job hanging when using $APT_ORA_IGNORE_CONFIG_FILE_PARALLEL

Hi All, I am using LOAD option in oracle stage. To further improve performance, heard we can use oracle environment variable: $APT_ORA_IGNORE_CONFIG_FILE_PARALLELISM When we set its value TRUE, it should automatically partition datastage data to match oracle partitions. But when I use the above vari...
by ssunda6
Mon Jul 02, 2007 6:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle stage-errors when using Truncate and Load
Replies: 8
Views: 6268

Hi, Providing OPTIONS(DIRECT=FALSE, PARALLEL=TRUE) value to $APT_ORACLE_LOAD_OPTIONS, the job is working fine without throwing any errors about index. (I have removed index option in the oracle stage) Does the options DIRECT and PARALLEL does anything about index also. Is index rebuilt after loading...
by ssunda6
Thu Jun 14, 2007 10:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: extracting required string from routine return value
Replies: 11
Views: 3143

ok. Thanx a lot.

Regards,
ssunda.
by ssunda6
Thu Jun 14, 2007 7:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: extracting required string from routine return value
Replies: 11
Views: 3143

Hi,

Ans = Field(Output,@FM,Count(Output,@FM),1) is returning the required value of output.

Count(Output,@FM)+1 is giving an empty line. I think a new line is there in the output of the script.

Thanks for the replies.
by ssunda6
Thu Jun 14, 2007 7:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting required string from routine's return value
Replies: 4
Views: 1587

Hi ,

After moving this to parallel forum, i dint check the reply you posted to that thread.

Ray,
yes, tail -1 option is better. Thanx

Thank you,
ssunda.
by ssunda6
Mon Jun 11, 2007 1:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting required string from routine's return value
Replies: 4
Views: 1587

Hi, My issue is resolved. While using the DSExecute function, I was earlier using Call DSExecute("UNIX","sh ScriptName",Output,SystemReturnCode) Ans=Output<1> Now I tried getting the required output by using awk. Solution: Call DSExecute("UNIX","sh ScriptName 2>&am...