Search found 6797 matches

by DSguru2B
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

Thanks for sharing your find. Thats how it should be with all of us.
by DSguru2B
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

Like for example, what specific API are you looking to execute. If it can be executed from command line, i believe it can be executed within DataStage. Need more info for a specific answer.
by DSguru2B
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

Welcome Aboard :P
Use the search facility of the site. Its very powerful and can/will save you time. Do an exact search on the key words 'must match field's fixed width'. You will see that this has been discussed in the past, time and again.
Regards,
by DSguru2B
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

Like duh. I think i am pretty muddy today. Need more caffene :lol:
by DSguru2B
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

Ok, well, it was an interesting find by Ray, uptil now that is. :roll:
by DSguru2B
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

Good find. Cases like these need to be stored in a seperate forum maybe, so that issues can these can turn up during search. Maybe a site enhancement.
by DSguru2B
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 :wink:
by DSguru2B
Fri Dec 22, 2006 9:37 am
Forum: General
Topic: String Conversion - SqlServer Target ODBC
Replies: 5
Views: 2767

Welcome Aboard :P
By specifying (') in the quote character box in seqential file stage properties.
by DSguru2B
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...
by DSguru2B
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

What does your complete date look like?
by DSguru2B
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

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.
by DSguru2B
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

Code: Select all

IF ALPHA(Convert(" -'", "abc", in.Col)) THEN @TRUE ELSE @FALSE
 


Great thinking trobinson :wink:
by DSguru2B
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...
by DSguru2B
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

For a single character use the Index function in a stage variable to do the check. Something like if index ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefhijklmnopqrstuvwxyz -'",in.Col,1) > 0 then @TRUE else @FALSE If its a string then you will have to write your own function to do that. Functi...
by DSguru2B
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 ...