Search found 125 matches

by kommven
Fri Feb 10, 2006 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter from a file
Replies: 2
Views: 1314

Thanks,
It worked....

-R
by kommven
Fri Feb 10, 2006 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter from a file
Replies: 2
Views: 1314

Parameter from a file

can I head or tail a flat file and use them as parameter to a job.

We have to run our jobs with parameters coming from a flat file.

Any suggestions?

I have heard that I can use a hash stage and query it using routine to get the parameter file. But again its a parallel job.

-R
by kommven
Thu Feb 09, 2006 6:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to trim leading zeroes using trim()
Replies: 26
Views: 11322

Did you Use

Code: Select all

Abs(Input.Col1)
and let us know,

-R
by kommven
Fri Feb 03, 2006 8:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Telnet & rsh option
Replies: 4
Views: 1007

Its Parallel.
Its a typo while I presented this. Sorry for ALL confusions.
by kommven
Fri Feb 03, 2006 1:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Branded ODBC 5.1
Replies: 1
Views: 822

Yes,

5.1 works just fine as version before.
Try example in /example folder to ensure they work fine.

Recently updated my drivers and had no problems.

Good Luck!
by kommven
Fri Feb 03, 2006 1:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Telnet & rsh option
Replies: 4
Views: 1007

Confirmed something.

rsh is must to invoke your slave nodes.

Creating a UNIX symoblic link to rsh pointing to ssh may work, did any one implemented that and had luck?

telnet is optional.
by kommven
Wed Feb 01, 2006 11:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Telnet & rsh option
Replies: 4
Views: 1007

Telnet & rsh option

Is Telnet mandatory or can be replaced by ssh?
Also is rsh mandatory or it can be replaced by ssh?

If so, anyone implemented? Appreciate you showing the best way out.

Thanks
-K
by kommven
Tue Jan 31, 2006 7:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Segmentation fault
Replies: 0
Views: 690

Segmentation fault

Using TeraData provided tdata.so as driver.

driver works fine for server job.
causes Segmentaion fault and Error Code 139 in Parallel jobs.
Any work around, answer, patch?

-K
by kommven
Mon Dec 19, 2005 7:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get Project's Environment variable.
Replies: 10
Views: 4975

I believe there is a tool called "DataStage Environment Variable Transporter" for backing up and transferring Env. variables...
by kommven
Mon Nov 07, 2005 5:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating User for DataStage
Replies: 4
Views: 1971

make them part of dstage group, where dsadm is part of...
by kommven
Mon Oct 03, 2005 11:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX configuration question
Replies: 2
Views: 1242

You have to configure your env. before your run ur PX job... Especially apt file... See Manager tools configurations.

You also need to define env. for your DBMS viz. Oracle, DB2 etc.,

refer to DS install and upgrade guide pdf....
by kommven
Mon Aug 29, 2005 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Juilan date Conversion
Replies: 3
Views: 1036

create a routine and in routine use this one

Ans = @NULL
If IsNull(TheDate) Then RETURN(Ans)
TheYear = TheDate[1,Len(TheDate)-3] + 1900
TheDay = TheDate[3] ;
DSJulianDate = TheYear : "" : TheDay
Ans = Oconv(Iconv(DSJulianDate, "DYJ"), "D-YMD[4,2,2]")

RETURN(Ans)
by kommven
Thu Aug 18, 2005 4:05 pm
Forum: IBM QualityStage
Topic: Remove trailing numbers
Replies: 1
Views: 2424

Remove trailing numbers

I want to remove only the trailing numbers from my data

e.g.

financial 2000
production 2001
5th annual reconcilation

should be

financial
production
5th annual reconcilation

I have my rule set defined and want to add this to it...

Any guidance from gurus?

Thanks in Advance
Kewl
by kommven
Thu Aug 18, 2005 2:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file striping w.r.t to selected char
Replies: 1
Views: 503

I found a solution myself

Field(DSLink2.Field002,"-", 1) will help me

Thank for - - - - -

Kewl
by kommven
Thu Aug 18, 2005 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How the find a File in the Directory in DOS
Replies: 19
Views: 8744

wait for file activity is perfect for you.
I presume wildcard doesn't work here. You should have a specific file name.

Clarification do you have server on the machine where the file arrives?