Search found 42189 matches

by chulett
Sat May 31, 2008 6:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clean up the job log
Replies: 5
Views: 4504

Then please mark the topic as Resolved... unless you want to talk about how you horked up the log file in the first place.
by chulett
Sat May 31, 2008 6:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to implement oracle lead function in datastage
Replies: 7
Views: 6810

Ok, so actually no input examples, just output with the lead function. Fine. This is just bog standard 'group change detection' done with stage variables. As noted, you can't look ahead but you can easily look 'behind' and stash values from previous records. So you'll need variables to save the curr...
by chulett
Fri May 30, 2008 8:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Automatically Start Master Sequencer
Replies: 3
Views: 1029

Be restarted yes, but not magically restart on its own. :wink:
by chulett
Fri May 30, 2008 8:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clean up the job log
Replies: 5
Views: 4504

NO. From the Adminstrator client, connect to your project and navigate to the Command option. Once there, issue CLEAR.FILE RT_LOG635 which will empty the log. Then via the Directory re-establish any Auto Purge settings you had in that job's log. A 'blink' is a 'backwards link' and getting one means ...
by chulett
Fri May 30, 2008 7:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to implement oracle lead function in datastage
Replies: 7
Views: 6810

'Exactly similar'? :?

Please take a moment and show us, based on the input data you posted earlier, what your output data needs to look like after the transformations are performed.
by chulett
Fri May 30, 2008 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Function in Modify stage.
Replies: 2
Views: 1062

Parallel Job Developer's Guide, Chapter 28, Modify Stage.
by chulett
Fri May 30, 2008 9:30 am
Forum: General
Topic: Will DBlink make it faster?
Replies: 6
Views: 4169

Welcome! The use of a dblink would basically be transparent to DataStage and requires adding "@linkname" to the table name in the from clause. At least that's how it works in Oracle, assume others are similar if not the same.

In my experience, a dblink is neither faster nor a silver bullet.
by chulett
Fri May 30, 2008 9:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to know the update date and time of a source
Replies: 8
Views: 1952

You could also do a 'LIST.DICT DS_AUDIT' from the Administrator client. Search the forums for COMO to find ways to get that output in a file.
by chulett
Fri May 30, 2008 8:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to know the update date and time of a source
Replies: 8
Views: 1952

It's not in the public domain, but you can do a 'LIST.DICT' on it or just a 'select * from' and see what you get.
by chulett
Fri May 30, 2008 7:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Routine in dataStage PX
Replies: 17
Views: 5692

Well, that sucks. Anyone know if 'correcting' this is anywhere in the DataStage roadmap?
by chulett
Fri May 30, 2008 7:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML to Sequential file problem
Replies: 4
Views: 1888

I knew what you were talking about. The sequential file stage can neither parse XML nor display the complete contents of a LongVarchar. You could, however, view it if your incoming XML was pretty printed but as one very long data stream? Nope.
by chulett
Fri May 30, 2008 6:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Checkpoing
Replies: 3
Views: 1355

Not really a 'double negative', just an opportunity to disable at the job level an option at the Sequence level. Use it in a Restartable sequence for any job that should always run each time, regardless of the current checkpoint status.
by chulett
Fri May 30, 2008 6:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Determine end of input data
Replies: 14
Views: 4227

How do you capture the counts in 'after-job' in Job properties.The procedures listed there do not contain 'DSGetLinkInfo'. If this is another lovely 'not in the v8 online help' thing, then use your pdf documentation files - the Advanced PX, Server Developer and BASIC pdf all mention those functions...
by chulett
Fri May 30, 2008 6:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Report
Replies: 1
Views: 774

ExecSH, dsjob -report, redirect output physically as a file!!! :wink:
by chulett
Fri May 30, 2008 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: selective tables data
Replies: 3
Views: 834

You have an 'employee', 'department' and 'error' table and they all have the same metadata? I find that hard to believe. Seems like you'll need to build X jobs and then have an intelligent process that reads your list of tables and determines which job to run based on the name found. Perhaps using s...