Search found 15603 matches

by ArndW
Fri Jan 06, 2006 3:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is it possible to have two Instances of 7.5.1 on one box
Replies: 17
Views: 3955

[quote="tcjInteresting. Wouldn't having two instances of the same DS version on the same machine be a violation of the license? (no I do not work for IBM ) I thought that the hardware would of been the limit of the number of jobs concurrently started/running. Interesting that it is DS that has the i...
by ArndW
Fri Jan 06, 2006 3:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsintbuf_getrow() - row has 71 columns when 6 expected
Replies: 15
Views: 9390

Aileen, the message is very clear - you have declared a column separator in your source file stage to separate the columns. DataStage expects a line in the source to have 5 of these separator characters to split the data into 6 columns. Your source data has 71 of these. You will need to check your s...
by ArndW
Fri Jan 06, 2006 3:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash files and lookups
Replies: 17
Views: 8131

Re: Hashed file Updation

Thanks a lot .please tell me How i can include an extra stream in your DataStage job that updates the hashed file when required? Sudheepkv, adding an update or write stream to a DataStage hashed file is part of the basic job design method. You drop the hashed file stage on the designer canvas, pull...
by ArndW
Fri Jan 06, 2006 3:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UVOpen Unable to Open File Hash File Error
Replies: 12
Views: 3008

In order for changes to the uvconfig file to take effect, you need to run uvregend and restart the DataStage server - have you done that? One possible cause of the error message is trying to open a hashed file that is not there; so your deleting the hashed files in that directory could be a cause. I...
by ArndW
Thu Jan 05, 2006 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with using sed, awk, nawk or tr
Replies: 22
Views: 5026

Michael, are you sure you won't relent and use a DS/Basic function to do this? It would only be 9 lines long... StringLen = LEN(Arg1) Ans = '' Skip = 0 FOR i = 1 to StringLen CurrentChar = Arg1[i,1] IF CurrentChar = '[' THEN Skip = 1 ELSE IF CurrentChar=']' THEN Skip = 0 ELSE IF NOT(Skip...
by ArndW
Thu Jan 05, 2006 4:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: could not start Datastage telnet service on local computer
Replies: 19
Views: 5475

Sunshine, I think the frustration from myself and others on this forum is when a question is asked whose answer can be found by going to the product documentation and reading the appropriate section. So apart from the suggestion of getting qualified training on the product I can only recommend to ac...
by ArndW
Thu Jan 05, 2006 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decimal field rounding
Replies: 3
Views: 899

For debugging purposes, let's stick with output to a sequential file. How do you convert the CHAR(18) to an integer in your job? I think integer values are limited to +/- 2,147,483,647 after which they are stored in floating point format. Your uvconfig will contain a setting for WIDEZERO and EXACTNU...
by ArndW
Thu Jan 05, 2006 1:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: could not start Datastage telnet service on local computer
Replies: 19
Views: 5475

Sunshine, did you try the DataStage telnet after you did this to see if it works? If it still doesn't work, please talk to your system admin who might know a bit more about the installation and the last step is to talk with a support professional at IBM/Ascential or whoever your support provider is.
by ArndW
Thu Jan 05, 2006 1:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Function in datastage
Replies: 5
Views: 7890

Luciana, I think that ds_developer's point is that strings with a "-" and "." (or a ',' if the NLS locale is enabled) will be returned as legal numeric, so you don't need to use an additional function to remove them.
by ArndW
Thu Jan 05, 2006 1:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP Stage
Replies: 2
Views: 667

can you open a cmd window and use Windows FTP to connect to that machine? This might not be a DataStage problem but a connectivity issue.
by ArndW
Thu Jan 05, 2006 1:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to compare two jobs
Replies: 5
Views: 1103

JD,

I can't take the credit for that - you were the one who tried it in the first place :idea: But there really is no other easy method.
by ArndW
Thu Jan 05, 2006 1:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: could not start Datastage telnet service on local computer
Replies: 19
Views: 5475

sunshine - questions like this don't belong here! There's a really cool utility out there - it's called the Internet. I took 30 seconds and called up "MKS tookit" to get the MKS website, then opened up their product documentation and got the telnetd documentation page. This explained that the MKS da...
by ArndW
Thu Jan 05, 2006 11:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to compare two jobs
Replies: 5
Views: 1103

JD - OK, I assume that means that it had been validated in one project and not in another. Using the DSX file is the only method that I would consider using to compare files.
by ArndW
Thu Jan 05, 2006 11:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error handling in datastage
Replies: 3
Views: 1111

The database errors are often written to the log file, so they would be visible using method (a). With method (b) you could get the last error information from the DSGetLinkInfo() function in DS/Basic.
by ArndW
Thu Jan 05, 2006 11:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to compare two jobs
Replies: 5
Views: 1103

Identical jobs should create identical .dsx files from the same version of DataStage. What didn't work when you tried this?