Search found 4992 matches

by kcbland
Wed Apr 05, 2006 12:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL error
Replies: 1
Views: 815

Because a SQL statement is not the same as a DML statement. Only put SQL in the user-defined area. If you need to do DML, use before/after SQL with an anonymous block stored procedure, do your drops outside a transformation job, or switch to using a stored procedure.
by kcbland
Wed Apr 05, 2006 12:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs aborted at hash file creation
Replies: 8
Views: 2007

Some ideas: Write+Execute permissions on the directories, userid executing the job not having permission to those directories, too many jobs having dynamic hashed files open at that moment (T30FILES setting), no space on device.
by kcbland
Wed Apr 05, 2006 8:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wave.sequence.error in phantom job
Replies: 3
Views: 1589

You probably had an orphaned process from a previous failure. If you stop a job or it aborts, sometimes a part of a job that's talking to a database stays active. The next time the job is run, weird things happen if a thread is out there. Use "ps -ef |grep phantom" and look for parts of your job and...
by kcbland
Wed Apr 05, 2006 8:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Phantom error
Replies: 3
Views: 709

Please post the complete error message.
by kcbland
Wed Apr 05, 2006 8:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UVOpen Unable to open file
Replies: 5
Views: 888

The message is simple. The expected file is unable to be opened. Check path, name, and permissions.
by kcbland
Wed Apr 05, 2006 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: not able to read data properly from Hash file
Replies: 2
Views: 931

Please read more about hashed files in the recent newsletter. You lack the full understanding of how they work. Here's a copy from awhile back:

http://www.dsxchange.com/viewtopic.php?t=85364
by kcbland
Tue Apr 04, 2006 12:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer
Replies: 14
Views: 4928

Always pass a static date value to processes because of MIDNIGHT cross-overs, never use system date calls.
by kcbland
Tue Apr 04, 2006 11:13 am
Forum: General
Topic: I need a DSX-Cutter
Replies: 48
Views: 56405

Use the correct syntax:

Code: Select all

Syntax:      ParseDSX.pl -h -l<ListFile> -o<OutputDir> -s -v -y <DSXFile> 


and put some jobs into the .dsx file. I'm assuming you've just got a function.
by kcbland
Tue Apr 04, 2006 11:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage logic vs SQL
Replies: 14
Views: 10409

Your question requires at least 4 hours to verbally answer and show the various pros and cons to the most common architectural solutions. Are you doing batch ETL, micro-batch, realtime, one-time data migration, billions or millions or thousands of rows of data? Do you have unlimited budget and devel...
by kcbland
Tue Apr 04, 2006 11:05 am
Forum: General
Topic: I need a DSX-Cutter
Replies: 48
Views: 56405

Post your command line syntax. Did you specify the output directory?
by kcbland
Tue Apr 04, 2006 7:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance on Job Design
Replies: 5
Views: 1176

All you've done is remove the aspect of job control. You're sacrificing the ability to manage the number of parallel tasks occurring, as well as the ability to only re-run portions of logic. You've also made it more difficult to test just one portion of the job, because you need to run all portions....
by kcbland
Mon Apr 03, 2006 12:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Facing a problem in opening a job.
Replies: 2
Views: 670

Search the forum for releasing job locks.
by kcbland
Mon Apr 03, 2006 12:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hashed file write error
Replies: 2
Views: 673

I think this has been answered for you already. You have high ASCII character set values in your hashed file primary key. You need to change these to other values, being aware that just removing the values make remove the uniqueness of the key. Consider using the OCONV(link.column, "MCP") function t...
by kcbland
Mon Apr 03, 2006 8:50 am
Forum: Site/Forum
Topic: Congratz Roy!!!!
Replies: 6
Views: 3004

here here
by kcbland
Sun Apr 02, 2006 8:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Collector with Hashed file giving Empty Data set
Replies: 5
Views: 702

Try replacing the intermediate sequential file with a transformer stage. You'll get the ability to add a reject link, which could trap out the rows being rejected from the hashed file stage.