Search found 4992 matches
- Tue Jan 02, 2007 9:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash file cache size error
- Replies: 2
- Views: 614
- Sat Dec 30, 2006 10:03 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Getting better upsert performance
- Replies: 4
- Views: 1888
INSERTing is usually very fast, UPDATEs are notoriously slow. The best methods for loading are to partition align your data with the database, avoid global indexes on table structures, pre-determine inserts from updates, pure insert load your inserts, insert your updates into a runtime table and use...
- Sat Dec 30, 2006 10:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Is there a way to invoke a Stored Procedure from a ctl Job ?
- Replies: 2
- Views: 757
By control, you must mean either Batch or Sequence. Both can run an OS command, which in turn can be your command line program (isql, sqlplus, dbaccess, etc), that also can then run a .sql file that contains whatever syntax is relevant to your database. That .sql file can do whatever needs be done, ...
- Tue Dec 26, 2006 10:47 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to connect to DataStage using Universe Shell
- Replies: 15
- Views: 4570
- Tue Dec 26, 2006 8:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Look Up Without Keys
- Replies: 12
- Views: 6097
Are you sure you're looking at the job correctly? It's impossible to not have a WHERE clause on a lookup. With multi-row enabled, your result is that every primary input stream row will produce as many output rows as returned in the lookup. Without a where clause, you get a cartesian product. Withou...
- Sun Dec 24, 2006 10:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Using FIND or LOCATE in a derivation
- Replies: 8
- Views: 1882
Yeah, Ray's solution relies on 2 character values in the list, therefore, positional answers is a simple math expression. I try not to work my brain cells too much, it seems 5 years of college math used up my lifetimes supply. I opt for things that I can understand when looking at them in the middle...
- Sat Dec 23, 2006 9:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Using FIND or LOCATE in a derivation
- Replies: 8
- Views: 1882
Hmmm, I didn't quite follow Craigs and Rays conversation there. I don't know how my solution doesn't work for every situation. Even if your search text varies from row to row, and the lookup list of values varies also from row to row, the request was the position within the delimited list. You reque...
- Sat Dec 23, 2006 12:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Using FIND or LOCATE in a derivation
- Replies: 8
- Views: 1882
Yeah, STATEMENTS like LOCATE are a bummer, you need to wrapper it with a FUNCTION so that it's usable in a derivation, key expression, or constraint. Since your example shows that you are turning a CSV list into a MV array, why not just use INDEX combined with DCOUNT? I assumed your list of values a...
- Thu Dec 21, 2006 12:01 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: assign multiple derivations in a transformer
- Replies: 4
- Views: 1325
- Wed Dec 20, 2006 9:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Update into Oracle not working
- Replies: 13
- Views: 3727
- Mon Dec 18, 2006 9:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Update into Oracle not working
- Replies: 13
- Views: 3727
- Mon Dec 18, 2006 8:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Update into Oracle not working
- Replies: 13
- Views: 3727
- Mon Dec 18, 2006 8:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Update into Oracle not working
- Replies: 13
- Views: 3727
- Mon Dec 18, 2006 12:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash file options
- Replies: 1
- Views: 502
The Create File check box only activates the Options button, instead of it being "greyed" out. If a link is writing to a hashed file, it will create it no matter what the Create File check box contains. Clearing a hashed file only drops it back to its Minimum Modulus setting from when it was created...
- Mon Dec 18, 2006 10:38 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Migration from Unix to Windows
- Replies: 2
- Views: 850
Changing all ExecSH to ExecDOS will be fun. If you're truly Parallel, then MKS toolkit will be available for you to use as it's part of the install. You won't have to rewrite/change much any scripts you're using. You'll have fun of course changing your Sequential stages to write DOS files, but you d...