Search found 53125 matches
- Wed Feb 25, 2004 2:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dependencies with routines and Job Control
- Replies: 1
- Views: 838
This is not the function of the Dependencies tab. The Dependencies tab is used so that you can record the other components on which this component depends, so that they are not left behind when promoting from development to test/QA to production. Entries on the grid on the Dependencies tab do not cr...
- Wed Feb 25, 2004 2:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Using link collector
- Replies: 2
- Views: 831
- Wed Feb 25, 2004 2:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to delete a hash file using DS or DSCommands ?
- Replies: 3
- Views: 1847
Re: How to delete a hash file using DS or DSCommands ?
Hi , How to delete a hash file using DS or DSCommands ? I am temp. using hash files in a job.I want to delete those files after finishing the job. Is there any way i could do it in the same job itself ? Use an after-stage subroutine or after-job subroutine. Call the ExecDOS subroutine. In the Input...
- Wed Feb 25, 2004 2:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to submit a Datastage Job from UNIX command line
- Replies: 8
- Views: 4042
The same list, for BASIC, is in dsinclude/JOBCONTROL.H in your project directory. The constants are set up using EQUATE (rather than #define, which is for C). To use these in your routines, include the following declarations in the top of your source code. $IFNDEF JOBCONTROL.H $INCLUDE DSINCLUDE JOB...
- Wed Feb 25, 2004 1:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Executing Stored Procedure as a After Job Routine
- Replies: 3
- Views: 894
It is possible, but it's possibly not what you want to do. The technique is to use BASIC SQL Client Interface (BCI) functions to mimic code written to the ODBC API. You will need a licensed ODBC driver; the ones that come with DataStage are not licensed for this type of use. After establishing the t...
- Wed Feb 25, 2004 12:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: parrallel or server job
- Replies: 2
- Views: 1163
The first and obvious one is whether you're licensed for Parallel Extender. The easiest way to tell is when you create a new job in Designer, are you offered a choice that includes Parallel Job? The second criterion is multiple CPUs. The PX concept is to be able to throw LOTS of processing power at ...
- Wed Feb 25, 2004 12:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Control Character
- Replies: 10
- Views: 4586
- Tue Feb 24, 2004 7:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Control Character
- Replies: 10
- Views: 4586
Preprocessing the file with the stream editor sed is probably the most efficient way to accomplish removal of non-printing characters. Within a BASIC Transformer stage you could take advantage of Oconv() with the "MCP" conversion specification, which converts non-printing characters to periods (for ...
- Tue Feb 24, 2004 2:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To VC, or not to VC
- Replies: 8
- Views: 3345
- Tue Feb 24, 2004 2:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Accessing Hashed Files using UV stage.
- Replies: 2
- Views: 843
The answer, as always, is "depends". You'll get only a slight gain, maybe none, if you're comparing a local Oracle instance to a (the) local UV instance. Indexing the search columns will achieve gains, of course. And if the comparison is between a remote Oracle instance and a local UV instance, 'twi...
- Mon Feb 23, 2004 11:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem starting DS clients
- Replies: 7
- Views: 2742
"Unable to bind socket" usually results from the socket not having been release properly from an earlier run, or perhaps that something else is using the socket. DataStage RPC (the listener for the DataStage clients) listens on port number 31538 by default. The "Microsoft solution" (re-boot) is guar...
- Mon Feb 23, 2004 11:26 pm
- Forum: IBM QualityStage
- Topic: matching problem
- Replies: 5
- Views: 3473
- Mon Feb 23, 2004 3:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Difference between Decimal and Numeric data types?
- Replies: 3
- Views: 5700
- Mon Feb 23, 2004 3:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Any Shared Variable/Common Variable concept ?
- Replies: 4
- Views: 1439
While you are finding out there are more efficient (and probably safer) ways to go, no-one actually answered your question. At least not directly. @USER0 through @USER4 are common variables, and I said so! Nice thing is, you don't even have to declare them. There's also @USER.RETURN.CODE, should yo...
- Mon Feb 23, 2004 12:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Any Shared Variable/Common Variable concept ?
- Replies: 4
- Views: 1439
Putting a value on the link between two Transformer stages means that it is treated as a shared variable. There is no more efficient way. The so-called "user status area" is, in fact, a column in a row in a hashed file in the Repository, so involves I/O. There are five "user" common variables called...