Search found 35 matches

by htrisakti3
Sun Feb 05, 2006 7:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: copying hash file
Replies: 5
Views: 2821

copying hash file

I need to copy hash files from one environment to another. I ftp'd the files: h_hashname & its directory, but when I tried to view data, it wouldn't open.

Thanks much for your help..
by htrisakti3
Thu Dec 08, 2005 7:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS auto purge not working
Replies: 5
Views: 1515

from archive/prev posting, I saw how to programmatically set the auto-purge property on each jobs.

Would the script work in read-only env?
In our prod env, the DS projects are protected & all objects are read-only.
by htrisakti3
Thu Dec 08, 2005 6:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS auto purge not working
Replies: 5
Views: 1515

DS auto purge not working

We have datastage log auto-purge set at project level from dsadmin. It is set to purge in 5 days.. But when I look at log it contains everything from day-1, so I suspect this auto-purge does not work..
If anyone could give me some pointer where to look to fix this..
by htrisakti3
Wed Dec 07, 2005 3:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate INROWNUM
Replies: 5
Views: 1716

My job is very simple.. TXT infile --> transform --> txtOutfile txtOutfile has some derived columns, including: LineNumber = @INROWNUM Constraint @INROWNUM<>1 (as this line contains file header info) So far, This happens 3x since 1/11/05 on my system (normally, this job runs 50-60 in a day) And it's...
by htrisakti3
Wed Dec 07, 2005 12:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate INROWNUM
Replies: 5
Views: 1716

Duplicate INROWNUM

I ran into several occurence where @INROWNUM yields duplicate numbers -- I was wondering if this is known issue
& how does this happen ?? -- thanks, HandyT
by htrisakti3
Tue Nov 08, 2005 10:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to retrieve objects info?
Replies: 5
Views: 1506

How to retrieve objects info?

Where can I find out on the internal DS repository.

This is what I'd like to do:
Create report based on VERSION (DS version control)
-report each jobs that exists in different environment & report them side-by-side: their version#, date checked-in , 1line of comments.
by htrisakti3
Tue Nov 08, 2005 10:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: where are the log files for DS
Replies: 12
Views: 4213

etlstat cannot be deleted

hi KDuke, I downloaded etlstat & imported into DS but now I cannot delete them.. ? This solution does not work for me, because we have very limited access to DB, therefore I'm still searching for solutions based on hash or files only (anything that's only limited to ds, w/o touching DB)' Thanks ...
by htrisakti3
Wed Oct 12, 2005 9:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Log - get the entire content using DS job
Replies: 12
Views: 14856

return (-13)

I tried this on v7.5
sometimes it works, but most of the time, JobGetLog returns (-13)
what does this mean ? I saw that the job in question finished normally & I can see the logs in director
by htrisakti3
Wed Oct 05, 2005 12:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: changing the hash file path to mounted directory at project
Replies: 7
Views: 2143

Have u tried this: 1. export existing job to dsx file 2. change the setting & export to different dsx file compare two files & see if you can isolate the changes.. you can then try to export the whole project to dsx & make mass-changes Replace-all using text editors I tried this before b...
by htrisakti3
Tue Oct 04, 2005 9:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multi lines --> single line ?
Replies: 8
Views: 3020

multi lines --> single line ?

if I have single column source that have 0,1,..N rows -- how can I transform into single line? ie:

source
AAA
BBB
CCC

output: AAA BBB CCC
by htrisakti3
Tue Oct 04, 2005 9:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: single source record need load two records in the target
Replies: 10
Views: 4437

looking at your example, you want to: 1. read source fields: A B C D E 2. write to A C D E A B C D E I'd simply read the file twice (2 output links) --> hash (to enable multiple write at the same time) Hash1 text --> A C D E --> sort --> text-out --> A B C D E
by htrisakti3
Tue Oct 04, 2005 1:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage Jobname..stgname detected
Replies: 1
Views: 961

Abnormal termination of stage Jobname..stgname detected

This is the first time I see this.. what may have caused this ?
Abnormal termination of stage Jobname..stgname detected
by htrisakti3
Tue Oct 04, 2005 1:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link order of execution
Replies: 3
Views: 1605

Link order of execution

I have 2 links from transformer that writes to hash.

can I guarantee that link1 is always executed first before link2 ?

I want to use link1 to clear hash first before writing.
by htrisakti3
Tue Oct 04, 2005 1:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: checking 'running' status
Replies: 9
Views: 3171

but this brings to my original posting.. I have multiple jobs that are queueing to run one particular job. It already checks for DSJS.RUNNING. Looking at the log, here's what happened: 10 jobs are queueing to run JobX at one stage, at the same exact second, this checking triggers multiple jobs to tr...
by htrisakti3
Tue Sep 27, 2005 11:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Max Value in date column
Replies: 10
Views: 6675

Have you tried:

iDate = IConv(fieldName, "D-YMD")

iDate is now integer & you can easily Max(iDate),

But you have to: OConv(iDate, "D-YMD")
to display this back as proper date