Search found 53125 matches

by ray.wurlod
Wed Dec 29, 2004 3:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Implementing SCD type-II in DataStage
Replies: 4
Views: 2833

If you had searched the Forum, you would have determined that pre-loading a set of the current keys from the target table into a hashed file allows rapid and easy detection of existence, and can deliver the corresponding surrogate key values too. On the basis of that selection, you can determine whe...
by ray.wurlod
Wed Dec 29, 2004 3:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing Job log
Replies: 12
Views: 4370

Search the Forum for //JOB.STARTED.NO which you will find to be a particuarly useful nugget of knowledge in your current quest.
by ray.wurlod
Wed Dec 29, 2004 3:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Different stages in the datastage
Replies: 8
Views: 4108

Certainly it's a steep part of the learning curve you're on. What you are seeking from this list is free tuition, that would take at least fifteen days of formal class time. I doubt that any of the contributors here can afford that amount of time as a gift. Either enrol in one of the standard class ...
by ray.wurlod
Wed Dec 29, 2004 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Change the TimeStamp(WST) to Timestamp(Central)
Replies: 4
Views: 1026

Clever, innit? What's happening is that the timestamp is being converted into "seconds since a certain zero", an hour (3600 seconds) added, and that converted back into a timestamp. The Iconv/Oconv functions are completely cognizant about the calendar, including the 11 days that the Pope removed in ...
by ray.wurlod
Wed Dec 29, 2004 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer detected
Replies: 2
Views: 753

And you must post the entire message. There is no such message as "TR detected". It probably says something like "abnormal termination of stage TR detected".
Without the entire message your question is like "My car is. Can you fix it?" Not helpful, is it?
by ray.wurlod
Wed Dec 29, 2004 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The connection is Broken (81002)
Replies: 4
Views: 3865

Another possibility is that someone killed your agent process (dsapi_slave or dsapi_server) on the host machine, possibly thinking it was a defunct process because it was doing nothing. Alter them to the fact that this is not a good plan.
by ray.wurlod
Wed Dec 29, 2004 2:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in ODBC stage while accessing TD
Replies: 1
Views: 911

Is your network stable and reliable? The message suggests that there are interrupted calls to socket routines, or interrupted system calls while sockets are being used. This amounts to much the same thing. Get your network administrator to trace the source of the interrupts. For example you may have...
by ray.wurlod
Wed Dec 29, 2004 2:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Filtering folder content according to file size,date....etc?
Replies: 10
Views: 2914

You're correct in asserting that the STATUS statement gives you lots of information about a currently open file. To process all the files in the directory, you need to open each file separately to apply this statement. (This is not really a problem; under the covers any utility you use would have to...
by ray.wurlod
Wed Dec 29, 2004 2:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Derriving difference of two timestamps
Replies: 3
Views: 1558

Welcome aboard! :D There is no built-in operator for this task; you probably have to construct your own. Do you need whole hours or fractional? If whole hours, is this a rounded or truncated number? (A truncated number would be "completed hours".) Basically you have to pick apart each timestamp, con...
by ray.wurlod
Wed Dec 29, 2004 2:15 pm
Forum: IBM QualityStage
Topic: Different Stages in QualityStage
Replies: 2
Views: 2118

If you have QualityStage installed there is a manual called Stages.pdf that contains detailed information about each of the stages that are available. If you've been used to INTEGRITY (the former name for QualityStage), the names have changed; operators have become stages. The following table is fro...
by ray.wurlod
Tue Dec 28, 2004 8:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 81011 error
Replies: 2
Views: 1283

This is a generic error code; the text accompanying it seems to say it all. It's probably the case that your PC can not resolve the DataStage server machine's IP address from the host name, but the other developer's PC can. Try using the IP address rather than the host name. If that doesn't work, tr...
by ray.wurlod
Tue Dec 28, 2004 8:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Folder Stage when there are multiple source files
Replies: 9
Views: 3701

Welcome aboard! :D The Folder stage is notorious (at least in version 7.1 and earlier) for not being able to handle large files in the folder. Create a server job to process one sequential file into the target table. Make the name of the file a job parameter. Create another server job. Open its prop...
by ray.wurlod
Tue Dec 28, 2004 8:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating and using Hash Files in Routines
Replies: 8
Views: 2259

Each instance runs as a separate process. COMMON is intra-process, it is not an inter-process mechanism. Therefore, even though one process opens the file into a variable named in a COMMON area of memory, that area of memory is private to its own process. Another job will create its own, private, co...
by ray.wurlod
Tue Dec 28, 2004 8:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Different stages in the datastage
Replies: 8
Views: 4108

There are three different kinds of DataStage job. Server jobs run on a single server. The underlying language (in which you develop routines, expressions, etc.) is DataStage BASIC. Parallel jobs run on one or more "processing nodes" in an SMP or MPP environment. The underlying language is C/C++. Mai...
by ray.wurlod
Tue Dec 28, 2004 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error 904 Occured
Replies: 5
Views: 1864

Welcome aboard! :D There's not really much information here. Were there any other warnings in the log for this job? What I can see is that you have a job with two Transformer stages, and the one called FDM84_88_BUS_UNIT_TBL_PM.exp_EMPTY_STRING_FDM had a problem. But without other error messages, thi...