Search found 142 matches

by prabu
Thu Sep 07, 2006 12:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: RowCount from the DSGetLinkInfo always return zero
Replies: 20
Views: 8045

Thank you for all your response! Yes, the DSJ.ME is valid in an afterjob routine. But I am still not get any rowcount back, even when I tried to write the job report out to a file using the statement below: ReportText =DSMakeJobReport(JobHandle,2,"CRLF") I can see the job/stages/links nam...
by prabu
Thu Sep 07, 2006 12:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TNS:could not resolve service name
Replies: 5
Views: 2094

Hi, Thanks for reply.I could not get the solution. Thanks & Regards, -- sudhakar please try the following in the same order 1) type which tnsping 2) if 1 returns the path then cd to the path returned by 1 else find . -name tnsping 2>/dev/null cd the path retured from above end if 3) tnsping SER...
by prabu
Thu Sep 07, 2006 11:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Persist Generated File Infile..Row_Generator
Replies: 12
Views: 5182

Persist Generated File Infile..Row_Generator

Hi DS folks, please let me know if there is a way available to persist the input file generated by Row generator.i believe it uses a pipe stream to keep the generated records! 2) i can't find the bad file + param file generated, i see only control + log file even when there is a failure[is it the de...
by prabu
Sat Sep 02, 2006 8:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Visual C++ 2005!
Replies: 2
Views: 953

chulett wrote:A quick search turned this post up.
Thanks chulett, this helps!
by prabu
Sat Sep 02, 2006 12:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Partitioned Table
Replies: 4
Views: 3468

Re: Oracle Partitioned Table

Hi, I have a partitioned Oracle table that partitioned by the monthly. How can I read only one partition via the Parallel Job. Best Regards MAli You need not specify the partition , if you have a "where clause" that confines your data within the partition. Say you have a month partition a...
by prabu
Sat Sep 02, 2006 12:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Visual C++ 2005!
Replies: 2
Views: 953

Visual C++ 2005!

Hello DataStage Folks,
Does DataStage Ver 7.5x2 compatible with Visual C++ 2005.[ i know it works with VC 2003]. anyone ever tried??

please let me know

thanks,
Prabu
by prabu
Tue Aug 22, 2006 10:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting Date part from File Name
Replies: 2
Views: 931

Re: Extracting Date part from File Name

Hai, My file is in /cust/ris/dev/data/rwinbound/pos2/unfid_errors(Unix) verify that POS data has been processed for the file date and terminal id. File Name : ras.dltx.postrn. 20060719 .070547. 00002973 Date : 20060719 terminal id: 00002973--How to get the date and terminal id for each filename fro...
by prabu
Tue Aug 22, 2006 9:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: replace
Replies: 10
Views: 3341

Re: replace

adams06 wrote:Hi,

how to replace a leading prefix with 'xyz'

Thanks in advance

Please do the follwing steps in the same order

1) Open your online datastage help
2)Goto Search
type

Code: Select all

string functions
:wink: :wink:

try to use one or more of the functions listed to achieve your result
by prabu
Sat Aug 19, 2006 10:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complete cleanout of a job
Replies: 5
Views: 2109

Re: Complete cleanout of a job

How does one go about cleaning out every last shred of evidence of a DS job? I'm sleuthing an abend and I'd like to recreate this job from the ground up with no evidence it ever existed. Thank you This is supposed to be done by DataStage[or any other tool for that matter, say oracle] to clear up th...
by prabu
Fri Aug 18, 2006 12:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: C++ or C Compiler on DataStage EE??
Replies: 3
Views: 1738

it should be a C++ compiler, AFAIK
by prabu
Fri Aug 18, 2006 12:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: schema record definition for a zipped input file
Replies: 2
Views: 940

Re: schema record definition for a zipped input file

psriva wrote:I am trying to read an input file that has been compressed with gzip and I am trying to uncompress it with the expand stage.
My problem is specifying the schema for the input file. How should the schema be?
use gunzip and see the structure[hope you have column header]
by prabu
Fri Aug 18, 2006 12:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to combine 2 datasets from a database
Replies: 10
Views: 2253

And if that is the case, then the Funnel with a Sort is your best option. May I know why you are suggesting this? May be I am missing something... only reason i can think of is , you may get a satisfaction of using more stages in your job [if you think for some more time, you may also 'feel' remove...
by prabu
Fri Aug 18, 2006 12:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset with a different structure
Replies: 3
Views: 869

assuming col5 is ora key and col2 is funnel key ora_Col1 Col3 Col4 *Col5 (from the Oracle table) ora_col1 col3 ds_Col1 col4 *Col2 (used for the lookup reference) col5 Col3 col2 [don't take this from bottom left] Col4 hope this helps!
by prabu
Fri Aug 18, 2006 11:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset with a different structure
Replies: 3
Views: 869

Re: Dataset with a different structure

Hello, I Each input Dataset have the structure: Col1 Col2 (used for the lookup reference) Col3 Col4 And my Output Dataset is Col1 Col3 Col4 Col5 (from the Oracle table) I don't have the RCP activated but my Dataset is created as: Col1 Col2 Col3 Col4 Col5 As my Load job is a generic one for which I ...
by prabu
Fri Aug 18, 2006 9:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unable to initialize plugin
Replies: 6
Views: 1509

Re: unable to initialize plugin

psv wrote:When I try to import plusgin meta definitions it gives error for all listed plugins.
error - unable to initialize plugin.
Please help
which is your source ??