Installing PX to develop is generally simple - insert your product CD and enter the relevant licensing information.
What specifically is your problem?
Search found 15603 matches
- Wed Nov 15, 2006 1:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Installing parallel canvass in standalone system
- Replies: 6
- Views: 1357
- Wed Nov 15, 2006 1:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Inetrpreting performance stats
- Replies: 5
- Views: 1329
- Wed Nov 15, 2006 10:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Phantom problem
- Replies: 6
- Views: 1433
- Wed Nov 15, 2006 10:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Phantom problem
- Replies: 2
- Views: 809
- Wed Nov 15, 2006 9:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Phantom problem
- Replies: 6
- Views: 1433
The object code for you job thinks that you have a "Nvl" function (and it does exist in your manager's "routines" section) which has invalid code. The Phantom part of the error doesn't mean anything in particular, DataStage uses that term for background processes. Most likely you used Nvl somewhere ...
- Wed Nov 15, 2006 9:12 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Delete Project in administrator
- Replies: 9
- Views: 3229
- Wed Nov 15, 2006 8:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Format Delimiter ascii 168 (¿)
- Replies: 11
- Views: 5165
- Wed Nov 15, 2006 7:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Format Delimiter ascii 168 (¿)
- Replies: 11
- Views: 5165
I don't know where that character is coming from. Use the same debugging method as listed earlier, just output to a temporary sequential file the result of to see what the ASCII value of the first character in the string is.
Code: Select all
SEQ(In.ColumnA[1,1])- Wed Nov 15, 2006 7:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Delete Project in administrator
- Replies: 9
- Views: 3229
I wish you had stated that you wanted to re-create that project; then I would have recommended another approach. 1. Create a new project 2. Copy that new project directory and its contents from UNIX to the name/location of the original project that you wanted to delete 3. go back to TCL and "COPY FR...
- Wed Nov 15, 2006 7:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Delete Project in administrator
- Replies: 9
- Views: 3229
Yes, there is a way to do this; but I wanted to make sure that the directory is gone at the OS level before suggesting this approach. If you enter TCL from Unix or enter the command interface in the Admin tool you can issue the command "DELETE UV.ACCOUNT {ProjectName}". This is not normal correct wa...
- Wed Nov 15, 2006 7:07 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to read .dat file(binary data) through datastage PX
- Replies: 4
- Views: 4496
If your client supplied you with a template you should know the layout. The CFF stage will only help you in this case if the data came from something like a COBOL program, which generally doesn't issue binary data except for certain computational fields. What sort of binary data does the file contai...
- Wed Nov 15, 2006 6:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multi Client Manager
- Replies: 3
- Views: 964
- Wed Nov 15, 2006 6:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Delete Project in administrator
- Replies: 9
- Views: 3229
- Wed Nov 15, 2006 4:45 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to clear RT_LOG****
- Replies: 6
- Views: 10852
Re: How to clear RT_LOG****
Using "CLEAR.FILE RT_LOGnnn" is not necessarily a good solution; since this will also remove the normal purge settings. Best is to set the purge settings to your desired value so that the log files don't grow to untenable sizes. ...I am unable to clear it by the clear job log option in director.. Th...
- Wed Nov 15, 2006 4:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Format Delimiter ascii 168 (¿)
- Replies: 11
- Views: 5165
DataStage has no problem using a delimiter such as ASCII 168. From your example it isn't clear what your actual source file format is like. Does the source file have a delimiter of char(168) between the columns or a delimiter of char(191) or a mix of both? You can be certain of what DataStage "sees"...