Search found 4992 matches
- Fri Aug 20, 2004 7:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Table Definition Repository
- Replies: 9
- Views: 2144
Appoint a metadata steward. I've found that someone has to be in charge of keeping the repository clean, enforcing standards, etc. Your issue with table definitions is true also for functions, jobs, etc. A rigorously enforced standard that is periodically reviewed and refined is the best approach, i...
- Wed Aug 18, 2004 2:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help
- Replies: 3
- Views: 634
1. Are both tables same size? (number of rows, columns, data types) 2. Are you talking pure inserts, updates, or mixture? 3. What about triggers, any doing behind the scenes work? 4. What about foreign key constraints? 5. Have you divided inserts from updates and can you benchmark how long insert-on...
- Mon Aug 16, 2004 11:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: CloseSeq not releasing a file
- Replies: 3
- Views: 1617
Consider using a DSExecute statement to "cat" or "type" a file into the screenoutput variable. It's a whole lot easier than reading a file, plus there's no pesky locks involved. UNIXcmd = "cat ":YourFilePath:"/yourfile.txt" CALL DSExecute("UNIX", UNIXcmd, ScreenOutput, ReturnCode) Now, the screen ou...
- Thu Aug 05, 2004 2:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Need help with job design
- Replies: 10
- Views: 2766
- Thu Aug 05, 2004 1:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Need help with job design
- Replies: 10
- Views: 2766
I don't understand why you can't put the concatenated filename into the output link of the seq stage with the two input files. In the transformer on that seq stage put a before-transformer command to cat the two files together. What happens is that the seq output won't start until the two inputs are...
- Sun Aug 01, 2004 3:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: If Delimiter is Space?
- Replies: 11
- Views: 3062
- Fri Jul 30, 2004 10:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unix script from DS windows
- Replies: 4
- Views: 888
- Fri Jul 30, 2004 10:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unix script from DS windows
- Replies: 4
- Views: 888
- Fri Jul 30, 2004 8:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Buffer size question (Inter Process Row Buffering)
- Replies: 10
- Views: 4971
For the life of me I can't figure out how this job could possibly run. The logic dealing with transformer 1 has to process first to its full completion. Then, the logic dealing with transformer 2 gets to run. I don't see how you're able to use the shared container as a reference lookup in the manner...
- Fri Jul 30, 2004 5:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: OS Trouble shooting during 10 jobs running in pararell
- Replies: 7
- Views: 2009
If the job started 62 seconds after being asked by the job control function, then it went outside the tolerance the API has hard-coded into it. This problem usually occurs on a system so overwhelmed with tasks. You need to look at resource availability and see if that is when your problem is happeni...
- Fri Jul 30, 2004 5:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Buffer size question (Inter Process Row Buffering)
- Replies: 10
- Views: 4971
- Fri Jul 30, 2004 5:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ds_seqput: error in 'write()' - Error 0
- Replies: 1
- Views: 2122
- Thu Jul 29, 2004 8:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Does reducing the stages, improves the performance?
- Replies: 3
- Views: 1191
Technically YES, but the gains vary depending on the operations being done. Filtering out rows in one transformer may reduce the rows that flow to a subsequent transformer where the derivations are more intense. In this case, you're better off having more transformers. More tranformers allows you to...
- Thu Jul 29, 2004 8:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Batch vs. Sequence
- Replies: 3
- Views: 1006
- Tue Jul 27, 2004 1:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Accessing a hash file with a key composed by several fields
- Replies: 7
- Views: 1669
OPENPATH will open an externally pathed hash file. OPENPATH fully_qualified_filename TO file_handle Else * put error in opening logic here End If you know the primary keys, construct a variable of all of the fields concatenated with an @TM character between each field. Ex: KEY=field1:@TM:field2:@TM:...