Search found 15603 matches

by ArndW
Wed Jun 20, 2007 1:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Different Versions of DS in Same Domain
Replies: 5
Views: 1315

Yes, you can run multiple instances of the engine. The keyword to look for is "itag" or "instance tag". You will only be able to run one instance of a 5.x engine on a given server as the multiple engine capability was not present at version 5.
by ArndW
Wed Jun 20, 2007 1:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to load LONG data.
Replies: 3
Views: 1893

The answer is to lie to DataStage. Specify a length of 2Gb for the field.
by ArndW
Wed Jun 20, 2007 12:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to write into Seq file- Import validation error!!
Replies: 16
Views: 3260

RakshaPai wrote:...i changed the datatype of cprsrc_end_dt to varchar(23), i am geting no error but then there is no data in the file.....

Use an editor to look at columns 1 - 23 of your source file. What does it look like (i.e. post it here if the solution isn't apparent)
by ArndW
Wed Jun 20, 2007 12:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Routines - Which can read Seq File and Update the same
Replies: 6
Views: 2089

Did you code the sub loop logic in C++? Since you posted in the PX forum that would be my assumption so your other logic would have to be written in C, and there are other forums that can help you with that code. Or are you using a mix of DataStage Sequence job / Shell script / DataStage BASIC code?
by ArndW
Wed Jun 20, 2007 12:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to see routine code
Replies: 2
Views: 827

The code is not present, i.e. the routine was imported into the project with only the object code.
by ArndW
Tue Jun 19, 2007 4:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KeyMgtGetNextValue
Replies: 2
Views: 1842

For some reason the routine is trying to create a file that is already in the VOC. I can't check the code (but you can) to see if this might be because an attempt to open the file failed. If you can enter the UV shell or use the command line in the administrator, try executing "COUNT SDKSequences" a...
by ArndW
Tue Jun 19, 2007 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: null handling error
Replies: 17
Views: 5667

In which stage is this error occurring?
by ArndW
Tue Jun 19, 2007 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: folding a single record into multiple records at fixed width
Replies: 24
Views: 7203

Brad - you have hit upon the solution that I was thinking about as well. Just declare the original with one column of fixed width and no line terminators, then read it in.
by ArndW
Tue Jun 19, 2007 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Increasing datastage job performnace
Replies: 7
Views: 2025

Abhilasha - have you identified your bottleneck? Is it CPU, I/O, Memory? Have you tested with different number of nodes in your configuration file to get the optimum for that job? Are DS and Informix on different machines (if yes, is the network bandwidth sufficient)? These are just the first questi...
by ArndW
Tue Jun 19, 2007 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deleting a dataset
Replies: 15
Views: 14470

As Ray has said, the 2 environment variables need to be set in order to call orchadmin , but it will use the configuration file embedded in the dataset unless you set the command line to use the current config file. That means you can delete a dataset with a different configuration than the currentl...
by ArndW
Tue Jun 19, 2007 3:11 am
Forum: General
Topic: Routine Triggers with Loops
Replies: 11
Views: 2433

Can you echo the arguments as well, then manually test the routine to see if the return value is the same? Shouldn't there be more than one output if you call this in a loop? Can you look at your routine and see where the variable "Ans" is assigned?
by ArndW
Tue Jun 19, 2007 3:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Trim
Replies: 4
Views: 1395

Re: Problem with Trim

...If(UpCase(Convert(' ', '',<column_name>))=UpCase(Convert(' ', '',<column_name>)) then 'Y' else 'N' ... Since your code on both sides of the = sign is identical, this will always return 'Y'. I am sure that this isn't what you intended. Did you mean <Column1> and <Column2>?
by ArndW
Tue Jun 19, 2007 2:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Email notification
Replies: 12
Views: 2771

DataStage jobs have no direct knowledge of the mail application, this is taken care of inside dssendmail.txt in your project directory. If you have a non-standard mail command syntax you can change this file to accomodate this alternate mail program. You do need some mail client software to be insta...
by ArndW
Tue Jun 19, 2007 1:03 am
Forum: General
Topic: Can't open property of any Activity in Sequence
Replies: 6
Views: 2151

Please try using search before posting a question like this, you will find that it has been asked, and answered, many times in the past. If you create a new sequence and don't have the same problem, then the job design information for that sequence is most likely corrupted and you will have to re-w...