Search found 229 matches

by pnchowdary
Mon Aug 01, 2005 9:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rename a file and empty a file
Replies: 3
Views: 1028

Hi Sant, I must copy the data in a new file named Balance_CG_yyyymmdd.csv and empty the first file. You can copy the data into a new file by simply using a transformer after you read the old file and then write to a new file called Balance_CG_yyyymmdd.csv in a sequential file stage. By emptying the ...
by pnchowdary
Mon Aug 01, 2005 9:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do I extract from string?
Replies: 1
Views: 652

Hi Tom,

You can use the Index function.

Code: Select all

Index (string, substring, instance)
by pnchowdary
Fri Jul 29, 2005 2:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 7 records at source and just one at the target
Replies: 10
Views: 2681

Hi NaveenD,

Good that it worked out for ya :D
by pnchowdary
Fri Jul 29, 2005 9:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ABAP stage didn't work due to CPI-C error
Replies: 9
Views: 5020

Hi Vinay, If you are using SAP R/3 Pack to extract data from SAP 3.1. Then it will not work. It seems that the SAP R/3 pack is not compatible with SAP 3.1. However, it works well with the higher version SAP 4.7. This problem was reported to the Ascential Support and they did confirm the incompatibil...
by pnchowdary
Thu Jul 28, 2005 8:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling other functions/routines from a routine
Replies: 2
Views: 669

Welcome Aboard :D ,

Yes, user defined routines can be called from other routines. This topic has been covered in this Forum many times. Please search the form using keyword "Deffun".
by pnchowdary
Thu Jul 28, 2005 8:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing values to Job Parameter
Replies: 1
Views: 1477

Hi,

This topic has been covered several times in this Forum. Please search for shell script output.

Here is one such link viewtopic.php?t=93768&
by pnchowdary
Thu Jul 28, 2005 5:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Write failed for record id
Replies: 11
Views: 5688

Hi,

Try running the same SQL in oracle and see whether it still selects that 2003 record ?
by pnchowdary
Thu Jul 28, 2005 5:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transferring BLOBs
Replies: 1
Views: 877

Welcome Aboard :D ,

Try to use VarBinary or VarChar to read it.

There are a lot of posts dealing with the topic you have asked, please search the forum for more details.
by pnchowdary
Thu Jul 28, 2005 5:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Write failed for record id
Replies: 11
Views: 5688

Hi,

What database are you extracting the records from?
by pnchowdary
Thu Jul 28, 2005 5:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ABAP stage didn't work due to CPI-C error
Replies: 9
Views: 5020

Hi,

Can you tell me which version of SAP that you are trying to extract from?
by pnchowdary
Thu Jul 28, 2005 5:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ABAP Extract GUI
Replies: 6
Views: 3433

Hi Vinay, I believe that your SAP R/3 Plugins are not properly installed. Try to reinstall the SAP R/3 Plugins. When its properly installed, the ABAP extract plugin should have a bulding icon with the words "ABAP Extract" written on it. Also make sure there is an output link from the ABAP ...
by pnchowdary
Thu Jul 28, 2005 5:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: merge three files
Replies: 8
Views: 3063

Hi,

If you dont want the ID field in the ouput, pass your merged output thru a transformer and eliminate the ID field in it and then write to your final output.
by pnchowdary
Thu Jul 28, 2005 4:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 7 records at source and just one at the target
Replies: 10
Views: 2681

Hi NaveenD, I wasn't able to reply earlier as I was busy with my work. Anyway, here is your solution 1) Declare two Stage Variables and in their derivation column, inlcude the below condition Derivation Stage Variable InLink.InCol NEWVAL If @INROWNUM =1 OLDVAL Then "" Else NEWVAL:OLDVAL 2)...
by pnchowdary
Thu Jul 28, 2005 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Send an email from datastage job
Replies: 14
Views: 11455

Hi Vinay,

The @INROWNUM =1 condition that he used prevents from sending the email 10 times.
by pnchowdary
Thu Jul 28, 2005 11:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Send an email from datastage job
Replies: 14
Views: 11455

Hi Munish, Hopefully, if you have any metadata column in the reject table, that can uniquely identify the reject records inserted in a particular job session. You can use an user defined sql in an Oracle DB stage and get the counts of the number of reject records inserted into the reject table, for ...