Search found 4992 matches

by kcbland
Wed Nov 02, 2005 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: creating multiple output record layouts based on rec type
Replies: 15
Views: 7714

Five containers, each with a different record format output.
by kcbland
Wed Nov 02, 2005 1:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is there any max restriction for file size?
Replies: 9
Views: 4844

IBM told us to insert this line into our ds.rc file: ulimit -f unlimited It's a shame, because by default you are supposed to make sure you're ulimit is set to unlimited across the board. Your initial installation 'way back should have included making these adjustments at the same time you verified...
by kcbland
Wed Nov 02, 2005 1:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: creating multiple output record layouts based on rec type
Replies: 15
Views: 7714

Why don't you just containerize the Server CFF stage and use in your PX job?

Or

Is there a problem using a Server job to just normalize the data into separate files and then have PX jobs pick it up from there?
by kcbland
Wed Nov 02, 2005 12:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error viewing the data(Null Archive)-Urgent
Replies: 8
Views: 3341

Is this data your job generated? Or is this a file you are trying to configure to read?
by kcbland
Wed Nov 02, 2005 11:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSsendmail
Replies: 5
Views: 1321

Sure, you need to use an after-job or after-transformer routine to attach to the job and call the API to get the link statistics for your particular link. Now, if it's 0 or 42 or whatever number you like take whatever action you like. A 0 row count means NO ROWS go down the link, so there's NO ROW t...
by kcbland
Wed Nov 02, 2005 11:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: permission setting
Replies: 10
Views: 2069

Yep, buried in each project folder.
by kcbland
Wed Nov 02, 2005 11:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob fails running a job in a project
Replies: 5
Views: 1046

Omit uses the current user logged in for a trusted connection. Unix folks never have this problem because we always use the userid and password. It is such a pain on Windoze, don't you think?
by kcbland
Wed Nov 02, 2005 8:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing a job by sending an SMS
Replies: 3
Views: 974

There's 2 ways to start a job: use Director client or use dsjob command line. My guess is that they simply are using the dsjob command line interface to execute the commands to start a job. This isn't rocket science, some watchdog script waits for whatever mechanisms to tell it that it is time to st...
by kcbland
Tue Nov 01, 2005 10:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete data from hash files
Replies: 3
Views: 1676

You could always stream the data to an output link using a function in the constraint that isn't really a constraint but a does a delete on the hash file from within the function. It's quite easy actually, just open the hash file on the first row passed and put into a COMMON file handle variable, th...
by kcbland
Tue Nov 01, 2005 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Db2 stored procedure
Replies: 1
Views: 550

Unix command line, you can run anything. If the stored procedures are "do-something" procedures, this is the easiest method to use for invocation and error/return code handling. If the SP's are data streamers, then you can use the DB2 plugin to execute and receive the streaming results. If they're s...
by kcbland
Tue Nov 01, 2005 3:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to update a sequential file
Replies: 6
Views: 1766

The hash files are probably a perfect method for what you need to do. Slam your file into a hash file, then parse it at need, referencing rows when necessary, adding rows, updating exist, etc, dump it back to a sequential file.

What's the big deal?
by kcbland
Tue Nov 01, 2005 2:54 pm
Forum: Site/Forum
Topic: Write a Book!
Replies: 40
Views: 20404

Yes it's wandering, but I've got to be in the ballpark on that guess.
by kcbland
Tue Nov 01, 2005 2:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: permission setting
Replies: 10
Views: 2069

They're there, you just have to work a little to find them. We learn by doing.... :wink:
by kcbland
Tue Nov 01, 2005 2:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I get the full /path/project list?
Replies: 9
Views: 2300

DS.TOOLS from any project TCL prompt will get you this information. Do you want programmatic access? If so, READ it out of UV.ACCOUNT and parse, or use the DSExecute API to execute the TCL command to SELECT the file. You can always use the unix command line read to access the file from a shell script.