Search found 15603 matches

by ArndW
Mon Jun 30, 2008 11:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Phantom 24790
Replies: 7
Views: 1825

You will also need to use an internal command to locate the RT_BPnnn file, but from the project you can always use "find" to locate the file. If you only have a few derivations it might be faster just to look into your TRANS2 transformer stage.
by ArndW
Mon Jun 30, 2008 11:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSGetJobInfo
Replies: 10
Views: 3715

Try

Code: Select all

controllerlist=DSGetJobInfo(JobHandle,DSJ.JOBCONTROLLER)
by ArndW
Mon Jun 30, 2008 8:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get difference time between start_time and end_time
Replies: 1
Views: 647

It depends on what format your start_time and end_time are. The typical formats are String and TimeStamp. In either case you can convert this to seconds and can compute the mathematical delta in seconds. Or you can do this directly between two TimeStamps and get a delta in TimeStamp format.
by ArndW
Mon Jun 30, 2008 8:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to read the data properly
Replies: 1
Views: 1047

How did you declare the columns in your DataStage sequential file stage? It looks like the first 2 characters are missing.
by ArndW
Mon Jun 30, 2008 8:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle BULK LOADER: URGENT HELP REQUIRED
Replies: 8
Views: 1809

I fairly certain that the bulk loader always defaulted to create & run the loader script. I think that somewhere in the stage you could change the settings so that it would only create the files but not perform loading - but it had to be explicitly set to stop loading.
by ArndW
Mon Jun 30, 2008 8:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX Fatal Error
Replies: 1
Views: 713

I've seen that error message before; most people here have probably seen it before as well. Try running your job with APT_DISABLE_COMBINATION and find out what the real cause of the problem is.
by ArndW
Mon Jun 30, 2008 8:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Phantom 24790
Replies: 7
Views: 1825

Look at your transform stage. Perhaps you are performing some mathematical operation on a column containing non-numeric data. Does the transform have many derivations that are not 1:1?
by ArndW
Mon Jun 30, 2008 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle BULK LOADER: URGENT HELP REQUIRED
Replies: 8
Views: 1809

S. Basu, it seems that you didn't look into the sticky readme which suggests using the search facility and the general recommendation that this forum is staffed by volunteers - if you need urgent and qualified instant help you will need to go to your support provider - provided you have purchased su...
by ArndW
Mon Jun 30, 2008 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg Datastage and Database installation and config
Replies: 4
Views: 1069

There is no simple and correct answer. The answer depends upon the computer configurations when separate vs. when on the same box and also on your connectivity between the systems - how fast is the network and does anyone else use it? Normally the database engine is on a different system from the ET...
by ArndW
Mon Jun 30, 2008 3:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue in Loading a db2 table
Replies: 4
Views: 1354

The limitation on DB2 VarChar is 32767. What is the DDL for your table in DB2?
by ArndW
Mon Jun 30, 2008 2:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue in Loading a db2 table
Replies: 4
Views: 1354

Re: Issue in Loading a db2 table

Sahrl wrote:...when i loaded the table is loaded with warnings...

Could you please post the warnings?
by ArndW
Mon Jun 30, 2008 2:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: [Timed out while waiting for an event]
Replies: 2
Views: 1099

Mandyli - I have a red light on my bike panel that blinks, what is the problem? The common theme to both your question and mine is that there is insufficient information to make an educated analysis. Do you always get this error? On all jobs or just one? What does this job do? Is the error in the se...
by ArndW
Mon Jun 30, 2008 2:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to design job
Replies: 4
Views: 849

Process the files inidividually and write the data into a DataSet using "append", then process the DataSet in a final job.
by ArndW
Mon Jun 30, 2008 2:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How we will come to know my server is at which patch
Replies: 3
Views: 1286

There should also be a file at .../InformationServer/Version.xml
by ArndW
Mon Jun 30, 2008 2:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to design job
Replies: 4
Views: 849

Can you not read all the files together and merge/sort them in your job?