Search found 3329 matches

by Sainath.Srinivasan
Wed Mar 04, 2009 8:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence job (restartable) will abort due to previous unreco
Replies: 6
Views: 5898

What changed 'day before yesterday' or its day before ?

What happened after your reboot?

How are you running the jobs? i.e through OS prompt or via DS?

What steps happen before you get the error ?
by Sainath.Srinivasan
Wed Mar 04, 2009 8:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToTimestamp err
Replies: 23
Views: 5038

Code: Select all

StringToTimestamp(DSLink8.Eff_date:' 00:00:00',"%m/%d/%yyyy %hh:%nn:%ss") 
Or simply to a StringToDate and use it as a date.
by Sainath.Srinivasan
Wed Mar 04, 2009 8:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to View data using a ODBC stage
Replies: 6
Views: 3007

Can you create a new job with ODBC stage and see whether it works ?
by Sainath.Srinivasan
Wed Mar 04, 2009 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MERGE STATEMENT in datastage?
Replies: 9
Views: 6373

Craig,

I also do not have Premium but assume you are referring to placeholders for binding variables.

Karthik,

Can you provide the full error with associated ora code.
by Sainath.Srinivasan
Wed Mar 04, 2009 3:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToTimestamp err
Replies: 23
Views: 5038

Did you do

Code: Select all

StringToTimestamp(DSLink8.Eff_date,"%yyyy-%mm-%dd %hh:%nn:%ss") 
OR

Code: Select all

StringToTimestamp(DSLink8.Eff_date,%yyyy-%mm-%dd %hh:%nn:%ss) 
by Sainath.Srinivasan
Wed Mar 04, 2009 3:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UDB API stage deadlock or timeout Reason code SQLSTATE=57033
Replies: 4
Views: 1281

Log the ids to a sequential file and do a diff to confirm the exclusiveness.

Check the memory usage and locking with your DBA.
by Sainath.Srinivasan
Tue Mar 03, 2009 10:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamically reading Schema file in Sequential File Stage
Replies: 10
Views: 5226

Did you try using sqlldr with externally generated ctl file.
by Sainath.Srinivasan
Tue Mar 03, 2009 9:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence job (restartable) will abort due to previous unreco
Replies: 6
Views: 5898

There must be more log. Can you let us know of them too.

Also
1.) what is the sequence doing?
2.) when it fails?
3.) does it always fail in the same place with the same message?
4.) What is the activity where it fails? (is that compiled and not in aborted state)
by Sainath.Srinivasan
Tue Mar 03, 2009 8:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Columns to rows
Replies: 1
Views: 824

Convert '/' to newline.
by Sainath.Srinivasan
Tue Mar 03, 2009 5:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UDB API stage deadlock or timeout Reason code SQLSTATE=57033
Replies: 4
Views: 1281

Surprising that the delete will go for table level lock rather than row level. Maybe it is escalating because of low memory.

Try to monitor with help of your DBA.
by Sainath.Srinivasan
Tue Mar 03, 2009 5:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do to pattern matching in stage variable
Replies: 10
Views: 3113

With no disrespect, did you try to search? There are loads of examples.
by Sainath.Srinivasan
Tue Mar 03, 2009 4:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do to pattern matching in stage variable
Replies: 10
Views: 3113

You can do a regular expression match in Oracle itself (in source SQL).

In DataStage, you can do an Index()
by Sainath.Srinivasan
Tue Mar 03, 2009 4:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Metadata driven job execution
Replies: 4
Views: 1245

Simplest will be to have 2 columns - keyCol and nonKeyCol (both Varchar). Send all key cols concatenated with markers into keyCol and non key to nonKeyCol. When reading, split them accordingly. Second option (This is a guess...maybe Ray can ratify !!) 1.) Create an universe ODBC link 2.) First job t...