Search found 4992 matches
- Thu Sep 29, 2005 8:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ahsh File as Tbale
- Replies: 4
- Views: 1275
- Wed Sep 28, 2005 9:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Upgrade DS 4 to 5 issues with AS400
- Replies: 12
- Views: 4502
- Wed Sep 28, 2005 9:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Upgrade DS 4 to 5 issues with AS400
- Replies: 12
- Views: 4502
Re: "SYSIBM.SQLTABLES" is an undefined name
CoolHard wrote:I am very appreciated if I get reply immediately.
What???
I would like all of my questions answered immediately as well.
- Wed Sep 28, 2005 7:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: using @USER0 in Sequential stage file name
- Replies: 8
- Views: 1975
- Wed Sep 28, 2005 7:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: using @USER0 in Sequential stage file name
- Replies: 8
- Views: 1975
- Wed Sep 28, 2005 7:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to run a job from command line?
- Replies: 3
- Views: 1071
Here's a shell script you can read to learn about the dsjob executable:
http://www.dsxchange.com/viewtopic.php?t=85578
http://www.dsxchange.com/viewtopic.php?t=85578
- Wed Sep 28, 2005 1:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to delete a hash file ?
- Replies: 5
- Views: 1508
Re: Use Administrator
Nic wrote:I always use Administrator. On the Projects tab click on your project and use Command. On the command line use:Code: Select all
delete.file hashfilename
This should be the safest option.
This only works if the hash file was created in the project using the default option, not an externally pathed file.
- Wed Sep 28, 2005 1:03 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: What are the system requirements for Parallel Extender/PX
- Replies: 11
- Views: 2907
- Wed Sep 28, 2005 9:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to delete a hash file ?
- Replies: 5
- Views: 1508
As long as you didn't use "SETFILE" or your hash file was created by a job using a project name or the default "account" option, you are safe to issue the rm command to remove hash files. There is a "D_filename" file in the directory where the hash file resides. It's easiest to issue an "rm -r *file...
- Wed Sep 28, 2005 7:19 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: What are the system requirements for Parallel Extender/PX
- Replies: 11
- Views: 2907
I assume you mean hardware requirements, not OS. Hardware is subjective. How much data, how often, how quick? If the answer is gigs hourly in under an hour, then you are talking differently than megs each day between midnight an open of business. If your question is absolute minimum to just move a s...
- Tue Sep 27, 2005 7:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Rejects and Warning
- Replies: 6
- Views: 2126
Yeah sucks, don't it? You have 2 mechanisms for aborting a job once a link reaches a certain row count: 1. Hard-code the abort after rows limit in the constraint of a transformer stage output link 2. Use a polling type job control that periodically uses the API call for getting a links row count dur...
- Tue Sep 27, 2005 6:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: writing variable length records
- Replies: 2
- Views: 1062
Use separate output links and write to separate sequential files using the appropriate metadata for each file. If you need the rows collated back into some semblance of order, add a grouping key column and send the files thru a Unix sort command collating and ordering the files appropriately. DataSt...
- Mon Sep 26, 2005 2:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: re:error :column mismatch
- Replies: 2
- Views: 832
- Mon Sep 26, 2005 2:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Any limitation for aggregator
- Replies: 2
- Views: 948
- Mon Sep 26, 2005 2:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Creating folders dynamically on Unix via DataStage
- Replies: 10
- Views: 5853
Possible solutions: 1. Write a job to spool output to a text file. Write a ksh to parse and create the appropriate directories. 2. Write a job to spool output to a text file. Write DS Batch job to read the text file, parse it, and issue Unix commands via calls to DSExecute to create the approriate d...