Search found 3329 matches

by Sainath.Srinivasan
Thu Jun 23, 2005 4:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob from command Prompt
Replies: 3
Views: 1531

You either need to run from the datastage bin dir using

`cat /.dshome`/bin/dsjob

or include the dir in your path using

PATH=$PATH:`cat /.dshome`/bin; export $PATH

to run the command.

You can also switch to the dir to run the dsjob command.
by Sainath.Srinivasan
Wed Jun 22, 2005 8:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job cntroller is not sending the parameter to attached job
Replies: 14
Views: 4283

Include a

Code: Select all

 Call DSLogInfo('File Name - ' : FileNameX, 'Test')

after the EReplace line and once just before the DSSetParam line.
by Sainath.Srinivasan
Wed Jun 22, 2005 8:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom error 13127
Replies: 3
Views: 1628

Did you try giving it a different name?
by Sainath.Srinivasan
Wed Jun 22, 2005 8:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job cntroller is not sending the parameter to attached job
Replies: 14
Views: 4283

Did you include the change mentioned in my last post? Are you getting the error even then?
by Sainath.Srinivasan
Wed Jun 22, 2005 7:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: merge
Replies: 7
Views: 1744

Check whether there are more cols or chars in the file than mentioned in the properties.
by Sainath.Srinivasan
Wed Jun 22, 2005 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_JOBS and RT_LOGnnn
Replies: 2
Views: 605

You can do a LIST DICT filename from universe. But I wonder why you need it.

Beware that any change in them will impact your project.
by Sainath.Srinivasan
Wed Jun 22, 2005 7:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Port Number
Replies: 6
Views: 2035

31538 - as you are using v5 or higher.
by Sainath.Srinivasan
Wed Jun 22, 2005 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LinkCollector Issue
Replies: 14
Views: 3205

Did you check by directing the link from link collector into a seq file rather than passing via transformer?

Also you can rewrite the job where the first 'creates' and the second 'appends' to the file.
by Sainath.Srinivasan
Wed Jun 22, 2005 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job cntroller is not sending the parameter to attached job
Replies: 14
Views: 4283

It appears that you have edited your earlier post. Even now, there is a defect in the line. It currently says ErrCode = DSSetParam(hJob2, "SourcefileName_Details" FileNameX) cut must say ErrCode = DSSetParam(hJob2, "SourcefileName_Details"[b], [/b]FileNameX)
by Sainath.Srinivasan
Wed Jun 22, 2005 7:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job cntroller is not sending the parameter to attached job
Replies: 14
Views: 4283

What I meant was that the comma symbol was in the right side of the variable.

It must say ParamName, value and not ParamName Value ,
by Sainath.Srinivasan
Wed Jun 22, 2005 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server OS upgrade, what needs to be done?!
Replies: 3
Views: 700

That is because your question is a generic one about 'how to upgrade?'. As mentioned before, you need to look for the variables such as 1.) How do you connect to your db? 2.) Where have you placed your files? 3.) How are you maintaining your hash files? 4.) Do you perform external scheduling? 5.) Do...
by Sainath.Srinivasan
Wed Jun 22, 2005 6:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UnStable DataStage Server 7.5
Replies: 2
Views: 1004

Did you test them as a standalone piece of work?
by Sainath.Srinivasan
Wed Jun 22, 2005 6:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job cntroller is not sending the parameter to attached job
Replies: 14
Views: 4283

The DSSetParam line says
"FileNameX, "
whereas it must say
", FileNameX"
by Sainath.Srinivasan
Wed Jun 22, 2005 5:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server OS upgrade, what needs to be done?!
Replies: 3
Views: 700

It depends upon other factors such as what components you are using in your jobs and whether you are using external utilities.

Generally the steps will be
1.) Take backup
2.) Install new OS ver
3.) Install new DS ver
4.) Test the DS jobs

Did you check your upgrade / installation guide?
by Sainath.Srinivasan
Wed Jun 22, 2005 3:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to clean up a file through server routine?
Replies: 18
Views: 3133

As you want to add 1 line , you can rewrite the transform code as

Code: Select all

IF In.Line[1,9]='Migration' THEN In.Line :CHAR(13):'NewL2' ELSE In.Line