Search found 69 matches

by phanee_k
Mon Feb 28, 2005 6:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning Message while records are rejected
Replies: 14
Views: 5435

Hi,
Say suppose you have 2 links A and B.
On Link A you gave some constraint.
On Link B , give a constraint as Link A.rejected.
This will pass all the records failed from A to B without any warnings.

IHTH,

Phani
by phanee_k
Thu Dec 30, 2004 1:08 pm
Forum: IBM QualityStage
Topic: Error message in qualitystage
Replies: 4
Views: 3667

Hi,
Check whether source file you are using is under Data directory in your project folder.
The DatafileDefinition and the Source file name should be the same.


Thanks,
Phani
by phanee_k
Thu Dec 30, 2004 12:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling ENTER values from source data
Replies: 5
Views: 2726

HI , You can use Ereplace function Ereplace(ColumnNAme,char(13),'') This replaces the Enter Char( char(13) ) with the empty space. You can also Use OConv(ColumnName,"MCP"). This argument converts the non printable characters to a " . " . Again replace the " . " with wha...
by phanee_k
Tue Dec 14, 2004 12:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to include Header row in sequential file
Replies: 5
Views: 2589

In the format tab of Sequential File in Input tab , select the check box against " First Line is Column Names " and run the job.

HTH
by phanee_k
Thu Aug 12, 2004 9:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: loading Column information - how to remove derivation
Replies: 5
Views: 1832

Hi, We can clear the column derivations one by one if the columns are less in number. The approach I follow is ODBC --------TFM -------- SEQ Put a sequential file Stage as target. Open the tranformer stage. Move all the columns form source stage to target. Delete the columns from the source. Again m...
by phanee_k
Wed Aug 04, 2004 1:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing a hash file with a key composed by several fields
Replies: 7
Views: 2245

Thanks Ray,

Now it is working.


regards
Phani
by phanee_k
Tue Aug 03, 2004 9:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing a hash file with a key composed by several fields
Replies: 7
Views: 2245

Hi, Please find my code below. Deffun DSRMessage(A1, A2, A3) Calling "*DataStage*DSR_MESSAGE" HashTable = Arg4:Arg1 HashKey = Arg2:@TM:Arg5 ColumnPosition = Arg3 PositionReturn = 0 * Determine if we are returning one column or entire row. If Num(ColumnPosition) then ColumnPosition = Int(Co...
by phanee_k
Tue Aug 03, 2004 9:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: substring from varchar to number (fk)
Replies: 6
Views: 1974

Hi,
You can use Oconv function like

OConv(Arg1,"MCN") which extracts only the numeric data from the argument passed.


cheers
Phani
by phanee_k
Tue Aug 03, 2004 3:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: calling transform from within routine
Replies: 4
Views: 1373

Hi, Its not a good practice for calling the Transform in a routine . Instead you can call the routine with in the routine. Declare the DataTypePicComp3 routine ( since the tranform is calling this routine in the transform) using the "Deffun" statement and call the routine Var = DataTypepic...
by phanee_k
Tue Aug 03, 2004 2:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing a hash file with a key composed by several fields
Replies: 7
Views: 2245

hI,
I modified in my routine as required.
I am using a two key hash file.
I am getting output as Record not Found.

I had used the
HashKey = Arg3:@TM:Arg5

where Arg3 and Arg5 are key columns data.
The routine is working fine with one argument.

Please help.

Regards
Phani
by phanee_k
Thu Jul 29, 2004 12:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to clear the "deleted jobs" from repository vi
Replies: 15
Views: 8812

Hi,
Currently I am working on version 7 and that option is available.

Cheers
Phani
by phanee_k
Thu Jul 29, 2004 12:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to clear the "deleted jobs" from repository vi
Replies: 15
Views: 8812

Hi,
Open the Administrator Client.
You have two Tabs.
General and Projects.
Go to Projects tab. Select your project name.
On the right side you will find the Clean Up button.
Click that Button.

HTH,

Phani
by phanee_k
Fri Apr 02, 2004 5:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Batch Job for deleting a hash file
Replies: 11
Views: 4040

delete a sequential file

Hi,
I want to delete a sequential file using the datastage job.How to delete it.

Thanks
by phanee_k
Thu Apr 01, 2004 5:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calc between dates
Replies: 3
Views: 2020

You can find the difference by using Iconv and OConv Functions in datastage.Please go through the help for the same.
by phanee_k
Thu Mar 25, 2004 4:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Surrogate Key
Replies: 6
Views: 1844

Hi
We can use the KeyMgtGetNexValConcurrent routine which is present in datastage for generating the sequence numbers using Datastage.Tyr this routine

Hope this Helps
Phani