Search found 3329 matches

by Sainath.Srinivasan
Fri Jul 17, 2009 9:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: change job parameter at runtime
Replies: 12
Views: 3917

Epinzone,

I am unable to follow your requirement. Can you please explain your requirement in steps or pseudocode.

Also it will be useful to start a new thread for your own requirement.
by Sainath.Srinivasan
Fri Jul 17, 2009 9:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating a new user
Replies: 3
Views: 1020

Being v7.x, it must be your OS user.

Refer to admin guide
by Sainath.Srinivasan
Fri Jul 17, 2009 7:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01036: illegal variable name/number
Replies: 7
Views: 2316

Craig,

You are right.

Tried a test job and gives me the exact error message.

But wonder what I did in Server jobs to avoid using all columns. Must try to remember.
by Sainath.Srinivasan
Fri Jul 17, 2009 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error logging
Replies: 9
Views: 2050

Write your rejects into a single string and pivot it into multiple records.

Craig did beat me into the post.
by Sainath.Srinivasan
Fri Jul 17, 2009 3:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: change job parameter at runtime
Replies: 12
Views: 3917

Use round-robin partition method.
by Sainath.Srinivasan
Fri Jul 17, 2009 3:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error logging
Replies: 9
Views: 2050

You will have multiple output links from the tx, each representing one possible error.

There are other methods to do this. But this will be simplest to design and implement - in my opinion.
by Sainath.Srinivasan
Fri Jul 17, 2009 3:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference in ORAOCI read result between Oracle 9i and 11g
Replies: 11
Views: 6360

Few basic questions

1.) What is the meta-data for the columns in DataStage?
2.) Are they extracted using same job or different ?
3.) Are you fetching directly from the table or from some view over it ?
4.) Are you viewing at the result after some transformation or view-data from Oracle stage ?
by Sainath.Srinivasan
Fri Jul 17, 2009 1:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01036: illegal variable name/number
Replies: 7
Views: 2316

I think you can skip :1 if you are not using it.

But why do you have a comma before WHERE ?
by Sainath.Srinivasan
Fri Jul 17, 2009 1:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge multiple rows into one based on key values
Replies: 8
Views: 3512

one change in Ray's suggestion...

It will be value in specific count and zeros for all others.

For example
source1, flatfile, 10, 0, 0, 0
source2, db, 0, 10, 0, 0
...
....


tx -> agg (MAX of each columns)
by Sainath.Srinivasan
Thu Jul 16, 2009 1:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error logging
Replies: 9
Views: 2050

send the reject rows from tx2 through to a funnel stage and its output to ds2
by Sainath.Srinivasan
Thu Jul 16, 2009 1:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORAOCI9 Stage INSERTing Twice - unique constraint violated
Replies: 5
Views: 2117

Your lines from log appear twice. Is it how it appears in the job log? You can do the following to analyse 1.) Try disabling the unique constraint and check the result after the run. 2.) Include a constraint to pass only one row from source and check the result 3.) Redirect the same output to sequen...
by Sainath.Srinivasan
Thu Jul 16, 2009 5:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rules To Be Followed For Concatenation
Replies: 8
Views: 2210

Can you provide the full transformation rule with the input and output values to explain the issue you are facing.

Without that others can do very little only.
by Sainath.Srinivasan
Thu Jul 16, 2009 2:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date format not supported
Replies: 11
Views: 3708

Are you using user-defined SQLs ? That may be one of the reasons for translation. Pre-defined SQL tend to have To_Char() around the date values. Did you try mapping the values from flat-file to Oracle? DataStage automatically translates (it's internal) julian dates to Date of corresponding dbms. If ...
by Sainath.Srinivasan
Thu Jul 16, 2009 2:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date format not supported
Replies: 11
Views: 3708

Search for IConv and OConv.
by Sainath.Srinivasan
Thu Jul 16, 2009 2:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date format not supported
Replies: 11
Views: 3708

In case 2, input is date and not timestamp. So it fails.

In case 3, the output appears to be julian date.

Can you explain what you expect to see.