Search found 53125 matches
- Tue Oct 24, 2006 1:52 pm
- Forum: General
- Topic: Engine status property of uv -admin -info
- Replies: 2
- Views: 2877
Engine status is obtained from the existence of the DataStage disk shared memory segment. This has a shared memory key of 0xadecnnnn where nnnn is the DataStage version number, for example 0xadec7511 where I'm currently working. The "ade" may be different on an -itag installation. You can use the ip...
- Tue Oct 24, 2006 11:03 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Warning in modify stage for decimal_from_decimal
- Replies: 8
- Views: 3849
You have to get this alert, since what you are doing could result in loss of infomation. You can not shoehorn a 31 digit number into a 15 digit number. Therefore DataStage will not let you suppress generation of this warning. In short, NO. I take it [15,6] or [15,2] is a typographical/transcription ...
- Tue Oct 24, 2006 10:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Rule of Thumb on Runtime Column Propagation
- Replies: 15
- Views: 12037
NO, because I refuse to use RCP, because I believe in strict management of metadata. If "they" could figure out a way that lineage analysis could identify the source of data generated by RCP, I might be persuaded to reconsider. You are wrong to assert that RCP is needed to map a column, this is just...
- Tue Oct 24, 2006 9:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Input/output error in Sequential File stage
- Replies: 11
- Views: 3020
- Tue Oct 24, 2006 9:42 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Rule of Thumb on Runtime Column Propagation
- Replies: 15
- Views: 12037
- Tue Oct 24, 2006 9:32 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to append the values
- Replies: 3
- Views: 826
- Tue Oct 24, 2006 9:29 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Getting jobnmaes
- Replies: 9
- Views: 1928
- Tue Oct 24, 2006 9:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: convert string to date
- Replies: 12
- Views: 3863
All too complex. To convert to an internal date all that is needed is
Code: Select all
Iconv(InLink.TheDate, "DMDY")- Tue Oct 24, 2006 9:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Warning while loading into Sybase table.
- Replies: 8
- Views: 2712
- Tue Oct 24, 2006 9:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Function to Retrieve alphanumeric values
- Replies: 3
- Views: 1026
It could be done in an expression (or stage variables) without needing to go to a routine. Some combination of If..Then..Else (with MATCH operator), Field() and Oconv() functions (the latter with "MCA", "MC/A", "MCN" or "MC/N" conversions) should do it for you. The "magic bullet" function that you s...
- Tue Oct 24, 2006 9:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to delete these scratch files after sort
- Replies: 7
- Views: 3331
- Tue Oct 24, 2006 9:19 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Is it a bug for DS Director?
- Replies: 8
- Views: 2388
- Tue Oct 24, 2006 9:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Using ftp stage
- Replies: 6
- Views: 6999
- Tue Oct 24, 2006 9:14 am
- Forum: General
- Topic: The Product Formerly Known as Hawk
- Replies: 12
- Views: 14442
Excellent post on HAWK Ray! With so much of confusion going with all the different product names floating around, and products renamed several times, it is all very clear now after reading ur post. One note on the HAWK posting i would like to make : the current HAWK BETA product we have installed o...
- Mon Oct 23, 2006 5:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Using ftp stage
- Replies: 6
- Views: 6999
While it's true that you can't use an FTP stage for this (the data flow streams into or out of an FTP stage) you could create a shell script to execute the FTP command, and invoke that from DataStage - either from an Execute Command activity in a job sequence or from a before/after subroutine in a j...