Search found 245 matches

by Ragunathan Gunasekaran
Tue Sep 30, 2008 4:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ROWID in oracle not working
Replies: 6
Views: 2570

Hi The below one is the exact query that i have used SELECT HIERARCHY_ID, EMPLOYEE_NO, (SELECT CAST(DATENO as INT) FROM owner.DATE_HIERARCHY_DIM WHERE to_char(EXTERNAL_DATE ,'YYYY-MM-DD') ='2008-09-03')DATENO FROM owner.FIN_HIERARCHY_DIM WHERE ROWID in(SELECT MAX(ROWID) FROM owner.FIN_HIERARCHY_DIM ...
by Ragunathan Gunasekaran
Tue Sep 30, 2008 3:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ROWID in oracle not working
Replies: 6
Views: 2570

[/code]SELECT
column_name1,column_name2
FROM table_name1
WHERE ROWID in(SELECT MAX(ROWID) FROM table_name1 GROUP BY col1,col2 HAVING TO_CHAR(col2,'YYYY-MM-DD')='2008-09-30')[/quote]
by Ragunathan Gunasekaran
Tue Sep 30, 2008 12:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ROWID in oracle not working
Replies: 6
Views: 2570

ROWID in oracle not working

Hi , I am using the ROWID in the user defined sql query .. When i execute the query from the SQL client its working fine and when the same is used inside the Oracle stage its showing the following error sqlcode is: -1756 esql complaint: ORA-01756: quoted string not properly terminated I used the sam...
by Ragunathan Gunasekaran
Wed Sep 24, 2008 1:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in detecting the change using change capture
Replies: 0
Views: 754

Problem in detecting the change using change capture

Hi , I am having aroung 124 columns in my before and after dataset. During change capture ,i am getting some rows as Edited but i could see that the data is in sync in both the before and after dataset . How do i detect in which column(s) the change has happened. During Run1 of my Change capture all...
by Ragunathan Gunasekaran
Fri Sep 12, 2008 11:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: char columns possing threat
Replies: 3
Views: 1941

Hi, The addition of a space again at the end of the values would still treat them as a update records as the file will not have any spaces to the value column...I would like to read these records from the oracle table itself without any spaces. as i have about two hundred columns to trim and check. ...
by Ragunathan Gunasekaran
Fri Sep 12, 2008 9:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: char columns possing threat
Replies: 3
Views: 1941

char columns possing threat

Hi , I am having source as a mainframe file containing char columns and staging the mainframe file into the oracle table without any transformations. during the next load , i am doing a change capture (explicit keys and all values)between the file and the staging table and loading only new and chang...
by Ragunathan Gunasekaran
Tue Sep 09, 2008 7:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unrecognized top level format property: nocheck
Replies: 5
Views: 4913

Hi ,
There is no resolved post or workaround post.. But there are citations that using load option can lead to this problem ... Hence thought of an alternative way by changing that to upsert...
by Ragunathan Gunasekaran
Tue Sep 09, 2008 2:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unrecognized top level format property: nocheck
Replies: 5
Views: 4913

Hi , one solution to this prob is that i can disable the load and use the upsert method but there is an problem in using this option. I have consecutive spaces in non nullable char column which when inserted is treated as null and job aborts . I went for this load option with Oracle_preserver_balnk_...
by Ragunathan Gunasekaran
Tue Sep 09, 2008 2:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Integer Conversion warning
Replies: 6
Views: 2017

Hi , Also there is a mistake in my issue specification . Actually i am using the change capture after the modify stage . The After and Before datasets are not in their proper metata. . I am converting the After dataset metadata ( which is extracted from mainframe) using the modify stage to be in syn...
by Ragunathan Gunasekaran
Tue Sep 09, 2008 2:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Integer Conversion warning
Replies: 6
Views: 2017

Hi,
There is no conversion function exists for int64 to int 32 conversion .. I had a look in the parallel job developer guide as well as i have searched the forum .....

Any clues please
by Ragunathan Gunasekaran
Tue Sep 09, 2008 2:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Integer Conversion warning
Replies: 6
Views: 2017

Integer Conversion warning

Hi, I am getting the following warning in the modify stage .How do i handle this type of conversion . can i demote a data type from its higher width to lower width? any clues to remove this warning Implicit conversion from source type "int64" to dest type "int32": Possible range ...
by Ragunathan Gunasekaran
Tue Sep 09, 2008 1:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unrecognized top level format property: nocheck
Replies: 5
Views: 4913

Unrecognized top level format property: nocheck

Hi ,
I am loading the oracle table with the write method =load and and rebuild index option ..I am getting this wird warning

Code: Select all

When checking operator: When validating export schema: Unrecognized top level format property: nocheck
from the DB stage in the log. Any clues to remove this warning
by Ragunathan Gunasekaran
Mon Sep 08, 2008 4:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Downstream stages throwing warning
Replies: 1
Views: 922

Downstream stages throwing warning

Hi , I have converted the decimal cols to string cols using the string_from_decimal in modify stage. The metadata on the target is string[12] and hence the output of the modify page i have given the metadata as string[12]. There are no warnings thrown in the modify stage but the down stream stage ha...