Search found 42189 matches

by chulett
Tue May 29, 2012 7:18 am
Forum: General
Topic: Datastage director job scheduling issue
Replies: 5
Views: 3701

Are these 'repeating' schedules? If so the Director will create an entry in cron for the job. If these are 'one off' jobs that run once at a specific date/time then they will be scheduled using at. Do the jobs show as being 'Scheduled' in the Director? It seems like you understand this but you need ...
by chulett
Tue May 29, 2012 7:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Poor performance at sequential file stage while Updating
Replies: 12
Views: 4846

Have your DBA get an explain plan while the updates are running to see if the index is being used. Up your Array size something larger, say 200? Depends on how wide your records are but anything is better than 1, performance-wise. Only use 1 when you absolutely have to.
by chulett
Tue May 29, 2012 6:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unknown error
Replies: 10
Views: 3972

Is there any more additional information, anything else you've seen 'from previous run' or is in the log not colored green?
by chulett
Tue May 29, 2012 6:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Poor performance at sequential file stage while Updating
Replies: 12
Views: 4846

Right, the 'poor performance' is on the Oracle end. If your where clause field(s) aren't indexed, each update is a full table scan. Also, what are your Array & Transaction sizes?
by chulett
Tue May 29, 2012 6:09 am
Forum: General
Topic: Job status information for all jobs on DataStage 7.5
Replies: 8
Views: 3495

Any DataStage user will do, you don't need to be admin. That or build a Server job.

And no, not like you mean. Use the API.
by chulett
Mon May 28, 2012 6:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading VSAM file in Classic Federation Stage
Replies: 3
Views: 1826

Well, except for the segmentation violation in osh. No time to log anything else, it seems.
by chulett
Mon May 28, 2012 7:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored procedure cant catch error state
Replies: 7
Views: 3386

All of those questions could be easily answered by your official support provider...
by chulett
Mon May 28, 2012 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: maximum memory buffer size
Replies: 9
Views: 3855

For the record, this is not a DataStage phenomenon but rather something common to pretty much anything doing buffered work including databases, named pipes and other ETL tools as well, for example. And as noted, the exact mechanism isn't ever detailed, just the effect noted. Another aspect of the is...
by chulett
Sun May 27, 2012 6:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored procedure cant catch error state
Replies: 7
Views: 3386

You need all of them. :wink:

I don't do SQL Server, hopefully someone else can double-check that. The concept is sound, all you should have to do is raise the error... at least that was my experience with Oracle procedures.
by chulett
Sun May 27, 2012 2:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored procedure cant catch error state
Replies: 7
Views: 3386

First suggestion would be to make sure that you are current on your fix packs. If you are then I'd suggest contacting your official support provider as it doesn't sound like you're doing anything wrong.
by chulett
Sun May 27, 2012 8:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter values become hardcoded
Replies: 5
Views: 2397

I think I know what you mean but can you clarify exactly what it is you meant by they 'become hardcoded'?
by chulett
Sat May 26, 2012 7:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date conversion
Replies: 4
Views: 2934

Don't worry what Oracle does in your example, it handles many things differently from everyone else, including 'cc'. It gave you 21 for the century because 2012 is a year in the 21st century. For everyone else they are equivalent to the first two digits of the year. So if you are receiving dates wit...
by chulett
Fri May 25, 2012 9:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup of the hashed file fails
Replies: 1
Views: 1134

First, NOTFOUND should only be used for hashed file lookups. And lookups fail when there is no key match - it is an equi-join and the data must match exactly and that includes any spaces, trailing or otherwise.
by chulett
Fri May 25, 2012 6:28 am
Forum: General
Topic: Shell script takes longer execution time in DS than prompt
Replies: 8
Views: 3105

Not enough information for anyone to do anything other than guess. What does the script do?