Search found 4992 matches

by kcbland
Mon Jan 31, 2005 12:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RT_CONFIGnn file - Cannot open execute job
Replies: 4
Views: 496

This is BAD Do either a "df -k /yourprojectpath" or a "bdf /yourprojectpath" to get the stats on the filesystem. No matter what, you really need to protect yourself and make sure you've got all of your jobdesigns and functions saved. This affects all projects on that filesystem. Get an export right ...
by kcbland
Mon Jan 31, 2005 12:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table Joins (or the eqiuivalent) in DataStage.
Replies: 6
Views: 589

If they're two different databases and technologies, you can't write a single SQL statement easily. The query supplied is an inner join, so only matching rows in both tables will be in the output. It matters which table is the driver, so use the driving table as the primary input stream, probably yo...
by kcbland
Mon Jan 31, 2005 11:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RT_CONFIGnn file - Cannot open execute job
Replies: 4
Views: 496

If it's just one job, export it and reimport it. If it's all of your jobs, export your project immediately or risk corroupting it. You need to check that you're not out of space on the project filesystem. If you are, make the export to save everything incase you corrupt the actually job design hash ...
by kcbland
Mon Jan 31, 2005 9:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal End error while running a DS load job into Oracle
Replies: 32
Views: 8438

I do have a trigger on the table to update update_user_id and update_date. Every row loaded hits this trigger, can it be disabled on this table and you do the work in the ETL job? You'll save a lot of time. Regarding table space etc. am I supposed to get Oracle error for that rather than abnormal e...
by kcbland
Sun Jan 30, 2005 10:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal End error while running a DS load job into Oracle
Replies: 32
Views: 8438

Please provide a text sketch of your job, something like this: OCI--->xfm--->SEQ--->xfm--->OCI. The way you described your job design left me scratching my head. I hope your job design is like the above sketch, as it will actually run 2 distinct processes with the second dependent on the full comple...
by kcbland
Sun Jan 30, 2005 10:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read Log
Replies: 12
Views: 2579

Either use the DS APIs for getting link statistics (read your DS BASIC manual, search DSXchange for examples) or use the dsjob command line to call the APIs for you. Either way, you'll need an after-job routine call, to either your custom subroutine or to ExecDOS to run a batch file of dsjob commands.
by kcbland
Fri Jan 28, 2005 2:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Seggregating Input based on the input column
Replies: 2
Views: 521

If you are sure you will have less than 3 possible different date values, this solution will work. Initialize 3 stage variables in a transformer to some known value, like "-999999", each stage variable will form the constraint for an output link. Have three output links, each with a constraint that ...
by kcbland
Fri Jan 28, 2005 11:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: database password changed
Replies: 17
Views: 3833

This is all nice and dandy. I love parameters. But the password is a different animal. It is a security issue. If hard codded in the job then it is masked. Yet passed as a perameter value it is open to everybody who can ps -ef the processes. Any ideas? Only if you use the dsjob program to set param...
by kcbland
Fri Jan 28, 2005 10:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: General DataStage Server Question
Replies: 2
Views: 910

Sure, DS ships with an ODBC driver to SQL-Server 7. You just configure the odbc.ini file with the entries to point to each SQL-Server. It will require things like IP or hostname, db name, port, etc. No problems doing what you want, as long as you have the right version and configuration information.
by kcbland
Fri Jan 28, 2005 9:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: porting utilities
Replies: 4
Views: 2077

You cannot take an Powermart/center mapping and load it into DataStage. There is no conversion tool either.
by kcbland
Thu Jan 27, 2005 12:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job is "Running" even after its sequence is aborte
Replies: 2
Views: 866

Verify that it is still running. Do a ps -ef |grep phantom to see what parts are still moving. If there are no parts, then the job may have died tragically and never updated its status. Clearing the status of the job using Director or recompiling will fix that. If the job is still running, then you'...
by kcbland
Thu Jan 27, 2005 12:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is Incremental Aggregation possible
Replies: 18
Views: 7047

vcannadevula wrote:This will take care of last ouput row.



No it won't. Build the job, you will see that it does not work.
by kcbland
Thu Jan 27, 2005 11:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using ORAOCI8 AND ORAOCI9 Stage
Replies: 2
Views: 900

You should be fine. OCI8 using 8.1.7 client talking to 9i DB is very stable. It's the only solution if you need to connect with 7.3, 8, and 9 DB instances. 9 client does not work with 7.3 DB.
by kcbland
Thu Jan 27, 2005 10:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is Incremental Aggregation possible
Replies: 18
Views: 7047

kommven wrote:So any built-in stage in DS?


The AGGREGATOR stage. If you insist on stage variables, then you are going to need to add a last row to your input datastream to trigger the last output group.