Search found 53125 matches
- Wed Nov 02, 2005 2:04 pm
- Forum: Site/Forum
- Topic: Write a Book!
- Replies: 40
- Views: 20405
- Wed Nov 02, 2005 3:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to union the data when extract from 2 or more tables???
- Replies: 8
- Views: 2187
- Wed Nov 02, 2005 3:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error in command 'CATALOG ... Unable to open for cataloging
- Replies: 14
- Views: 4191
Icons can also default to that "power socket" icon when the client machine is running out of memory. You need to open the stage properties to determine what kind of stage it is. And use Task Manager to spot the memory hog! Of course, that does not help with the "unable to CATALOG" problem, which I'v...
- Wed Nov 02, 2005 3:08 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Float/Real/Numeric Values (SQL)
- Replies: 5
- Views: 1365
Yep. Floating point numbers (such as pi) can not, by definition, be stored with infinite precision in a finite number of bits. Therefore comparisons between them may not be exact. To get around this, DataStage uses a "close enough" algorithm (called "wide zero"). It is set up in uvconfig as a mask o...
- Wed Nov 02, 2005 3:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: filter command question ?
- Replies: 18
- Views: 4295
- Wed Nov 02, 2005 2:53 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Parallel Routine Weirdness
- Replies: 3
- Views: 1036
- Wed Nov 02, 2005 2:50 am
- 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
- Wed Nov 02, 2005 2:47 am
- Forum: Site/Forum
- Topic: Write a Book!
- Replies: 40
- Views: 20405
The radio show, the books, the CDs, the videotape, the TV series, the movie and the DVD were all different. The scene is Milliways - the Restaurant at the End of the Universe. The speaker is, indeed, Zaphod Beeblebrox. He also asks the maitre d' for the telephone - "hand me the rap-rod, plate captai...
- Tue Nov 01, 2005 2:52 pm
- Forum: Site/Forum
- Topic: Write a Book!
- Replies: 40
- Views: 20405
- Tue Nov 01, 2005 2:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job Parameter Compilation Error
- Replies: 8
- Views: 1691
- Tue Nov 01, 2005 2:47 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
Code: Select all
cd $DSHOME && . ./dsenv && bin/uv "SELECT @ID, PATH FMT '60L' FROM UV.ACCOUNT WHERE @ID NOT IN ('UV', 'uv') AND @ID NOT LIKE 'HS.%';" > /tmp/projectsModify the WHERE clause to suit your requirements.
- Tue Nov 01, 2005 2:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: IQ12 bulk load on Linux
- Replies: 19
- Views: 5604
- Tue Nov 01, 2005 2:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: permission setting
- Replies: 10
- Views: 2069
By default, the *.adm files aren't present. And you won't see them even if they are, unless you enable listing of hidden files (for example ls -la .*.adm ) The files are brought into use by using the Administrator client's Permissions tab. Or by using a text editor on the server. File name .develope...
- Tue Nov 01, 2005 2:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: version control process
- Replies: 5
- Views: 1021
Only DSXchange and Ascential Developer Net
- Tue Nov 01, 2005 2:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Float/Real/Numeric Values (SQL)
- Replies: 5
- Views: 1365
DataStage (server) recognizes four data classes. Numeric - you can do arithmetic and Num(x) returns true String - any data including numeric but not opaque Null - all operations except certain dynamic array operations on these return Null, IsNull() returns true, will abort jobs if used in fixed argu...