Search found 94 matches

by DSDexter
Wed Jun 25, 2008 1:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Load option - Encountering a error
Replies: 8
Views: 4651

Hello Everyone, I was able to load the DB with load option. I will shorthly mark the topic resolved :D , but was just curios to know something. Can we set the row commit interval when using load option? Beacause I can see a hell lot of information messages being written to the logs. A piece of this ...
by DSDexter
Tue Jun 24, 2008 1:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Load option - Encountering a error
Replies: 8
Views: 4651

Hi hello105,

Thanks for sharing that information. It did help. :D

I had not set the APT_ORACLE_LOAD_OPTIONS in my job, So the orcestrate was setting the two options to TRUE by default. by changing the options as you said in your post the job ran fine.
by DSDexter
Mon Jun 23, 2008 8:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Load option - Encountering a error
Replies: 8
Views: 4651

Andrw,

Actually there are before each row trigger being added (We were not aware of this :shock: ).

I suspect that this migt be causing the load issues :?:
by DSDexter
Mon Jun 23, 2008 7:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Load option - Encountering a error
Replies: 8
Views: 4651

ArndW wrote:My first guess is that you have an invalid character in your table name. Can you cut-and-paste the name to this thread? ...
Andrw the table name is "evdf_aft_cpr_raw".

Do you find anything wrong in this name :?:
by DSDexter
Mon Jun 23, 2008 4:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Detail info regarding APT_DUMP_SCORE
Replies: 3
Views: 1772

The above score shows that you are running the job on a single node and also the operator is a combined operator of seq.file, transformer and seq. file. So I dont think ther's anything wrong with the above score. It will generate only 1 process in this case. And also i think that no of links do not ...
by DSDexter
Mon Jun 23, 2008 4:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Load option - Encountering a error
Replies: 8
Views: 4651

Oracle Load option - Encountering a error

Hi all, I have a job which has source as sequential file and target as Oracle table. The job is pure data loading with some validations. The target table on Oracle has two indexes, Due to which my inserts are very very slow. There are about 1.5 millions records in the seq. file. The insert is causin...
by DSDexter
Thu Jun 19, 2008 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File - Logic required
Replies: 5
Views: 1207

Andrw,

I am using the following approach

1. Remove all the blank lines using

Code: Select all

sed -e "/^[ ]*$/d"
2. Get the line count now using wc -l
3. head (above result -1) records.

Can I use multiple filters, pipe seperated in external filter stage?
by DSDexter
Thu Jun 19, 2008 6:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File - Logic required
Replies: 5
Views: 1207

Andrw, But in that case it will throw a warning in the log, saying import unsucessfull. And I dont want that to happen. Also on the reject link I have a transformer which will abort the job if a single reject is encountered (Its not evil, It's the requirement) 8) . So I have to avoid above two scena...
by DSDexter
Thu Jun 19, 2008 6:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File - Logic required
Replies: 5
Views: 1207

Sequential File - Logic required

Hi Gurus, I have a flat file with some records and trailer records which will contain the records count. Below this count column I am getting a blank line and a EOF char at the next line as shown below col1,col2,col3\n 100\n ..............................................................................
by DSDexter
Mon May 26, 2008 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: A function equivalent to NVL in datastage
Replies: 11
Views: 22736

You have source,which is a Database, Then why not restrict the record at source level if you are not interested in rest of the records?
by DSDexter
Mon May 05, 2008 3:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Differences between Datasatge 7.5 and Datastage 8 versions
Replies: 4
Views: 1545

Re: Differences between Datasatge 7.5 and Datastage 8 versio

Please help me here This question has been asked before. You can search for more details. However i will list out a few. 1) New Stages -> SCD stage and Connector Stage. 2) No Manager component available now, Designer has all the functionality of manager now. 3) New Designer Interface(WOW) -> The de...
by DSDexter
Fri Apr 18, 2008 6:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need Help To delete a job
Replies: 11
Views: 2783

Code: Select all

  63177716      1480        0  56745  37 RL  8791 evdfadm  evdf&!DS.ADMIN!& 
Hi Attu,

Thanks ofr that information, Can you tell me what &!DS>ADMIN!& indicate above
by DSDexter
Thu Apr 17, 2008 8:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file
Replies: 7
Views: 1703

sheema wrote:If they want me to replace a Null for Col1 in source with ' ' than i should'nt be handling anything in the transformer right.
Yes thats right, :D But I think you should check with the business requirement 8)
by DSDexter
Thu Apr 17, 2008 8:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file
Replies: 7
Views: 1703

Sheema, Since you are replacing NULL with a ' ' @source. In Transformer you need to check for ' ' and apply the bussiness logic. If you want to populates nulls in the target stage, Then in transformer you can write this derivation, If lnk.inputcolumn = ' ' Then SetNull() Else lnk.inputcolumn. Now ma...
by DSDexter
Thu Apr 17, 2008 8:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file
Replies: 7
Views: 1703

Ascii Value of NULL is 000

Ascii Value of Space is 032. If you are replacing the Nulls by ' ', Then IsNull() function will always be false I guess. 8)