Search found 42189 matches

by chulett
Thu Nov 13, 2008 10:14 am
Forum: General
Topic: Premium Membership
Replies: 4
Views: 1210

Set it to whatever you like, it doesn't matter and is ignored for the process.
by chulett
Thu Nov 13, 2008 10:12 am
Forum: General
Topic: Run DSJobs from java code
Replies: 5
Views: 1634

Remote shell.
by chulett
Thu Nov 13, 2008 9:32 am
Forum: General
Topic: Run DSJobs from java code
Replies: 5
Views: 1634

You would need to leverage the UNIX 'dsjob' command, documented in the Server Job Developer's Guide in the Command Line Interface chapter. That or the API directly.
by chulett
Thu Nov 13, 2008 9:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle sequence Number
Replies: 13
Views: 4898

So, as noted, a mismatch. Remove the target column for the sequence from the stage.
by chulett
Thu Nov 13, 2008 9:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Isnull not working
Replies: 5
Views: 1612

An empty string "" is not the same as a null, well except in Oracle. So either check for both in your job or convert it in your source SQL. For example in Oracle:

Code: Select all

NVL(EIW_MATCH,'N')

Would do the trick.
by chulett
Thu Nov 13, 2008 9:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to capture the no of records inserted and updated
Replies: 8
Views: 3246

Which has been asked and answered before. Search for "does not fulfill the sort requirements of the downstream operator".
by chulett
Thu Nov 13, 2008 8:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to add 180 days to my source date
Replies: 8
Views: 2430

If DateFromDaysSince is "not working", can you confirm that your CHANGE_DATE column is in fact a Date datatype and not a string?
by chulett
Thu Nov 13, 2008 8:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Subtratc few days from a date
Replies: 3
Views: 958

Or just use the DateFromDaysSince function with a -2 for the number of days.
by chulett
Thu Nov 13, 2008 8:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Exponent
Replies: 11
Views: 2802

Field : CHAR(9)
by chulett
Thu Nov 13, 2008 8:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle sequence Number
Replies: 13
Views: 4898

Re: Oracle sequence Number

kumar66 wrote:Fatal: ORA-01036: illegal variable name/number

You have a mismatch between the number of columns in the stage and the number of parameter markers in your SQL.
by chulett
Thu Nov 13, 2008 8:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle sequence Number
Replies: 13
Views: 4898

Based on what? Your clairvoyant knowledge of their naming standards? :?
by chulett
Thu Nov 13, 2008 8:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to call stored procedure having only OUT parameter in DS
Replies: 1
Views: 1001

You are overly complicating your solution, nothing you are doing here is magic nor requires a stored procedure to implement. m However, in an attempt to answer your question - the ODBC stage with custom sql is probably the only place where you can get away with no input parameters. Other stages typi...
by chulett
Thu Nov 13, 2008 8:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can we select multiple statements in odbc source
Replies: 3
Views: 1612

In the ODBC stage itself - Inputs / General tab if you mean the 'Create table' option. Everything is normal DataStage design, not trying to explain anything... tricky.
by chulett
Thu Nov 13, 2008 8:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: update a database table
Replies: 23
Views: 8316

No, because not all columns are bound in the query. Remove the 3 unneeded columns from the stage (1,2,7) and start numbering from :1.
by chulett
Thu Nov 13, 2008 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Order By before Hashed Stage
Replies: 11
Views: 2984

The "order by" won't affect the actual lookup itself but can affect the hashed file population. Where exactly do you "order by"? And "rejected" in this case means the lookup fails? :?