Search found 102 matches

by balu536
Fri Sep 23, 2016 9:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Date - Format issue
Replies: 2
Views: 2121

The issue was with IsValid function. Ran to success after making below change Before: IF IsValid(Source, "%mmmm %dd, %yyyy") THEN StringToDate(Source,"%mmmm %dd, %yyyy") ELSE SetNull() After: IF IsValid("date",Source, "%mmmm %dd, %yyyy") THEN StringToDate(Sour...
by balu536
Fri Sep 23, 2016 8:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to Date - Format issue
Replies: 2
Views: 2121

String to Date - Format issue

Hi, I need to convert incoming String to Date. The format of the string is "Month dd, yyyy" Ex: (November 29, 2012). I used below function and job got aborted with error " Invalid type: November 29, 2012." StringToDate(Input Column,"%mmmm %dd, %yyyy"). Please help on th...
by balu536
Tue Aug 02, 2016 12:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File format issue
Replies: 1
Views: 1706

File format issue

Hi, I need to extract data from a source file. Format of the file is as below COLUMN - A|B|C|D|E ROW1 - 45|56|67|23A|| ROW2 - 45|56|67|23A|| ROW3 - 45|56|67|23A|Sam ROW4 - 45|56|67|23A|Martin ROW5 - 45|56|67|23A|Sunny ROW6 - 45|56|67|23A|Keaubu I'm using Sequential file stage to extract the data and...
by balu536
Mon Apr 18, 2016 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: '#' in Where condition value of Oracle Query
Replies: 2
Views: 1941

'#' in Where condition value of Oracle Query

Hi, I'm using an Oracle query where one of columns in Where condition has '#' in value. The query runs fine in Toad or SQL Developer but is failing in the Oracle Connector. Please help. Original Query: ************* SELECT * FROM TABLE_A WHERE COLUMN_A = 'AB CDE #' AND STG_ETL_BATCH_ID = 1 Query in ...
by balu536
Tue Mar 25, 2014 8:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Query on SCD Stage
Replies: 1
Views: 1781

Query on SCD Stage

Hi, I'm using SCD stage for Type 1 Dimension. As part of daily load, we have inserts and updates to the Target Table. Please help on how to identify the inserts and updates from the Output of SCD stage. For Type2 dimensions, we can identify based on Change Indicator but for Type 1, i'm unable to fin...
by balu536
Thu Dec 19, 2013 10:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Connector Error
Replies: 2
Views: 4932

Thanks for the reply.

Job is running on one Node.

We could figure out the issue.
It's because of Nulls coming in one of the Key field. Teradata is unable to compare the Nulls. Replaced Nulls with a dummy character and was able to continuw with the load.
by balu536
Wed Dec 18, 2013 1:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Connector Error
Replies: 2
Views: 4932

Teradata Connector Error

Hi, We are extracting data from a Flat file and loading to Table A. In the After Sql, we wrote a Merge query to Upsert data into Table B (which is a archive of Table A). Insert statement for Table A is running fine where as the Merge query for Table B is failing with error.."RDBMS code 2802: Du...
by balu536
Tue Nov 26, 2013 9:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Deadlock Issue
Replies: 9
Views: 10089

Thanks.
Implemented the same and deployed the code to Production.

Hope it don't abort again.. :)
by balu536
Mon Nov 25, 2013 1:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Deadlock Issue
Replies: 9
Views: 10089

Since i have very less data, ran the job on One node and this might work for me.

Craig, Any suggestion on above?
by balu536
Mon Nov 25, 2013 10:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Deadlock Issue
Replies: 9
Views: 10089

I was also thinking to do the same (that wll work).
I'm dealing with 1.5Million data, so shouldn't be a problem for now.

Thanks Srinivas.
by balu536
Mon Nov 25, 2013 9:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Deadlock Issue
Replies: 9
Views: 10089

No other user or process is using the table.
by balu536
Mon Nov 25, 2013 9:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Deadlock Issue
Replies: 9
Views: 10089

Job is running on Two nodes.

I did hash partitioning on Primary Key on the input link of Oracle Connector Stage and updated Record Count to 2000.

Still the Job fails:(
by balu536
Mon Nov 25, 2013 8:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Deadlock Issue
Replies: 9
Views: 10089

Oracle Connector Deadlock Issue

Hi, My Datastage job loads data to Oracle table with below properties Write Mode: Update then Insert Table Action : Append Record Count : 100000 Array Size: 2000 Today the job failed (Update Query failed) with Deadlock issue "The OCI function OCIStmtExecute returned status 1. Error code: 60, Er...
by balu536
Fri Oct 04, 2013 11:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Stage Error
Replies: 1
Views: 7094

Got the error.
It's issue with my Update statement. There was a typo error in one of the columns name.