Search found 53125 matches

by ray.wurlod
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...
by ray.wurlod
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

Famous last words...
by ray.wurlod
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...
by ray.wurlod
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 ...
by ray.wurlod
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

There is no Analysis Server running at IP address 10.119.2.13 is a very clear message.

You have either not installed or not successfully started the ProfileStage analysis server on the machine whose IP address is 10.119.2.13.
by ray.wurlod
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...
by ray.wurlod
Thu Feb 10, 2005 2:47 pm
Forum: Enhancement Wish List
Topic: Server/Parallel Designer - mark objects as 'Inactive'
Replies: 6
Views: 2369

I didn't tell you this, but a complete product revamp is coming sooner than you think.
I will take the Sergeant Schultz defence to any further questions on this.
by ray.wurlod
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 ...
by ray.wurlod
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

Mostly we rely on the SQL*Loader bad file. :wink:
by ray.wurlod
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

XML PACK is not free.
by ray.wurlod
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...
by ray.wurlod
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

Welcome aboard! :D Are all these tables in the same database? If so, and no transformation or checking is required, bypass DataStage and do the whole thing within Oracle. INSERT INTO table4(column_list) SELECT columns FROM table1, table2, table3 WHERE join_criteria ; Otherwise, use the same ...
by ray.wurlod
Wed Feb 09, 2005 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date format Validation
Replies: 2
Views: 1017

The easiest way is to create a routine, and use the result of the routine (loaded into a stage variable, so you only need to execute it once) to constraint the output links. Here's one I baked earlier. FUNCTION IsDateStr(Arg1) * History (most recent first) * Date Programmer Version D...
by ray.wurlod
Wed Feb 09, 2005 4:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UVFIXFILE 64-BIT
Replies: 5
Views: 3533

You need to recompile the job to repopulate its RT_CONFIGnnn information, including the JOBPARAMINSTS record.
by ray.wurlod
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...