Search found 53125 matches

by ray.wurlod
Mon Jan 30, 2006 4:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IQ12 bulk load on Linux
Replies: 19
Views: 5604

The Director log tells you how many rows were written to the data file. Can you check this, and confirm (or otherwise) that all the lines are there? Use a wc command. If they are, the problem is not in DataStage per se, it's either in the bulk loader itself or how DataStage invokes it. The easiest w...
by ray.wurlod
Mon Jan 30, 2006 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read from nth last line
Replies: 7
Views: 1864

Well, Arnd hasn't lost all his long-term memory yet, the memory allocation mechanism for strings IS based on a Fibonacci series. There is no practical limit so long as you have some (virtual memory) left. Of course, if you really hammer it you will introduce paging (so your process can get more resi...
by ray.wurlod
Mon Jan 30, 2006 4:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DEV to UAT move
Replies: 8
Views: 2592

ArndW wrote:The only way I know of is to use the graphical interface, just like you did with your development project.

:idea: Alternative: You can right-click on the actual message (in Director log view) and create a message handler from there.
by ray.wurlod
Mon Jan 30, 2006 4:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while joining data from Dataset and DB2 APIStage
Replies: 2
Views: 1817

Welcome aboard. :D Search the forum for SIGINT; it is one of the standard UNIX signals. Your two statements that "the job is aborting" and "we have to stop it" are mutually antagonistic; if a job has aborted, it is stopped. Did you mean "we have to reset it"? There are many possible causes for a SIG...
by ray.wurlod
Mon Jan 30, 2006 4:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings while using lookup file set
Replies: 5
Views: 2032

To clarify Benouche's post, if you are going to use a partitioned Lookup File Set, it must be partitioned in exactly the same way as the stream input. This guarantees that all lookup keys will be in the correct partition. Since a single sequential file can not readily be partitioned on a column, you...
by ray.wurlod
Sun Jan 29, 2006 10:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read from nth last line
Replies: 7
Views: 1864

Yes, it's doable with BASIC. OpenSeq then Seek to end of file. Repeatedly Seek -1 bytes from current position, counting the line termination characters. I note that you're on Windows - you may like to add a check that you really have a CRLF pair. Accumulate the current line in a string, prepending t...
by ray.wurlod
Sun Jan 29, 2006 10:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: difference between datastage and datastageTX
Replies: 1
Views: 1349

First, there's no need to shout. Some find all upper case offensive. Others might think you're writing in COBOL (gasp!). There is an excellent search facility here. The question you asked has been asked, and answered before, quite comprehensively. Please find it then, if you have more questions, fee...
by ray.wurlod
Sun Jan 29, 2006 2:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Command line commands for datastage
Replies: 7
Views: 4472

Read the help/manual again about what the Command stage does. It executes an operating system command, not a DataStage command. Therefore you can use operating system commands such as mv or COPY to accomplish what you seek to do.
by ray.wurlod
Sun Jan 29, 2006 2:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Access DS Repository By C++ application
Replies: 12
Views: 2869

No.

However, there is a document about the UniVerse equivalent, that can be found among the UniVerse manuals (use version 9.6) at the IBM "manuals online" website.
by ray.wurlod
Sun Jan 29, 2006 2:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding DSattachjob
Replies: 7
Views: 2591

It may currently be an integer but "they" reserve the right to change it (for example to a pointer to a structure). Currently it's a row number in a table of pointers to structures. No, you can not have access to that table. Treat it like any other opaque variable (file handle, subroutine handle, co...
by ray.wurlod
Sun Jan 29, 2006 2:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Repository Error
Replies: 2
Views: 2443

Was this version 8 ("Hawk") or version 7.x ?

It is a known - indeed documented - issue for the Hawk release. Did you also get the problem with version 7, or are you just re-posting the solution found in another thread?
by ray.wurlod
Sun Jan 29, 2006 1:27 am
Forum: Site/Forum
Topic: 5K posts countdown for Craig
Replies: 8
Views: 3223

5K posts countdown for Craig

It has been tough trying to sustain 2 posts for every one of Craig's. Let's not diminish his imminent achievement of 5,000 posts just because someone else happens to be nearing 10,000. Great fuss was made when I got to 5,000 - the same courtesy should be afforded to others who achieve the same miles...
by ray.wurlod
Sun Jan 29, 2006 1:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Command line commands for datastage
Replies: 7
Views: 4472

"DataStage commands" can be entered via the Administrator client or via a telnet session. Where DataStage server is installed on Windows, telnet is a DataStage service. "DataStage commands" can not, in general, be entered from a DOS (or cmd) shell. Your apparent lack of experience/knowledge leads me...
by ray.wurlod
Sat Jan 28, 2006 3:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage - Hash files
Replies: 7
Views: 1782

This thread began as a question about hashed files. I have no idea why people responded with thoughts on Aggregator stages. We continue to await a response from sankarsadasivan to the questions posed about the job design, data and hashed file size. Please begin a separate thread if you want to discu...
by ray.wurlod
Sat Jan 28, 2006 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Access DS Repository By C++ application
Replies: 12
Views: 2869

If, as you claim, you know UV, then you will know of UniObjects, an interface that can present objects via a COM control or as Java classes. DataStage has its equivalent, called dsobjects.dll. This will make available to you all the object you require to access a DataStage repository database. A war...