Search found 5168 matches

by kumar_s
Wed Apr 19, 2006 7:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to sort an sequential file or table in the server jobs?
Replies: 2
Views: 1044

Welcome aboard :D

The stage you ment is for the very same reason.
As mentioned by Craig, unix level sort can be used for comparatively less number of records, and where as datastage can handle more than this.
You also have advanced option of cosort.
Also do a search on inline sort.
by kumar_s
Wed Apr 19, 2006 7:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSWaitforfile - parameters for waittime & poll time
Replies: 2
Views: 1069

Its interesting to see timeouts can be parametereized.
Is it "#$FTP_DIR_Parm#TEST.INC timeout:":#TOTAL_TIME#:"/": #POLL_TIME#
by kumar_s
Wed Apr 19, 2006 7:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project structure
Replies: 5
Views: 1882

Also it would be clean to have single project with multiple (controlable) categories rather than having multiple projects for each category. Logical seperation for project can be as DEV, TEST and PRD.
There can be multiple projects for the same class, for different versions.

IMHT
by kumar_s
Wed Apr 19, 2006 7:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error with Universe Stage
Replies: 28
Views: 5687

Perhaps you can try the same from Datastage Administrator client window command line.
by kumar_s
Wed Apr 19, 2006 6:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HandleNull
Replies: 12
Views: 3774

Hi,
You can try to feed the same using the Nullable Field value in the sequential stage. Or the Default value option in the field properties to give your default vaule in the date column.
by kumar_s
Wed Apr 19, 2006 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in Merge stage(Sequential files)
Replies: 3
Views: 1219

Check with View Data option.
by kumar_s
Wed Apr 19, 2006 6:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenation of the fields in the same table
Replies: 5
Views: 1307

Also do a search for vertical pivot.
by kumar_s
Wed Apr 19, 2006 6:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance Issue
Replies: 3
Views: 1708

Nail down the bottle neck.
Is your etl and database server residing in different server?
Have you tired Bulk load?
What if you try to do manual load.
Try to unload the data from the source table into a sequential file and do a manula load from command prompt.
What is the length of each record?
by kumar_s
Tue Apr 18, 2006 10:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pin1 not initialized -error
Replies: 10
Views: 6976

Q and A are from the same site is it 8) :wink:
by kumar_s
Tue Apr 18, 2006 10:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pin1 not initialized -error
Replies: 10
Views: 6976

'Pin 1 not initialized' Here the Pin 1 is pointing to one end of the link 1 to the stage IDENT3.
Try to clear the hashed file and rerun. Also make sure you are running the job with the same user id.
by kumar_s
Tue Apr 18, 2006 8:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: right outer join
Replies: 3
Views: 1043

The same could also be realised using merge stage.
by kumar_s
Tue Apr 18, 2006 8:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema file
Replies: 9
Views: 55467

Schema file is ment for the same reasone. Passing the name of the file as parameter shouldnt be an issue. Make sure the value of the parameter is getting passed correctly from DS Director log.
by kumar_s
Tue Apr 18, 2006 8:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Space Constraint
Replies: 7
Views: 1654

Do not delete any files produces under the project directory. Unless the parent job is being deleted. Delteing the fils like RT_* will make the jobs unuasble, sometimes the whole project.
Better try to change the default directry used to store the fiels in either case.
by kumar_s
Tue Apr 18, 2006 8:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: strange errors.
Replies: 5
Views: 1354

This error occurs if dsx file is curropted.
Try to import the same file into another project.
by kumar_s
Tue Apr 18, 2006 8:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: In Informix DataBase condtion for NULL value getting fail
Replies: 12
Views: 2884

What is the target column datatype? What if some of the input fields comes as expetec (is it getting populated with either 'Y' or 'N')? What if you try IF (Trim(gender) = "Male" OR Trim(gender) = "Female" OR Trim(gender) = "Indeterminate")...