Search found 15603 matches

by ArndW
Fri Apr 07, 2006 1:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while importing data from csv and xls files.
Replies: 14
Views: 4202

Sumit,

it would be very helpful if you could tell us the error instead of letting us guess with
...I am getting error when...
by ArndW
Fri Apr 07, 2006 1:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge_0: Function 'construct_hash_table' failed
Replies: 10
Views: 3332

I was fighting with that same issue yesterday when I saw this post. As Ray stated, the unbalanced quotes need to be fixed at the source and trying to do so in the read pahse is too late. You need to make sure that the file is written using quotes in the creations stage, that way any internal quotes ...
by ArndW
Thu Apr 06, 2006 10:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compilation Error
Replies: 6
Views: 1475

I don't see any error message - what do you get when you hit the "more" button on the compilation?
by ArndW
Thu Apr 06, 2006 10:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before Routine and parameters passed on the command line
Replies: 10
Views: 2439

This is not the original question, but to answer it: setting parameters should be done in the sequence that calls the job, as you've already correctly surmised. It used to be possible to change a job's parameter values in the job control, but this functionality was removed and the code you are using...
by ArndW
Thu Apr 06, 2006 10:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading 50million records from Oracle9i to Oracle9i
Replies: 7
Views: 3085

Putting an IPC stage or several of them will only help if a DataStage job is CPU bound on the DataStage server, in this case the bottleneck will not be CPU but database I/O so an IPC stage won't make any difference to throughput.
by ArndW
Thu Apr 06, 2006 10:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge_0: Function 'construct_hash_table' failed
Replies: 10
Views: 3332

I thought the merge stage didn't take any input links, just the file names defined therein You should get a warning message if you read those files through a sequential file stage with the "contains termintors" attribute set to "no" with unbalanced quotes so you could check that. Also, try defining ...
by ArndW
Thu Apr 06, 2006 10:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before Routine and parameters passed on the command line
Replies: 10
Views: 2439

devnull - what we are saying is that the undocumented stuff will cease to function. Any documented features such as before-subroutines will continue to work.
by ArndW
Thu Apr 06, 2006 10:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to UPDATE records
Replies: 7
Views: 1705

The error message comes from ORACLE, so the DBA should re-check. Note that it is not the tablespace but the UNDO logs that are full.
by ArndW
Thu Apr 06, 2006 9:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge_0: Function 'construct_hash_table' failed
Replies: 10
Views: 3332

Kris,

the message says it all - the data for that row can't be parsed because the quote character is not balanced. Check your defined quote character in the merge stage and check your file's contents.
by ArndW
Thu Apr 06, 2006 7:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to take the back up the log files for n days
Replies: 9
Views: 1329

You cannot, this is a command that needs to be executed in TCL or from the ADMINistrator command.
by ArndW
Thu Apr 06, 2006 7:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Transfer using HTTPS and Datastage
Replies: 7
Views: 3383

I think I did jump the gun there, just associated RTI with being able to transfer data with http. I still can see an http session doing a bulk data move in an automated fashion, even ignoring the secure part.
by ArndW
Thu Apr 06, 2006 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding oracle enterprise stage
Replies: 8
Views: 3252

There is a very powerful command in UNIX called find. Try attaching to your root directory and executing find . -name orchora* -print and it will probably show you 3 files and the path that you are looking for.
by ArndW
Thu Apr 06, 2006 6:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer job failing--please help
Replies: 5
Views: 987

When this job is archiving data to a subdirectory, another sequence also tries to archive its data to the same directory and as it not able to access the path, the second job is failingand getting aborted. This is not a DataStage limitation, it is an OS file system limitation and there is no workar...
by ArndW
Thu Apr 06, 2006 6:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to take the back up the log files for n days
Replies: 4
Views: 1179

there is no backup and no restore mechanism for DataStage log files.
by ArndW
Thu Apr 06, 2006 6:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datbase connection status..........
Replies: 6
Views: 1225

How about a simple job to read one record from a table (you could do something like a select from dual in Oracle) and writing that to /dev/null. If the job fails then you don't have a database connection.