Search found 53125 matches

by ray.wurlod
Thu Mar 10, 2005 6:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loop Conditions
Replies: 7
Views: 1928

Could that be done with input sorted by PR_CODE (ascending) and running through an Aggregator stage, grouping by the other columns (which seem to be constant for variations in PR_CODE), and using Last as the aggregate function on the PR_CODE column? If my assumption holds, this should offer a simple...
by ray.wurlod
Thu Mar 10, 2005 6:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what are the new stages availabe on 7.5 server version DS
Replies: 4
Views: 962

New stages are announced in the readme documents that accompany the software, and usually in marketing announcements on the Ascential web site. Please don't demand "ASAP" response from the volunteers who post on this site; some of us find it offensive. Others of us would be happy to sell you "urgent...
by ray.wurlod
Thu Mar 10, 2005 6:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Genrating a report ( not job log ) in a specifc format.
Replies: 6
Views: 1582

Row count can be had from interrogating the job itself, using DSGetStageInfo or DSGetLinkInfo function. It would help if you have a standard naming convention for your stages and links. How you determine "do not match" would have to be a function of your job design logic (unless mismatched rows are ...
by ray.wurlod
Thu Mar 10, 2005 6:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage var char limitations?
Replies: 1
Views: 907

It's not a DataStage limitation; DataStage can handle VarChar up to 64K characters. Are there any warning messages in the log about data being truncated? Create a job that writes to a textfile, so you can determine whether the truncation is occurring during SELECT or INSERT/UPDATE operations. Verify...
by ray.wurlod
Thu Mar 10, 2005 6:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage detected
Replies: 4
Views: 1955

(From Administering UniVerse , Appendix E): Fault type 6 is a SIGIOT (a signal generated by an IOT instruction). This might, as Ken suggests, result from an attempt to extend a hashed file to 2GB, or it may be something else. The IDENT1 stage is not, in fact, a hashed file stage; it's an invisible T...
by ray.wurlod
Thu Mar 10, 2005 6:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove Duplicates from Sequential File
Replies: 16
Views: 7323

chulett wrote:First solution Ken mentioned, Ray - attention to detail, lad! :wink:
Ken's post wasn't there when I posted - sometimes it takes a long time for my posts to get through. :cry:
by ray.wurlod
Thu Mar 10, 2005 5:41 pm
Forum: Site/Forum
Topic: DataStage Release in postings
Replies: 3
Views: 2591

Hawk? (8.x?)
Rhapsody? (9.x?)
Another forum for Sorcerer? (the new UI for all Ascl products)
by ray.wurlod
Tue Mar 08, 2005 9:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove Duplicates from Sequential File
Replies: 16
Views: 7323

You might be able to use a UNIX command, such as sort -u (if my memory serves), to remove duplicates.
by ray.wurlod
Tue Mar 08, 2005 9:56 pm
Forum: IBM QualityStage
Topic: QS Address Standadization Error or Memory Error ?
Replies: 5
Views: 3003

Thank you for posting the solution. Next time someone searches the forum looking for an answer to this problem, they will be saved some time and effort. Yay!
by ray.wurlod
Tue Mar 08, 2005 6:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remove Duplicates from Sequential File
Replies: 16
Views: 7323

Yes, but it's not totally reliable. By its very nature CRC32 introduces a 1 in 2**32 risk of missing identifying a duplicate. A hashed file or some form of searchable list (in a Routine) are the more common ways of removing duplicates. Or you could invest in PX and use the RemoveDuplicates stage. Or...
by ray.wurlod
Tue Mar 08, 2005 6:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error running uvsh
Replies: 6
Views: 4044

Sorry I couldn't give you the answer right away; I was already at work (in New Zealand this week). But, hey, you now know another place to get UniVerse answers. This was the other half of the celebrated Clif Oliver mailing lists.
by ray.wurlod
Tue Mar 08, 2005 6:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating Hashed file via UniVerse Stage
Replies: 4
Views: 1692

But did you check the actual hashed file's metadata (not what's in the DataStage repository)? Assuming you have a VOC pointer (search for SETFILE) execute the command LIST.DICT hashedfilename @ SQLTYPE 'UPDATE_STATE' or, if you prefer SQL, SELECT ID,CODE,LOC,CONV,NAME,FORMAT,SM,ASSOC,SQLTYPE FROM DI...
by ray.wurlod
Tue Mar 08, 2005 6:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find Repository Objects
Replies: 2
Views: 1067

In the current release the DataStage repository is closed; that is, its table definitions are not in the public domain. The Reporting Assistant can dump information from the DataStage repository into a first-normal-form, with your choice of target database. Within DataStage, the repository makes a l...
by ray.wurlod
Tue Mar 08, 2005 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ERROR FACING IN MASTER SEQUENCER ,IF IT IS RUN FROM CLIENT
Replies: 6
Views: 1215

DSR_RECORD is usually invoked when refreshing something in the client. Check for timed-out connections and invalidated repository indexing.
by ray.wurlod
Tue Mar 08, 2005 3:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pattern Matching
Replies: 3
Views: 926

How are you performing the search? Yes, it can be done in a Server job, in a number of ways. The obvious one, the Folder stage, is only good for a small number of small files, due to a known bug. The search can also be performed in a Routine (perhaps invoked from a Routine activity), which is probab...