Search found 15603 matches

by ArndW
Tue Feb 07, 2006 3:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORCHESTRATE exception in main program: APT_ParseError
Replies: 17
Views: 9708

Kapil - I give up. We are not trying to hide a solution from you and you don't need to restate your query. If someone could answer your question with the data listed so far they would have. You are getting a schema error. You need to list the schema the way DataStage sees it. Orchadmin will do that....
by ArndW
Tue Feb 07, 2006 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORCHESTRATE exception in main program: APT_ParseError
Replies: 17
Views: 9708

I'm not at a DataStage connection now, so I can't give you the exact path. It seems that "orchadmin" is not in your UNIX session's path. You will need to add it or execute the program from it's location. It should be in a bin directory underneath your $ORCHHOME directory; but you can always do a "cd...
by ArndW
Tue Feb 07, 2006 2:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORCHESTRATE exception in main program: APT_ParseError
Replies: 17
Views: 9708

That is very legible, try doing a UNIX "orchadmin describe {AbsoluteDataSetFileName}, that is easier to cut-and-paste as text here.
by ArndW
Tue Feb 07, 2006 2:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORCHESTRATE exception in main program: APT_ParseError
Replies: 17
Views: 9708

Can you change your output to a dataset, run the job and then look at the schema generated for the DataSet? This might help a bit, I think it might be your null handling in the output.
by ArndW
Tue Feb 07, 2006 1:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error: Caught unknown exception in main program
Replies: 13
Views: 8403

try a constraint "1=2" on your transform to see if the error remains even when you don't write any output. You might also put in a handler in your sequential file for the nullable column to replace that value (right-click on the column name, then "edit row")
by ArndW
Tue Feb 07, 2006 12:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error: Caught unknown exception in main program
Replies: 13
Views: 8403

Do you still get the same error if you change your sequential file destination to /dev/null? If yes, if you change your job to go straight from ODBC to a sequential file (with no transform stage)? I'm just trying to see which stage might be triggering your runtime error.
by ArndW
Tue Feb 07, 2006 6:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg. XML Input
Replies: 21
Views: 4142

I would normally suggest just using a sequential file input. Can you post the first 10 lines or so of your XML?
by ArndW
Tue Feb 07, 2006 6:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in Xml Input stage
Replies: 13
Views: 3650

kalpna wrote:...i've tried this with XML Spy as well,
it warns the same...
So it is clear that it isn't a DataStage XML error, but a document form error. What does XML Spy report as the error message?
by ArndW
Tue Feb 07, 2006 5:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg. XML Input
Replies: 21
Views: 4142

Can you try making a copy and changing the job to work without the folder stage and loading the one XML you already checked to see if the error remains?
by ArndW
Tue Feb 07, 2006 4:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get the parameter of a job
Replies: 8
Views: 1940

I would stick with UNIX. Use a call to "dsjob -ljobs" to get a list of jobs in a project and put that into a list, which you then use in a loop to issue the "dsjob -lparams" and redirect that output to a text file.
by ArndW
Tue Feb 07, 2006 4:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg. XML Input
Replies: 21
Views: 4142

There are so many ways available to check this. Try using this web page to cut-and-paste your XML to see if it is well-formed. I suspect that it isn't.
by ArndW
Tue Feb 07, 2006 4:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange Hashed Files Loading Performance
Replies: 19
Views: 3937

Hashed file loading speed is also dependant upon the ways the primary key hashes into it's appropriate group. If all your writes tend to write into the same or similar groups according to the hashing algorithm, disk pages might have a higher likelihood of being in memory. Could you sort your input d...
by ArndW
Tue Feb 07, 2006 4:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get the parameter of a job
Replies: 8
Views: 1940

tyvix, I'm not sure what you mean by a "uv command". You can use the subroutine call DSGetParamInfo() to get parameter information on a job that has run. Or, from UNIX/Windows command line you can issue the dsjob -paraminfo [-userid] <project> <job|jobid> <param> to get similar information.
by ArndW
Tue Feb 07, 2006 4:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job hang
Replies: 4
Views: 1749

Arun, you have just repeated your initial query with a small addition, so the answer is going to be the same. A "core" dump is a file generated by the UNIX error handler that store the memory image of a process including all the stack and register information. UVSH does not create a core file, it is...
by ArndW
Tue Feb 07, 2006 4:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg. XML Input
Replies: 21
Views: 4142

Raj,

have you tried opening up the XML document in your xml-enable browser or by using one of the many structure-checking utilities available on the market to make sure that your document is well-formed?