What do you mean by "date format"? Give an example of your desired output.
Also, since you don't have premium membership yet, you can't read all of my previous answer.
Search found 53125 matches
- Thu Feb 12, 2009 1:54 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Grouping the records of DS_AUDIT
- Replies: 15
- Views: 5584
- Thu Feb 12, 2009 1:51 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Transformer BlockSize and node_node1: Player 1 terminated
- Replies: 2
- Views: 4549
- Thu Feb 12, 2009 1:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Option in dsexport to exclude shared cont & include exec
- Replies: 2
- Views: 1420
- Thu Feb 12, 2009 1:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Convert datetime to gmt datetime
- Replies: 3
- Views: 1481
- Thu Feb 12, 2009 1:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job is not in the right state
- Replies: 7
- Views: 2592
- Thu Feb 12, 2009 1:38 pm
- Forum: General
- Topic: Snowflaking
- Replies: 2
- Views: 935
There are reasons, but they should be rare. Allow me to quote from The Data Warehouse Lifecycle Toolkit by Kimball et al: Generally snowflaking is not recommended in a data warehouse environment, Snowflaking almost always makes the user presentation more complex and more intricate. Database designer...
- Thu Feb 12, 2009 1:31 pm
- Forum: General
- Topic: Traceback error
- Replies: 5
- Views: 3200
Transformer stage functions are intolerant of NULL. You must handle NULL explicitly.
Of course you can generate a default value, say "", instead of using the SetNull() function.
Code: Select all
If IsNull(InLink.FieldName) Then SetNull() Else Trim(InLink.FieldName)- Thu Feb 12, 2009 1:28 pm
- Forum: General
- Topic: Appending leading Zeros and writting to excel file
- Replies: 9
- Views: 2346
- Thu Feb 12, 2009 1:25 pm
- Forum: Information Analyzer (formerly ProfileStage)
- Topic: Datastage Export from Commandline
- Replies: 8
- Views: 9591
- Thu Feb 12, 2009 1:41 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DSGetLogSummary - having to offset start time by one hour
- Replies: 5
- Views: 1763
- Thu Feb 12, 2009 12:46 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DSGetLogSummary - having to offset start time by one hour
- Replies: 5
- Views: 1763
- Thu Feb 12, 2009 12:40 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Grouping the records of DS_AUDIT
- Replies: 15
- Views: 5584
1. DTM is VarChar, so you can use LIKE operator. WHERE DTM LIKE '2009-02-11%' 2. It's the MAX(DTM) in your query that is eliminating some of the User2 modifications. Lose the MAX() function. 3. You don't need IN if the sub-query is SELECT MAX(DTM)... because the sub-query can only ever return one ro...
- Thu Feb 12, 2009 12:36 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: reading the file blockwise
- Replies: 5
- Views: 1320
- Thu Feb 12, 2009 12:34 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: String to Date conversion error
- Replies: 5
- Views: 5992
- Wed Feb 11, 2009 4:35 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Migrating jobs from v 7.5.1 to IIS v8.1
- Replies: 20
- Views: 6277