Search found 7201 matches
- Thu Feb 28, 2002 6:31 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: named pipe in sequential file stage - @NULL/@NULL.STR
- Replies: 4
- Views: 3024
Im not surprised that a function executed against a string that is "not null", is unable to return "null" as an answer, even though "conceptually" we might think of it that way (trimming a blank leaves "what?"). That functionality could be debated by data modelers until the sun goes down. Instead, w...
- Thu Feb 28, 2002 6:00 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: named pipe in sequential file stage - @NULL/@NULL.STR
- Replies: 4
- Views: 3024
Thats right, I would like a question that Im sure could be really simple. Could you pls tell me why the following simple Transform Function reply me always NOTNULL Arg1 = " " If IsNull(Trim(Arg1)) Then Ans = "IMNULL" End Else Ans = NOTNULL End Thanks P.S. And about the NamedPipe? We have tryed to un...
- Thu Feb 28, 2002 5:43 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Cannot find the job...
- Replies: 2
- Views: 761
Cannot find the job...
Hi All, This might sound a bit strange, but I am not able to find a job that I have created. The situation arised like this. I edited a job in the designer and clicked File-->Save As to save it in a different name. There was some error message saying that it cannot save the job but it did save the j...
- Thu Feb 28, 2002 5:16 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: named pipe in sequential file stage - @NULL/@NULL.STR
- Replies: 4
- Views: 3024
named pipe in sequential file stage - @NULL/@NULL.STR
This is a topic for an orphaned message.
- Thu Feb 28, 2002 5:16 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: named pipe in sequential file stage - @NULL/@NULL.STR
- Replies: 4
- Views: 3024
If you want to set a variable to the null value, you must use: Ans = @NULL The somewhat confusingly-named pseudo-variable @NULL.STR represents a string containing the single byte x80. That happens to be the representation of a null field when stored in a hashed file, among other things. Within DS jo...
- Thu Feb 28, 2002 3:17 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Sequential file stage
- Replies: 2
- Views: 580
You have a new option in 5.1 with the sequential stage. You can define just the first two fields and then mark the option on the Format tab to "Suppress row truncation warnings". Added for exactly the situation youve described. -craig "Phaneender Aedla" cc: Subject: RE: Sequential file stage 02/28/0...
- Thu Feb 28, 2002 2:41 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Sequential file stage
- Replies: 2
- Views: 580
Hi, You need to know the maximum possible columns that the seq file can contain. Define all these columns in the seq stage and if u scroll to the right, ull see Incomplete Column. Set it to Replace or Replace & Warn if u need the warnings. Use the transformer stage to get which ever columns u need. ...
- Thu Feb 28, 2002 1:24 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: named pipe in sequential file stage
- Replies: 0
- Views: 416
named pipe in sequential file stage
Hi all, does anybody know something more than online help about named pipe option in sequential file stage?? Moreover does anybody tell me wy executing a routine with Ans = @NULL.STR the result is "?" (euro money simbol) simbol instead of NULL???? Thank u Bye Riccardo Tani Staff Consultant Direzione...
- Thu Feb 28, 2002 1:12 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: OPENPATH
- Replies: 1
- Views: 427
At 03:51 PM 2/28/02 +1100, you wrote: >Hi All > >Has any one any examples of how the OPENPATH and relevant statements >are >used on >hashed files. > >After reading the PDF files, I am none the wiser. OPENPATH /myaccount/myproject/MYHASHEDFILE TO FP ELSE PRINT "Cannot open file" END READ Rec FROM FP,...
- Thu Feb 28, 2002 4:51 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: OPENPATH
- Replies: 1
- Views: 427
OPENPATH
Hi All
Has any one any examples of how the OPENPATH and relevant statements are used on hashed files.
After reading the PDF files, I am none the wiser.
Thanks
Adam
Has any one any examples of how the OPENPATH and relevant statements are used on hashed files.
After reading the PDF files, I am none the wiser.
Thanks
Adam
- Thu Feb 28, 2002 12:07 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Performance tuning of ETL job
- Replies: 4
- Views: 1133
Ascential Software do not make recommendations on the table size for Aggregator stages. Clearly the only possible answer is "it depends"; what other memory-hungry things are there in the job design (for example Sort stages, Hashed File stages with memory caching enabled), how much data has to be agg...
- Wed Feb 27, 2002 5:41 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Sequential file stage
- Replies: 2
- Views: 580
Sequential file stage
Hi there, I would like to submit you a question. Is possible declare in the Sequential file stage a structure without define all the field on the Seq File without recive the "too many columns in row..." message?? That means: if I have a seq file with the following record Giovanni,Boccia,Italy May I ...
- Wed Feb 27, 2002 3:33 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Performance tuning of ETL job
- Replies: 4
- Views: 1133
Dont use the aggregator stage. Use a multi-threaded tool like CoSort or SyncSort. The aggregator shouldnt be used for high volumes or complex sorts/aggregates, the best shot you have is to sort the data first and use the sorted data switches in the aggregator. Otherwise, you are single-threading you...
- Wed Feb 27, 2002 2:21 pm
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Job keeps on running
- Replies: 4
- Views: 935
you can right code in your job control to extract the Job times and perform your compare. I am currently doing that for my scheduled jobs to measure duration and to inform me when jobs are running way to long. Here is the code I use. Works perfectly for me. If (Status = DSJS.RUNNING) Then Stime = DS...
- Wed Feb 27, 2002 6:27 am
- Forum: Archive of DataStage Users@Oliver.com
- Topic: Performance tuning of ETL job
- Replies: 4
- Views: 1133
Raymond, Thanks for your reply. What is the recommended table size to be used to tune performance of a job, which has Aggregator stage?. Or any other the mentioned properties could be changed to improve the performance?. Regards Saravanan "Raymond Wurlod" To: Subject: Re: Performance tuning of ETL j...