Search found 6797 matches

by DSguru2B
Mon Apr 16, 2007 1:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SalesForce.com web service
Replies: 5
Views: 1286

I am sure its do-able. Just like any other webservice call. I did not follow up much with it. But my system architect was really into it and gave IBM a call. They tried to explain to him how it can be done. So its not that its impossible. I can't ask my architect as he is not with this client any mo...
by DSguru2B
Mon Apr 16, 2007 1:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run Sql job through datastage
Replies: 4
Views: 1557

Can you execute the job from command line? If yes then use the exact syntax, using fully qualified names.
by DSguru2B
Mon Apr 16, 2007 1:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Migration from DS 7.5.1A Server Edition to DS 8
Replies: 18
Views: 4858

Oracle enterprise stage is not available for server jobs.
by DSguru2B
Mon Apr 16, 2007 1:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to round column values in Data Stage?
Replies: 4
Views: 1504

As I mentioned, a lot of ways :wink:
by DSguru2B
Mon Apr 16, 2007 1:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to round column values in Data Stage?
Replies: 4
Views: 1504

There are several ways. One of them is

Code: Select all

FIX(in.Col, 2)
by DSguru2B
Mon Apr 16, 2007 1:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-03113: end-of-file on communication channel
Replies: 31
Views: 12233

This error, basically tells you that there was a communication problem between your oracle client and database. For more info, search on the error code in google. Like this for instance.
by DSguru2B
Mon Apr 16, 2007 12:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: clear hashfile
Replies: 6
Views: 1229

Any particular reason why you dont want to use an after job subroutine for this? as that will be the most feasible and clean design.
by DSguru2B
Mon Apr 16, 2007 12:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: function 'ftp_put' failed
Replies: 7
Views: 3003

Try thispost.
by DSguru2B
Mon Apr 16, 2007 10:47 am
Forum: General
Topic: How to make the logs more informative
Replies: 2
Views: 1015

Can you be more specific? Your query is vague.
by DSguru2B
Mon Apr 16, 2007 10:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SalesForce.com web service
Replies: 5
Views: 1286

Well, the question arose at my present client for it, but we choose a different path. We are using Blue Wolf (a replicating tool) that replicates the data to oracle tables and we source these tables.
by DSguru2B
Mon Apr 16, 2007 10:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetLogSummary info
Replies: 7
Views: 1690

Well, you will have to get the eventid before the job starts, store it somewhere (COMMON, USERSTATUS, FLAT FILE etc) and get the last even id and then loop through each while getting the log detail.
by DSguru2B
Mon Apr 16, 2007 9:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSR_EXECJOB (Action=7)
Replies: 2
Views: 1465

Welcome Aboard :)
Please search on 'DSR_EXECJOB'. This issue has been covered before.
by DSguru2B
Mon Apr 16, 2007 9:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file error
Replies: 8
Views: 2014

What is your job design? The error seems to be coming from ftp stage and not from sequential file stage.
by DSguru2B
Mon Apr 16, 2007 9:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: link error
Replies: 1
Views: 891

You not able to see any stats bacause your JobMonApp is failing to startup. Do an exact search on keywords 'Failed to discover JobMonApp port' to see how others tackled the issue.
by DSguru2B
Mon Apr 16, 2007 9:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetLogSummary info
Replies: 7
Views: 1690

More like, DSGetLogEntry() which works along with DSGetNewestLogId(). Look in the help index for DSGetLogEntry(), it will explain you how to use it. You will then have to create your own after job subroutine that uses these api calls.