Search found 102 matches

by Jay
Wed Jan 26, 2005 6:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer : Failure during execution of operator logic
Replies: 4
Views: 4097

It may be that the sum of the individual fields may not equal 846. It seems it is equal to 844.
by Jay
Wed Jan 26, 2005 5:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer : Failure during execution of operator logic
Replies: 4
Views: 4097

Check your data types on source and target and also check if you are doing the correct type conversions.....

Are you getting any other warnings???

Jay
by Jay
Wed Jan 26, 2005 1:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema propagation warning
Replies: 6
Views: 3590

Its behaving funny ....

I matched both the schemas and am able to populate the target table , finally (sigh of relief!!!)...But i am still getting the warning of "Mismatched schemas"....Column propagation is set to off...

Thanks
Jay
by Jay
Tue Jan 25, 2005 4:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema propagation warning
Replies: 6
Views: 3590

Thanks Ray. I'll keep you posted ....
by Jay
Tue Jan 25, 2005 3:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema propagation warning
Replies: 6
Views: 3590

Schema propagation warning

Hi All, I am getting the following warning at the Transformer stage. TranEmployee_csv: When checking operator: Data set (Virtual dataset; output of "APT_TransformOperatorImplJob_TranEmployee_csv in TranEmployee_csv"; input to "Oracle_217.inEmployeeSort") has preset schema that di...
by Jay
Tue Jan 18, 2005 5:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Environment variable to connect to Oracle
Replies: 1
Views: 1225

I had NOT mentioned the database name in the remote server option....

how silly can i become ????????????

damn, i need a vacation....
by Jay
Tue Jan 18, 2005 5:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversions
Replies: 4
Views: 1897

Anyways, thanks for your time, Ray...
by Jay
Tue Jan 18, 2005 5:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversions
Replies: 4
Views: 1897

That is what i did.... i have the input string in YYYYDDD format and target is a date in YYYYDDD format.... how do i do the reverse...something like a to_date()....will it work if i do a to_date() in the insert/ update statements.... problem is i cannot test it...i am getting that darn "Oracle ...
by Jay
Tue Jan 18, 2005 11:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Environment variable to connect to Oracle
Replies: 1
Views: 1225

Environment variable to connect to Oracle

Hi All, I am getting the following error. Oracle_217.DSLink203: Error when checking operator: connect failed for env: , user: *****, password: ***** Oracle error: -1034 ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exist SVR4 Error: 2: No such file or directory I have done ...
by Jay
Tue Jan 18, 2005 9:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversions
Replies: 4
Views: 1897

Date conversions

Hi All,

How do i convert a date in Oracle 9i Timestamp format to an Oracle 9i date in YYYYDDD format ?

Without iconv/oconv i am running out of ideas....i tried the TimestampToDate...but i have not been successful so far...

Thanks in advance
Jay
by Jay
Tue Jan 11, 2005 11:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify stage
Replies: 2
Views: 1430

please do a search on Decimal Rounding....hopefully it will help you...

jay
by Jay
Tue Jan 11, 2005 11:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX 6.0 String to Decimal
Replies: 12
Views: 6383

I will be galaxy hopping if i get 28000/hr....
by Jay
Mon Jan 10, 2005 5:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX 6.0 String to Decimal
Replies: 12
Views: 6383

Functional requirement changed

Hi All

I think i am good to go.

I wont be getting such big numbers in the input after all....

Its an hourly rate, so i am expecting it to be small...


Thanks all for your help...
Jay
by Jay
Mon Jan 10, 2005 10:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX 6.0 String to Decimal
Replies: 12
Views: 6383

hi T42, For Varchar to Decimal(8,3), if i do StringToDecimal("12345.678") it gives 12345.000 As far as calculating the divisor is concerned i am doing the following pwr(10.0,len(field(value,".",2))) All but 1 row pass thru. It bombs when input value is: 12345.678. Error is: APT_C...
by Jay
Mon Jan 10, 2005 8:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX 6.0 String to Decimal
Replies: 12
Views: 6383

Almost there

Hi Ray/Matthieu, Here are the results: StringToDecimal(value)- 1234.000 StringToDecimal(convert(".", "", value)/1000.0) = 1234.567 (if num = 12345.67 then result = 1234.000) StringToDecimal(convert(".", "",value))/1000.0 = 1234.567 (if num = 12345.67 then resu...