Search found 358 matches

by loveojha2
Thu Oct 05, 2006 12:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job aborted after finish loading all records.
Replies: 8
Views: 3671

Is this problem only within this job, Are other jobs running?
If it is repeating thing in other jobs also then Ray's clue need to be taken care off.
What version of DS are you using?
by loveojha2
Thu Oct 05, 2006 12:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to know Import and export timings(Status) in ds
Replies: 2
Views: 1159

Export Timing are kept under the Header of the dsx file. (Top of the exported file).

After Import not sure :?
In manager it shows Data/Time Modified against the job, but I guess that is specific to the job change only.
by loveojha2
Wed Oct 04, 2006 10:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job aborted after finish loading all records.
Replies: 8
Views: 3671

Do a Reset of the Job from the Director.
And see the log from previous run whether it gives any additional information of the failure.
by loveojha2
Mon Oct 02, 2006 11:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: extract data from file different num of fields in each row
Replies: 22
Views: 8054

Read the Sequential File with a sequential file stage with 5 columns specified in the metadata.

Drag it into the Transformer and Create three out links pointing to the three different tables.

In constraint of each link specify the condition of the rectype.
and you are done.
by loveojha2
Wed Sep 27, 2006 12:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing parameter values dynamically
Replies: 10
Views: 3582

If the process is to be done for more than one file. Then include the activity of calling the routine and server job in between loop activity. But with that you would need to tweak the routine code a bit. Or you could read all the file names once and concate them with spaces and in server use them w...
by loveojha2
Wed Sep 27, 2006 12:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing parameter values dynamically
Replies: 10
Views: 3582

Create a Routine which will read the parameter from the file.

Call this routine in a Sequence Job,
Call your Server Job from this Sequence job with a parameter having the value as the return value from the routine activity.

Use this parameter in the server job as the name of the sequential file.
by loveojha2
Tue Sep 26, 2006 9:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Activity of the Job still shows Running
Replies: 6
Views: 2022

Try clearing the Status File from the Director and see whether you are able to compile the job or not.

Try to see the locks held by the job if any through the DS.TOOLS. If there then try releasing them.

See if there are any uvsh.exe processes still there in the server through the task manager.
by loveojha2
Tue Sep 26, 2006 12:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to create a dummy hashed file
Replies: 7
Views: 1864

What do you mean by that?
You can execute this at the Administrator

Code: Select all

CREATE.FILE Hashed_File_Name DYNAMIC 
by loveojha2
Mon Sep 25, 2006 10:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating records into hashed file
Replies: 6
Views: 2577

When I try to bring records which have been either update or inserted in both those tables and then try to do a full outer join on those records some of the records might have empty values for the fields. -- Aditya. Can you share with us the structure of the Hashed File (especially the key structur...
by loveojha2
Sun Sep 24, 2006 9:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to define the sequence order for the link???
Replies: 4
Views: 1644

Create two different server jobs one with the first ODBC link to the Hashed File stage with the appropriate transformations. And the other with the other two ODBC populating the Hashed file. Call these two jobs within a Seqnece Job using the job activity stages and put link between the job activity ...
by loveojha2
Fri Sep 22, 2006 3:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in Sequence Job
Replies: 4
Views: 1665

Check whether the job being called is in the runnable state or not, if it is not then compile it and rerun the sequence job.
by loveojha2
Fri Sep 22, 2006 12:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract Job Name and Short Description for all Jobs
Replies: 4
Views: 2177

The descriptions are stored within the DS_JOBOBJECTS, not with the DS_JOBS, that's why you could not find it in DS_JOBS.

Try

Code: Select all

SELECT EVAL "@RECORD<4>", EVAL "@RECORD<7>" FROM DS_JOBOBJECTS WHERE OLETYPE='CJobDefn'
by loveojha2
Thu Sep 21, 2006 3:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding the SIze of Flat file
Replies: 15
Views: 5199

DSGetLinkInfo("sample","link","Link",DSJ.LINKROWCOUNT)
Use it in after job subroutine, to make sure that whole job has run completed successfully.
by loveojha2
Tue Sep 12, 2006 5:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: completing a result
Replies: 5
Views: 1651

Try

Code: Select all

Fmt(Extraction.JO_Num,6-Len(Extraction.JO_Num) : ' L') 
by loveojha2
Tue Sep 12, 2006 5:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pass arguments to Unix script
Replies: 6
Views: 2879

Meaning for every record you want to execute the script?

For that you can you can use DSExecute call (within the transformer).