Search found 42189 matches

by chulett
Fri Sep 04, 2009 10:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Removing &amp from the output of an XML
Replies: 7
Views: 2339

XML Output.
by chulett
Fri Sep 04, 2009 7:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitioning in SMP
Replies: 8
Views: 3373

2) Your result is an artifact of using a small data volume. For large data volumes, you will get a quicker completion time using two nodes versus using one. I would say that one input record counts as a 'small data volume'. And what kind of parallel processing do you think would be going on in a jo...
by chulett
Fri Sep 04, 2009 7:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple repeating Elements
Replies: 18
Views: 6693

eostic wrote:Copy a chunk of the actual xml into a post... it may be more clear for us then.
by chulett
Fri Sep 04, 2009 7:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Status code = 81022
Replies: 4
Views: 2680

Any chance this job tries to 'monitor' itself? Depending on exactly what you are doing, that could cause hangs or fatal errors.
by chulett
Fri Sep 04, 2009 7:33 pm
Forum: General
Topic: Sequencer Multi Layer Termination
Replies: 5
Views: 1258

It's just that they preserve white space so things like code indenting (and ASCII art) survive the normal 'squishing' process.
by chulett
Fri Sep 04, 2009 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pls Help - Extract XMLTYPE data from Oracle 9i
Replies: 2
Views: 1652

It's not a natively supported data type. Sometimes you can get away with casting to a varchar or longvarchar, or you may need to start using the XMLType methods built into Oracle to query it.

Some information for XMLType in 11g, check with your DBA what of that is applicable to 9i.
by chulett
Fri Sep 04, 2009 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Selecting only specific columns from a file in unix
Replies: 19
Views: 3174

Well... that's a little misleading. They are still read, they're just not propagated downstream. Dropping them after input is not the same as not reading them at all, which is how I interpreted the OP's quest. Besides, you still have to fully specify them in the input data, something else the OP is ...
by chulett
Fri Sep 04, 2009 9:24 am
Forum: General
Topic: Oracle migration 9 to 10.g
Replies: 6
Views: 1692

The question about the 'metadata repository' was asked in case you were asking about upgrading the internal XMETA metadata repository from 9i to 10g but seeing how that's not possible (only 10g is supported) it just confused things. So, out of curiosity are all external Oracle databases you currentl...
by chulett
Fri Sep 04, 2009 9:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Validation Against XSD
Replies: 15
Views: 11868

Can you post whatever errors/warnings you are seeing?
by chulett
Fri Sep 04, 2009 7:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Selecting only specific columns from a file in unix
Replies: 19
Views: 3174

As noted, you cannot 'read selective columns' from sequential media, it's not in its nature. Also, I wouldn't call 40 columns 'many' or too many to make it any kind of difficult to get the metadata right. Sheesh. How long does it take to import the metadata for the file and then load it into the job...
by chulett
Fri Sep 04, 2009 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update performance issue
Replies: 26
Views: 7071

Updates can be expensive but it shouldn't be a 'huge pain'. Are the 'key' columns you are updating against indexed?
by chulett
Fri Sep 04, 2009 7:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with variable
Replies: 7
Views: 2430

Re: Issue with variable

srinivas.g wrote:When I correct the name with Rdate job is working fine. But I cant actually change like this since this programs are in production.
What is this 'correction' that you need to do?
by chulett
Thu Sep 03, 2009 6:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: retain duplicates out of hash file
Replies: 16
Views: 7222

From UNIX you can start a TCL session using 'dssh', then LOGTO your project and then issue that command. Start it either in the DSEngine directory or your target Project directory, for the latter you can skip the LOGTO. Then do the SETFILE. And note the VOC record must be the full path to the hashed...
by chulett
Thu Sep 03, 2009 4:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: retain duplicates out of hash file
Replies: 16
Views: 7222

I guess I should have said 'an actual Universe database other than the local repository'. :wink:
by chulett
Thu Sep 03, 2009 12:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: retain duplicates out of hash file
Replies: 16
Views: 7222

You don't need to set up a 'Universe connection' unless (I suppose) you are connecting to an actual Universe database. Here, the technique involves creating a regular hashed file and then accessing it with a UV stage - and all that UV stage needs to do that is a VOC record. Now, you've already got o...