Search found 53125 matches
- Wed Jan 19, 2005 2:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: empty string - null; same in oracle?
- Replies: 4
- Views: 1404
Empty String An empty string (also called a zero-length string, and sometimes erroneously called NULL), is a string that has no characters in it. Therefore it does not have an ASCII value (nor a Unicode value). A zero-length string can participate happily in string comparisons (it is less than ever...
- Wed Jan 19, 2005 1:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash file
- Replies: 9
- Views: 2116
- Wed Jan 19, 2005 1:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Difference between Truncate and Delete
- Replies: 6
- Views: 2644
Which database? There IS more than one, despite what Oracle bin Larry would have us believe. As a general rule, truncate is a fast operation that recovers space formerly occupied by data. Delete deletes individual records, and the operations are logged in the transaction log. It tends to be a rather...
- Tue Jan 18, 2005 11:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Numeric to text conversion
- Replies: 1
- Views: 648
Almost certainly a problem with your code. I have in the past created such a routine that was quite happy up to 999,999,999,999. (You should have posted this on the server forum.) Perhaps if you post your code (surround it with Code tags) someone can spot the fault. Does your code work in English on...
- Tue Jan 18, 2005 3:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error:File System is Full, Abort to Log Routine
- Replies: 9
- Views: 4024
- Tue Jan 18, 2005 3:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS Error
- Replies: 2
- Views: 1128
Try this from a TCL command prompt. CATALOG DSU_BP DSU.ExecTCL LOCAL Provided that DSU.ExecTCL still exists in DSU_BP.O this should fix your problem. Otherwise, there are deficiencies in this particular project installation. If it's only DSU_BP.O/DSU.ExecTCL you may be able to copy this file from a ...
- Tue Jan 18, 2005 3:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Could not load dsstpora.so
- Replies: 25
- Views: 9079
Usually the inability to find a library indicates a deficiency in your library search path. Make sure that this is correct in $DSHOME/dsenv. If that's not the problem, make sure that dsstpora.so is actually installed somewhere in the file system. If it's not there at all, this could also explain a "...
- Tue Jan 18, 2005 3:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error:File System is Full, Abort to Log Routine
- Replies: 9
- Views: 4024
- Tue Jan 18, 2005 3:42 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routines
- Replies: 3
- Views: 1111
The low post count, on the other hand, suggests "new". The Export that Arnd suggested gives either a proprietary format (DSX) export or an XML format. Search the Forum for where to find the style sheets for the latter. You can also, of course, copy the code from the Routine's Code window into some o...
- Tue Jan 18, 2005 3:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Data Stage Error.....
- Replies: 10
- Views: 1425
- Tue Jan 18, 2005 3:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Header File
- Replies: 4
- Views: 1245
You can definitely create header files. A per-project header file should be placed in dsinclude in the project. To include it in code use $INCLUDE DSINCLUDE filename.H You can, if you prefer, place a per-project header file in the DSU_BP directory. To include it in code use $INCLUDE DSU_BP filename....
- Tue Jan 18, 2005 3:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Date conversions
- Replies: 4
- Views: 1391
- Tue Jan 18, 2005 3:27 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: POSITION Keyword issue
- Replies: 4
- Views: 1798
You might also try using a delimited identifier.
I can not guarantee that this will work but, if it does, it will avoid having to fiddle with table definitions or column aliases.
Code: Select all
colname "POSITION" (7,9) ...I can not guarantee that this will work but, if it does, it will avoid having to fiddle with table definitions or column aliases.
- Tue Jan 18, 2005 12:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Start Time
- Replies: 3
- Views: 1051
The value returned by DSGetJobInfp(DSJ.ME, DSJ.JOBSTARTTIMESTAMP) should - as you imply - remain constant throughout execution of the job. Sounds like you may have uncovered a bug - report it through your support provider. In the meantime, set a job parameter with the job start time from the control...
- Tue Jan 18, 2005 12:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Recovery Mode
- Replies: 7
- Views: 1808
This concept is simple, visible, manageable, and tailored to your situation. Beautiful words, and so succinct. And correct, too. There's no such thing as a free lunch. If you want restartability, you have to design it in, and pay a cost in terms both of staging data and recording process metadata. ...