Search found 53125 matches
- Mon Jul 21, 2003 5:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Externally Running DS through VB
- Replies: 5
- Views: 929
Why do you want to re-invent the DataStage Director? The API is used to create utilities to be used on the server. In fact, dsjob is provided as an example of a program that uses the API. This is fully documented, with source code, in the manual. Similarly, to be able to run jobs from a client based...
- Mon Jul 21, 2003 5:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Active Vs Passive Stage
- Replies: 2
- Views: 536
Simplistically, an active stage is one that processes rows and has the capacity to change the data being processed, for example the Transformer, Aggregator, Pivot or Sort stage. A passive stage is one that connects to a persistent data store, either retrieving rows from or putting rows to that store...
- Mon Jul 21, 2003 4:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem with calling Oracle Stored Procedure
- Replies: 6
- Views: 1747
You could try user-defined SQL using CALL - I do not know whether this will work. As a general rule, definitions of stored procedures to be invoked by DataStage have to be imported (or created) first (so that the number of arguments can be verified) and must have at least a return result set. In my ...
- Mon Jul 21, 2003 4:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Parallel Extender Jobs on DataStage Windows Server
- Replies: 1
- Views: 873
In DataStage 6.0 you can create PX jobs on a Windows-based server. You can not compile them there, which means that you cannot test them there. You can not use View Data, because the underlying (Orchestrate) engine has not been ported to the Windows environment. I believe that PX on Windows is suppo...
- Sun Jul 20, 2003 5:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple TCL commands
- Replies: 5
- Views: 1157
There is a useful technique called a "paragraph" that you can use. You set it up with the Administrator client's Command window, through which you enter each of the commands in turn. Note that the commands are stored in the history pane. You can multi-select commands from the history pane and click ...
- Sat Jul 19, 2003 5:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Windows NT jobs used in Unix Server
- Replies: 2
- Views: 905
A couple of things to add. Check for any use of ExecDOS, which you will need to change to ExecSH. Similarly check for any use of DSExecute, where you may need to change the Shell argument from "NT" to "UNIX". Tip: export the project and search the DSX file for ExecDOS and DSExecute. Remember, too, t...
- Sat Jul 19, 2003 5:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DB2 UDB v8.1 Client Problems?
- Replies: 8
- Views: 2809
$DSP.Close is a function called from the stage. SQLFreeHandle encapsulates the ODBC (BCI) functions SQLFreeStmt, SQLFreeConnect and SQLFreeEnv; in this case it appears that it is experiencing difficulty releasing the handle to the connection (hDBC). This is something that only Ascential Engineering ...
- Sat Jul 19, 2003 5:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Query against a Universe file stage
- Replies: 5
- Views: 1426
Remember that the benefits of using a hashed file technique obtain only if an "=" comparison are done on the entire primary key. You can enhance performance on non "=" comparisons (irrespective of whether you use your original model or one of the subsequently suggested ones) by judicious use of inde...
- Thu Jul 17, 2003 10:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: OCI stage DB connections
- Replies: 6
- Views: 1862
- Thu Jul 17, 2003 10:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Read config/sequence from database
- Replies: 20
- Views: 3674
I think you'll find that the DataDirect drivers work only for a one month trial period (from first use), then you have to pay for them. As delivered, they are licensed only for use by DataStage stages, not for use by BCI code. Check out their web site: m Note also that Ascential will NOT support "my...
- Thu Jul 17, 2003 7:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DB2 UDB v8.1 Client Problems?
- Replies: 8
- Views: 2809
- Thu Jul 17, 2003 7:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sleeping jobs
- Replies: 5
- Views: 794
- Thu Jul 17, 2003 7:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Pre Caching Of hash files
- Replies: 9
- Views: 2628
Have you examined the job designs to ensure that every column returned from every hashed file is used in the job? By eliminating those that aren't, you get smaller - faster loading - hashed files and better throughput. Similarly, are all the rows in the hashed file necessary? For example if you are ...
- Thu Jul 17, 2003 6:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Building a Dimensional Warehouse
- Replies: 6
- Views: 894
- Thu Jul 17, 2003 6:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Lookup 1 Key in a 2 Key Hash
- Replies: 10
- Views: 2365
To answer the original question, all you have to do is lie. Don't declare Hash.B as a key column (in this job's Transformer stage). However, this introduces the possibility that there is more than one row in the hashed file that meets your criterion (Data.A = Hash.A). A hashed file stage will only r...