Search found 6797 matches
- Fri Dec 22, 2006 4:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Teradata Hash Algorithm and DS partitioning
- Replies: 1
- Views: 1106
- Fri Dec 22, 2006 10:58 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Can DataStage call Oracle APIs?
- Replies: 7
- Views: 2463
- Fri Dec 22, 2006 10:48 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Warning message
- Replies: 2
- Views: 1403
- Fri Dec 22, 2006 10:05 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Transformation validation
- Replies: 10
- Views: 2320
- Fri Dec 22, 2006 10:04 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ODBC Enterprise semi-colon clarification
- Replies: 13
- Views: 5576
- Fri Dec 22, 2006 9:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ODBC Enterprise semi-colon clarification
- Replies: 13
- Views: 5576
- Fri Dec 22, 2006 9:41 am
- Forum: General
- Topic: String Conversion - SqlServer Target ODBC
- Replies: 5
- Views: 2767
Re: String Conversion - SqlServer Target ODBC
Either way, now he has both the answers. Can work/play with both the options 
- Fri Dec 22, 2006 9:37 am
- Forum: General
- Topic: String Conversion - SqlServer Target ODBC
- Replies: 5
- Views: 2767
- Fri Dec 22, 2006 9:34 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ODBC Enterprise semi-colon clarification
- Replies: 13
- Views: 5576
I don't believe in that other thread that anyone actually confirmed the DDL v. DML assertation for the DELETE. All we really know is the TRUNCATE command 'worked by adding a semi-colon'. No one made that assertion, True, but Delete being a DML command and Truncate being a DDL command, points toward...
- Fri Dec 22, 2006 9:29 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Date conversion from yy to YYYY
- Replies: 2
- Views: 1513
- Fri Dec 22, 2006 9:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: convert MM/DD/YYYY IN TO DD-MON-YYYY
- Replies: 18
- Views: 10421
Is your target a Date field or Timestamp field ?
If date the do this
This will convert your outpu to YYYY-MM-DD which oracle accepts.
If date the do this
Code: Select all
OCONV(ICONV(in.date, "D/MDY[2,2,4]"), "D-YMD[4,2,2]")
This will convert your outpu to YYYY-MM-DD which oracle accepts.
- Fri Dec 22, 2006 9:25 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Transformation validation
- Replies: 10
- Views: 2320
You dont need the second Convert. This will work
Great thinking trobinson
Code: Select all
IF ALPHA(Convert(" -'", "abc", in.Col)) THEN @TRUE ELSE @FALSE
Great thinking trobinson
- Fri Dec 22, 2006 9:01 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ODBC Enterprise semi-colon clarification
- Replies: 13
- Views: 5576
According to what i learnt recently, is that a semicolon is not needed for a DML (delete) where as its needed for a DLL(TRUNCATE) command. But your observations are making me question my knowledge. So when you ran both the DELETE and TRUNCATE commands, without the semicolon, they are actually deleti...
- Fri Dec 22, 2006 8:17 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Transformation validation
- Replies: 10
- Views: 2320
- Fri Dec 22, 2006 7:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Ds Transform and Production
- Replies: 7
- Views: 2156
I think we need more expert advice. Lets wait for the true Gurus to give us their expert advice. If nothing else works, make a copy of the sdk routine, name it myDataTypePicS9(). This way you will be able to compile it and run it. Make sure it works in the test box. Export the new job and your user ...