Search found 4992 matches
- 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
- Wed Nov 02, 2005 1:49 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Complex Flat File Stage in PX vs. DS Server
- Replies: 2
- Views: 917
- 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...
- 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
- 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
- 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...
- Wed Nov 02, 2005 11:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: permission setting
- Replies: 10
- Views: 2069
- 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
- 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...
- 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...
- 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...
- 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
- Tue Nov 01, 2005 2:54 pm
- Forum: Site/Forum
- Topic: Write a Book!
- Replies: 40
- Views: 20404
- Tue Nov 01, 2005 2:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: permission setting
- Replies: 10
- Views: 2069
- 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.