Search found 53125 matches
- Fri Sep 14, 2012 3:53 pm
- Forum: General
- Topic: DataStage project creation error
- Replies: 23
- Views: 7285
Users are not added in WAS. The only reason for opening global security was to tell you where the user registry is: operating system, LDAP or (custom) internal user registry in Information Server. Once you have that knowledge you can add users. Then, using the web console for Information Server, you...
- Fri Sep 14, 2012 3:51 pm
- Forum: General
- Topic: DataStage Compilation for Sequences
- Replies: 3
- Views: 1463
- Thu Sep 13, 2012 12:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Synchronized Commit to MQ of same messages
- Replies: 4
- Views: 1347
- Thu Sep 13, 2012 5:35 am
- Forum: General
- Topic: ETL vs ELT
- Replies: 3
- Views: 1576
- Thu Sep 13, 2012 5:34 am
- Forum: General
- Topic: ETL Rule based engine
- Replies: 3
- Views: 1430
- Wed Sep 12, 2012 12:53 am
- Forum: General
- Topic: clean the abandoned locks in Datastage 8.5
- Replies: 4
- Views: 5328
- Tue Sep 11, 2012 3:06 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error Profiling in Japanese Character
- Replies: 2
- Views: 1117
- Mon Sep 10, 2012 4:54 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Range Lookup
- Replies: 5
- Views: 1777
The main thing you will need to fix is the ability to return more than one row from the lookup. This is a simple check box. That having been fixed you could use a Transformer stage loop. A range lookup using a Lookup stage requires both the low end and the top end of the range to be specified. Your ...
- Mon Sep 10, 2012 4:42 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error unmarshling returnheader:java.io.EOFException
- Replies: 5
- Views: 3320
- Mon Sep 10, 2012 4:39 pm
- Forum: General
- Topic: Designer: 'Compiled succesfully', Director 'Not Compiled'
- Replies: 3
- Views: 1377
- Mon Sep 10, 2012 4:35 pm
- Forum: IBM QualityStage
- Topic: Unhandled Text from MNS Stage
- Replies: 3
- Views: 2565
- Mon Sep 10, 2012 12:16 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: need assistance with to_char(<Date_column>, 'HH24') fo
- Replies: 4
- Views: 1878
Do your own detective work. Create a small test job that only performs the inner, TimestampFromString(), function. Does that work properly? (You could check with an IsValid() function, for example. If that's OK, then check the names of the outer, HourFromTime() function. If you have that right, then...
- Mon Sep 10, 2012 12:12 am
- Forum: General
- Topic: routine for getting message type,message detail from job log
- Replies: 6
- Views: 1981
- Sun Sep 09, 2012 3:54 pm
- Forum:
- Topic: Enable Operational metadata
- Replies: 10
- Views: 4131
- Sun Sep 09, 2012 1:46 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: need assistance with to_char(<Date_column>, 'HH24') fo
- Replies: 4
- Views: 1878
You need first to extract the time from the timestamp using a function such as TimeFromTimestamp(). You can apply HourFromTime() to that result.
Code: Select all
HourFromTime(TimeFromTimestamp(InLink.TheString))