Search found 42189 matches

by chulett
Mon Nov 02, 2009 1:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How file pattern work
Replies: 1
Views: 844

The first one the file pattern matches. And by 'first' I mean the first one a string sort brings up, i.e. the same order you would see with an "ls" using that pattern.
by chulett
Mon Nov 02, 2009 11:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log file size limitation
Replies: 3
Views: 1125

And now I see we're talking about 8.x, where there's no such limit if the logs are being stored in the XMETA database repository, just normal db tablespace issues.
by chulett
Mon Nov 02, 2009 11:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log file size limitation
Replies: 3
Views: 1125

They are stored in dynamic hashed files so have the same size limitations and error characteristics as a 'normal' Hashed File stage in a job would.
by chulett
Mon Nov 02, 2009 11:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF Stage - Configuring Record delimiter
Replies: 21
Views: 10822

UltraEdit: Edit -> HEX Functions -> Hex Editor
by chulett
Mon Nov 02, 2009 11:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence related query
Replies: 3
Views: 1137

Right, checkpoints are the key here for restarts. And of course you could always run an individual job directly from the Director client, if needed.
by chulett
Mon Nov 02, 2009 11:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Sequencer name from the job name
Replies: 16
Views: 5933

Or, as noted, the DSJobController macro can be used just like a job parameter. Got a chance to look it up. :wink:
by chulett
Mon Nov 02, 2009 7:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle load - fixed width file
Replies: 6
Views: 3781

What's actually used under the covers is sqlldr and yes, much like DataStage it can read the file faster if it is fixed-width. That, however, doesn't always guarantee that it will have any effect on the load speed. And you really shouldn't have to set $APT_ORACLE_PRESERVE_BLANKS to False as that is ...
by chulett
Mon Nov 02, 2009 7:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modifying the UVCONFIG File on Windows?
Replies: 5
Views: 2380

The "CMD" shell that Ray mentioned *is* the "DOS" you remember. And yes, you edit the plain-text uvconfig file using the appropriate editor of your choice (like 'edit' from DOS or Notepad from the GUI) and then regen it using uvregen from the command line.
by chulett
Mon Nov 02, 2009 7:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Preventing tags from being written into an XML file
Replies: 6
Views: 1238

No worries. Could you do a couple of things, please? It would help future searchers if you posted how you were able to solve this and please mark your post as Resolved using the button at the top of the screen.
by chulett
Mon Nov 02, 2009 7:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML File Reading thru XML Input stage
Replies: 10
Views: 4762

Re: XML File Reading thru XML Input stage

ramkandavelu wrote:In the ealier versions of datastage i have used xml reader stage and xml writer stages ..but cannot see any of these in V8.1 version
Just for the record, these were gone well before the 8.x release, replaced by the stages you see now.
by chulett
Mon Nov 02, 2009 7:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is it possible to automate the DataStage export of an entire
Replies: 12
Views: 4601

A known bug with an available patch, yes, as noted in that same thread.
by chulett
Mon Nov 02, 2009 7:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Sequencer name from the job name
Replies: 16
Views: 5933

There should be a Macro for that - and it will have 'Controller' in its name, from what I remember. Can't check right now or I'd post the exact name.
by chulett
Mon Nov 02, 2009 7:32 am
Forum: General
Topic: ORA-08103: object no longer exists in simple Server job
Replies: 2
Views: 4116

Generally considered to be an Oracle bug.
by chulett
Sun Nov 01, 2009 11:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Appending sysdate to seq file name
Replies: 2
Views: 1269

You basically have three ways:

1. Use one of the date macros
2. Use a job parameter, feed in the date
3. Write to a fixed filename and rename after job

The answer can be driven by how enamored you are of that particular date format.