Search found 53125 matches
- Thu Feb 10, 2005 3:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Running a job as another user
- Replies: 6
- Views: 2586
Each DataStage developer should have dstage (or whatever you've called the group) as its primary group, and this should also be the primary group of dsadm. For project-based security, there is a separate group associated with each project. Eponymous group names are good; a project called CDR could h...
- Thu Feb 10, 2005 3:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Inconsistant behaviour when using arrays
- Replies: 9
- Views: 2053
- Thu Feb 10, 2005 3:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: inputs required on the design...
- Replies: 8
- Views: 2927
Most databases use an NR1W locking scheme (N readers or 1 writer). Therefore, unless another process is updating the table, you ought to have no problems whatsoever. Some databases, such as Red Brick Warehouse, implement "query priority concurrency", so that an update can be suspended while a snapsh...
- Thu Feb 10, 2005 2:58 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: warnings...is it ok to ignore them?
- Replies: 10
- Views: 3562
A 32-bit integer (int32) can not fit into a Decimal(8,0) column. These integers can have up to 10 digits - the largest integer is 2147483647. That's why DataStage issues you with a warning. What you're trying to do may have catastrophic consequences for large enough integers (such as a segmentation ...
- Thu Feb 10, 2005 2:51 pm
- Forum: Information Analyzer (formerly ProfileStage)
- Topic: Export Analyzed Database from Profile stage to DDL *.sql stm
- Replies: 3
- Views: 3016
- Thu Feb 10, 2005 2:49 pm
- Forum: Information Analyzer (formerly ProfileStage)
- Topic: AuditStage Error: Error creating MD_TABLE index
- Replies: 1
- Views: 2236
Welcome aboard! :D I'm guessing you chose to use an external database (SQL Server?). An error creating an index usually suggests permissions or privilege problems. An "internal" database is the one that AuditStage uses if you don't specify an external database. I'm not 100% certain, but I think it's...
- Thu Feb 10, 2005 2:47 pm
- Forum: Enhancement Wish List
- Topic: Server/Parallel Designer - mark objects as 'Inactive'
- Replies: 6
- Views: 2369
- Thu Feb 10, 2005 12:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: inputs required on the design...
- Replies: 8
- Views: 2927
The original design is perfectly valid and will give the same parallelism as the newer design. In the original design, because there are no interdependencies, the separate Transformer stages - and therefore data streams - will be handled by separate processes. On a multiple CPU machine, it's highly ...
- Thu Feb 10, 2005 12:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Rejecting all rows which cannot be loaded in ORACLE
- Replies: 21
- Views: 7785
- Thu Feb 10, 2005 12:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Access Seq files over http
- Replies: 4
- Views: 1900
- Thu Feb 10, 2005 12:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SQL Bulk 7 Plug-in Stage
- Replies: 7
- Views: 1921
Given (reading between the lines) that there is no stage type to meet your requirements, the next best thing to do is to craft your own control script, and to use a Sequential File stage to generate the data file, and FTP (either an FTP stage or a shell script) to transfer the data file to the Windo...
- Wed Feb 09, 2005 4:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reg combining the data from 3 oracle tables
- Replies: 10
- Views: 1606
- Wed Feb 09, 2005 4:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date format Validation
- Replies: 2
- Views: 1017
- Wed Feb 09, 2005 4:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: UVFIXFILE 64-BIT
- Replies: 5
- Views: 3533
- Wed Feb 09, 2005 4:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Joining of tables
- Replies: 7
- Views: 1923
Ultimately, whether you do the joins in the database or (to DB2 tables) in DataStage, the same amount of join work has to take place. The same amount of work still has to take place if you use hashed files, but these can be cached in memory (if not too large), which is where the throughput gain come...