Search found 5168 matches

by kumar_s
Fri Oct 20, 2006 6:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning while loading into Sybase table.
Replies: 8
Views: 2712

Check for any Unicode or NLS option to be changed.
by kumar_s
Fri Oct 20, 2006 6:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read DataSet file name patterns
Replies: 8
Views: 1936

List the available dataset available in the required pattern either by ExecuteCommand activity. Pass it as parameter to the job one after other.
You can also store it in a file and read and pass it as parameter in a loop by using Loop activity as well.
by kumar_s
Fri Oct 20, 2006 5:47 pm
Forum: Site/Forum
Topic: Ray on 14000!
Replies: 13
Views: 5848

Hardly 2 or 3 post made other than that regards to Ray in Site/Forum. Now again another milestone. But in this case, it cannot be called as milestone, especially for Ray.
Much appropriate, if we create a alias as RayXchange. :wink:
by kumar_s
Fri Oct 20, 2006 7:12 am
Forum: General
Topic: Question: launching unix script from IBM mainframe
Replies: 4
Views: 3234

Its not possible to execute dsjob in mainframe server, unless you have Datastage serever installed in that server. But you can explore some option, of triggering the script (which actually kicks off the datastage job) available in unix from Mainframe.
by kumar_s
Fri Oct 20, 2006 7:07 am
Forum: General
Topic: IPC Stage vs Row Buffering:
Replies: 2
Views: 2704

The tiemout setting is configurable. IPC is used between stages where the link buffering is required and happens to only that stage.
Where as the link buffering option can be enabled at job level or at project level. Which will reflect to all the links available in the job.
by kumar_s
Fri Oct 20, 2006 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem while performing operations on the Target table
Replies: 11
Views: 3183

If its user defined SQL, try to have either Insert or Update or Deleter alone and check if that works for that table. If that works, you can check your code that been written. Perhaps you can past your code to get better suggestion from this forum as well.
by kumar_s
Fri Oct 20, 2006 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning Messages in Job Log while Attaching Job
Replies: 3
Views: 736

What is the warning messages and what state the job was in?
by kumar_s
Fri Oct 20, 2006 2:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning for null field
Replies: 6
Views: 1417

If the column is decimal, give the default value equal in digit to the given spec. Like
Null Field Value - '000.0000'
Also check the stage on which the warning is appearing.
by kumar_s
Fri Oct 20, 2006 1:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Identifying last user who change the job
Replies: 4
Views: 1286

Or perform a search, you may get lot of post similar to this. You also got the key word DS_AUDIT. :wink:
by kumar_s
Fri Oct 20, 2006 1:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings thrown from Change capture
Replies: 1
Views: 747

Use transfer from "beforeRec" to "outputRec" this as a search keyword. You may find lot of post related to this issue.
Unfortunetly, most of those post might not have resolution.
by kumar_s
Fri Oct 20, 2006 1:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Operator Role problem
Replies: 13
Views: 3254

I tested when I posted. I changed one user as Operator and restarted Datastage. But I was able to find the jobs, using that id. Now I could see that, the Operator user id has dstage as one of the group.
by kumar_s
Fri Oct 20, 2006 1:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: kill
Replies: 4
Views: 1023

Be aware that, if you on a network, using Task manager will kill only the client session.
by kumar_s
Fri Oct 20, 2006 1:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between Orchestrate data set and regular data set
Replies: 4
Views: 1828

Datastage uses most of the avaiable functionality of Orchestrate (Not all).
And Datastage PX reads and write the Dataset using the underlying Orchestrate operator.
by kumar_s
Fri Oct 20, 2006 12:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob status code 1 & 2
Replies: 9
Views: 21439

Hi Deepak,
Have a look at this.
by kumar_s
Fri Oct 20, 2006 12:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how can we reset a datastage job using datastage coding
Replies: 7
Views: 8704

DSRunJob(hJob17, DSJ.RUNRESET) Will reset the job. You need to use DSJ.RUNNORMAL to run the job again.
Reseting the finished job shouldnt be an issue, unless you expect to get its status. Perhaps you can check for the status and then you can reset.