Search found 79 matches

by irajasekharhexa
Thu Nov 08, 2007 6:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring Issue
Replies: 2
Views: 992

Ok I understood that datastage counts the firstchar from count 1 but it should give only till 14 th character as the derivation is[9,14] but why it is picking till 16th character?
by irajasekharhexa
Thu Nov 08, 2007 6:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring Issue
Replies: 2
Views: 992

Substring Issue

Hi, In the Transformation derivation I taken SourceAccountId[9, 14] derivation. Input data is '123456789ABCDFGHIJKLMNOP' I am getting the out put as 9ABCDFGH Is datastage counts the position of the character from 0 to or 1 Even if the datastage counts the position from 0 it should give the output da...
by irajasekharhexa
Wed Nov 07, 2007 5:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How the Space will treat from dataset to Teradata
Replies: 0
Views: 479

How the Space will treat from dataset to Teradata

Hi, In one of the Job, For a particulor column of the type varchar in the dataset is having a value as blank but while loading the teradata the same column defined with the data type decimal. Since it is space/blank at the dataset it is populated as Blank at the teradata. Now again from the teradata...
by irajasekharhexa
Fri Nov 02, 2007 4:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup issue
Replies: 15
Views: 5750

Try changing the table to "VOC" and do a view data on it? Do you get the same error message or one stating bad column names? Why con't we use the Transformation stage and stage vatriables with logical operators to find out the date range like Actualdate>=rangedate1 and Actualdate<=rangeda...
by irajasekharhexa
Thu Oct 25, 2007 7:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController
Replies: 8
Views: 2325

Try this. "%yyyy%dd%mm". What you are mentioning here is the format of your input. Since there is no "-" in your input data and u have specified it in the format, you were getting this warning. StringToDate(pEFFECTIVE_DATE,"%yyyy%mm%dd"%]) I am using a jobparameter PEF...
by irajasekharhexa
Thu Oct 25, 2007 7:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController
Replies: 8
Views: 2325

Try this. "%yyyy%dd%mm". What you are mentioning here is the format of your input. Since there is no "-" in your input data and u have specified it in the format, you were getting this warning. StringToDate(pEFFECTIVE_DATE,"%yyyy%mm%dd"%]) I am using a jobparameter PEF...
by irajasekharhexa
Thu Oct 25, 2007 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController
Replies: 8
Views: 2325

Try this. "%yyyy%dd%mm". What you are mentioning here is the format of your input. Since there is no "-" in your input data and u have specified it in the format, you were getting this warning. StringToDate(pEFFECTIVE_DATE,"%yyyy%mm%dd"%]) I am using a jobparameter PEF...
by irajasekharhexa
Thu Oct 25, 2007 6:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController
Replies: 8
Views: 2325

Maveric wrote:Posting a sample of your input data for this field here would help. Check if the year date and month are actually separated by "-". Also see if the date and month are always 2 characters or digits.
My input data is 20070101 and expected resulut is 2007-01-01


Thanks
by irajasekharhexa
Thu Oct 25, 2007 5:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController
Replies: 8
Views: 2325

APT_CombinedOperatorController

Hi I am using the function StringtoDate(Jobparameter,"%yyyy-dd-mm%") But getting warning and no records are populating into the target. APT_CombinedOperatorController,0: Conversion error calling conversion routine date_from_string data may have been lost Peek_12,0: Date:********** Could yo...
by irajasekharhexa
Fri Oct 19, 2007 9:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job should get Aborted
Replies: 2
Views: 909

ray.wurlod wrote:In your Lookup stage specify the "Lookup Failed" rule as "Fail".
Thanks Ray


Regds
by irajasekharhexa
Fri Oct 19, 2007 8:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job should get Aborted
Replies: 2
Views: 909

Job should get Aborted

Hi,

I have a job where i need to abort the job if the lookup is failed . how can i achieve this.

Is DSStopJob() function can be used to do so in Parallel jobs?

Regds
by irajasekharhexa
Thu Oct 04, 2007 5:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generic Stage Option Value
Replies: 4
Views: 1972

Imagine we're processing the date 2007-10-04. The year is 2007, the month is 10, and we require 2071001 as the result. The "2" is the century designator. cast(YR as INTEGER)-1900)*10000 returns (2007-1900) * 10000, or 2070000 cast(Mnth as INTEGER)*100 returns (10 * 100), or 1000 cast('01'...
by irajasekharhexa
Wed Oct 03, 2007 5:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generic Stage Option Value
Replies: 4
Views: 1972

It's creating a date in %yyyy%mm01 format (the first of the month of the received year and month), as an integer, but with a modified century indicator. Is this, perhaps, intended for a JD Edwards data table? Hi Ray, It's not from the JDE data table. But I didn't understand how exactly it works. Ca...
by irajasekharhexa
Tue Oct 02, 2007 10:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generic Stage Option Value
Replies: 4
Views: 1972

Generic Stage Option Value

Hi I has some difficulty in understanding the following statement which was used in one of the Job. YR and MNTH values are paasing from the Teradata operator. cast( (cast(YR as INTEGER)-1900)*10000 +cast(Mnth as INTEGER)*100 +cast('01' as INTEGER) as DATE) Can any body please expain the output of th...
by irajasekharhexa
Thu Sep 27, 2007 8:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning:APT_FunnelOperator
Replies: 3
Views: 1391

Maveric wrote:Do an exact search on "preserve-partitioning". This has been answered a lot of times here.

Thanks Maveric, Now after setting the clear flag I am not getting any warnings.


Regds