Search found 4992 matches

by kcbland
Sun Apr 09, 2006 10:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file doubt
Replies: 4
Views: 1170

Okay, I turned off the premium content so you could see the full message. If your Unix admin did not do something mean and setup 32 BIT file systems, then you should have no issue. If your files are failing to "import", meaning you're try to read or at least view data on the file using the Sequentia...
by kcbland
Sun Apr 09, 2006 9:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential file doubt
Replies: 4
Views: 1170

The largest file you can create is usually limited by the amount of free space on the volume. As Craig said, records are not a concept in sequential files, total character size is your concern. Some operating systems (and their administrators) can limit you based on how they configure the volumes, s...
by kcbland
Fri Apr 07, 2006 8:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling multiple commands inside FilterCommand in Seq File?
Replies: 15
Views: 5652

Here's a friendly piece of advice. You are ignoring what has been told to you. This is a bad habit, because you are ignorant of something and Craig has nicely tried to explain it to you twice. The filter command is supposed to return SCREEN OUTPUT as streaming rows to be redirected to the internal p...
by kcbland
Fri Apr 07, 2006 8:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSU.UtilityWarningToLog is not cataloged
Replies: 9
Views: 1611

You're using this in a Routine stage? Are you sure the SDK is installed in your project?
by kcbland
Fri Apr 07, 2006 8:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warnings using Merge Stage
Replies: 12
Views: 2513

Change your default padding to a space (032).
by kcbland
Fri Apr 07, 2006 8:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to Move DataStage Software
Replies: 4
Views: 1184

The easiest and 100% sure solution is to re-install the software after making sure your projects have been exported and backed up at the Unix level.
by kcbland
Fri Apr 07, 2006 9:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle indexing
Replies: 3
Views: 1112

I don't think so. DIRECT path is great for loading data, it just sucks with the indexes afterwards. I guess you're driving at boosting load performance. DIRECT path is a three-stage load, meaning indexes and constraints are disabled after locking the partition (or table), data is loaded, constraint ...
by kcbland
Fri Apr 07, 2006 8:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle indexing
Replies: 3
Views: 1112

It's using DIRECT path loading option into named partitions under the covers. So, a locally managed index only contains the data within each given partition. Since each partition will load independent of the others, locally managed indexes are optimal. If your data only hits 1 of 96 partitions, only...
by kcbland
Thu Apr 06, 2006 3:45 pm
Forum: General
Topic: I need a DSX-Cutter
Replies: 48
Views: 56405

Great! Please re-post a Cygwin compliant version with appropriate commentary! Thanks!
by kcbland
Thu Apr 06, 2006 2:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to UPDATE records
Replies: 7
Views: 1705

Okay, but are you naming the row to update by primary key, or are your updates wildcard? Meaning, one row from your job will affect thousands of rows in the target?
by kcbland
Thu Apr 06, 2006 2:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP satge
Replies: 5
Views: 1106

Cat them together using unix cat and then use command line FTP. Your whole problem is that you are using an FTP stage that is meant to remotely read data files when you just need to transfer files. Use the command line version of FTP and all your problems will go away. Your missing clue that you're ...
by kcbland
Thu Apr 06, 2006 2:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to UPDATE records
Replies: 7
Views: 1705

Any triggers doing some behind the scenes work?
by kcbland
Thu Apr 06, 2006 2:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP satge
Replies: 5
Views: 1106

Well if the columns don't match in files, how does concatenation work? Are you mixing record types? Even so, just have the FTP reach each file as a single column rather than using column definitions. If delimited, just use a delimiter value that won't be found in your data and declare a single colum...
by kcbland
Thu Apr 06, 2006 1:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP satge
Replies: 5
Views: 1106

If you don't care for performance, why not use a link collector and funnel the rows from both FTP stages into a single output file?
by kcbland
Thu Apr 06, 2006 1:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS jobs hang
Replies: 6
Views: 2805

Reasons jobs "stall" at the end of the job: 1. Full job logs automatically purging 2. After-stage or after-job routines going out and doing something 3. After-stage or after-job routines in two jobs locking same object (database table, sequential file, etc) 4. Commit is issued, database doing it's t...