Search found 3329 matches

by Sainath.Srinivasan
Mon Feb 23, 2009 5:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not writing to column: NVL
Replies: 6
Views: 2003

What if you provide an alias name in source.

like

Code: Select all

SELECT 
value1, value2, value3, NVL(TRIM(CODE),'UNKNOW') CODE, value4 FROM mytable 
by Sainath.Srinivasan
Mon Feb 23, 2009 4:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete on oracle taking long
Replies: 12
Views: 3447

Selecting and deleting from same table will not cause locks unless you lock with 'FOR UPDATE'.

It may result in blowing your temp, rollback or redo spaces (depending on version and action in Oracle).
by Sainath.Srinivasan
Mon Feb 23, 2009 3:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do you pass a job parameter to a buildop
Replies: 14
Views: 3392

Create a property (similar to parameters) and use it in your code.

When you use the build-op in your job, you will be able to pass the value as you do for any normal stage.
by Sainath.Srinivasan
Mon Feb 23, 2009 3:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do you pass a job parameter to a buildop
Replies: 14
Views: 3392

Create a property (similar to parameters) and use it in your code.

When you use the build-op in your job, you will be able to pass the value as you do for any normal stage.
by Sainath.Srinivasan
Fri Feb 20, 2009 10:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to use comman table expression(Inline view) in ODBC Stag
Replies: 23
Views: 7110

Oops!! I was working in PX.

Server edition does ignore it. :oops:
by Sainath.Srinivasan
Fri Feb 20, 2009 10:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to use comman table expression(Inline view) in ODBC Stag
Replies: 23
Views: 7110

Craig,

Try running following SQL query in DataStage (Oracle Stage)

SELECT
dummy
-- #SomeThing
FROM
-- #SomeOtherThing
DUAL

This will fail.

Comments are ignored in the db. Not in DS.
by Sainath.Srinivasan
Fri Feb 20, 2009 10:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set Project to Compile before execute
Replies: 37
Views: 9234

Why are we in times before sequencers were introduced ? :roll:
by Sainath.Srinivasan
Fri Feb 20, 2009 10:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updates happening very slow
Replies: 14
Views: 3332

Can you Ctrl-V you update SQL here ?
by Sainath.Srinivasan
Fri Feb 20, 2009 10:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to use comman table expression(Inline view) in ODBC Stag
Replies: 23
Views: 7110

Does not matter. DS will still parse and give the error.
by Sainath.Srinivasan
Fri Feb 20, 2009 9:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JOB STOPPING WITHOUT EXPLANATION
Replies: 32
Views: 6079

Did you check the event log in server?
by Sainath.Srinivasan
Fri Feb 20, 2009 9:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JOB STOPPING WITHOUT EXPLANATION
Replies: 32
Views: 6079

Did you check the event log in server?
by Sainath.Srinivasan
Fri Feb 20, 2009 9:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to use comman table expression(Inline view) in ODBC Stag
Replies: 23
Views: 7110

DataStage does its own parsing of parameters before sending to the db.

So your query will be parsed incorrectly.

If you see the SQL in error message, you can see what is sent.
by Sainath.Srinivasan
Fri Feb 20, 2009 9:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to use comman table expression(Inline view) in ODBC Stag
Replies: 23
Views: 7110

DataStage does its own parsing of parameters before sending to the db.

So your query will be parsed incorrectly.

If you see the SQL in error message, you can see what is sent.
by Sainath.Srinivasan
Fri Feb 20, 2009 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JOB STOPPING WITHOUT EXPLANATION
Replies: 32
Views: 6079

As you are in Windows, you can check your event log viewer to see any warning / fatal messages during that time.
by Sainath.Srinivasan
Fri Feb 20, 2009 8:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JOB STOPPING WITHOUT EXPLANATION
Replies: 32
Views: 6079

Could it be a 2Gb+ problem?

What if you remove the transform and make it a
'hashed file -> seq file' job?