Search found 53125 matches
- Mon Apr 23, 2007 7:52 pm
- Forum: General
- Topic: Reading View
- Replies: 5
- Views: 1720
Imagine that the SELECT statement that defines the view selects 10 million rows, and when you select from the view you want only 10,000 of these. Selecting from the view means that the first, large, SELECT has to occur to materialize the view, and only then can your second, small, SELECT proceed. If...
- Mon Apr 23, 2007 6:31 pm
- Forum: General
- Topic: Reading View
- Replies: 5
- Views: 1720
- Mon Apr 23, 2007 6:30 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: unable to pad zero on left side
- Replies: 6
- Views: 3242
- Mon Apr 23, 2007 6:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Agregator failed
- Replies: 6
- Views: 2984
- Mon Apr 23, 2007 6:17 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: 4 nodes 10 stages
- Replies: 10
- Views: 2602
- Mon Apr 23, 2007 5:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extract from DB, Transform and Load to Another DB
- Replies: 7
- Views: 1712
Start with a plan. Business analysts might refer to this as a "source to target mapping" or a "target from source mapping" document. The latter is easier for an ETL developer to use. That document becomes your specification. You can then plan the stages and functions you will use to implement a set ...
- Mon Apr 23, 2007 5:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: passing date parameter
- Replies: 17
- Views: 3703
You didn't need the Convert() function - you could have specified the "-" as the delimiter in the Oconv() function.
Code: Select all
Oconv(Date() - 7, "D-YMD[4,2,2]")- Mon Apr 23, 2007 4:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unlock Jobs in Unix
- Replies: 4
- Views: 1998
To complete the answer, including the bits the ever-hasty 2B left out: Login to UNIX change directory to $DSHOME (which I assume to be set) execute the dsenv script execute the bin/dssh command to enter the TCL environment (the prompt is > ) LOGTO projectname DS.TOOLS invokes a menu for administerin...
- Mon Apr 23, 2007 4:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error calling subroutine: DSD.Browse while viewing hash file
- Replies: 1
- Views: 1610
- Mon Apr 23, 2007 4:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Calling UtilityHashLookup from afterjob subroutine
- Replies: 2
- Views: 854
Welcome aboard. :D Etiquette Note We do not do "urgent" or "ASAP" here. This is an all-volunteer user community - nobody gets paid for posting anything. If you need urgent answers, sign up with your support provider for premium services, and learn the true cost of "urgent". Search the forum for DEFF...
- Mon Apr 23, 2007 4:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To improve job performance.
- Replies: 5
- Views: 971
The total amount of time will probably be about the same - after all, the same amount of work has to be done. If the Informix table has an index on the grouping column, then grouping in the database may be faster than grouping in an Aggregator stage. Conversely, the Aggregator stage forms its groups...
- Mon Apr 23, 2007 4:42 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unmappable characters
- Replies: 7
- Views: 3286
- Mon Apr 23, 2007 12:12 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Internal Error?
- Replies: 8
- Views: 3006
- Mon Apr 23, 2007 12:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to open hash file
- Replies: 13
- Views: 6100
- Sun Apr 22, 2007 10:17 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: difference betwn look up stage and join satge in PX
- Replies: 9
- Views: 6571
Don't believe everything you read about "performance", which is ill-defined in an ETL context. There are three stages that effect horizontal combination of data, each subtly different - Lookup, Join and Merge. Only the Lookup stage allows conditional lookups. The Lookup stage has a single reject lin...