Search found 3329 matches

by Sainath.Srinivasan
Thu Jun 16, 2005 6:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to avoid warnings?
Replies: 15
Views: 3230

Ziggacclly.
by Sainath.Srinivasan
Thu Jun 16, 2005 6:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Abort
Replies: 7
Views: 1770

Reset and run immediately after a job failure is not adviced. It will lead to more problem than answers.
by Sainath.Srinivasan
Thu Jun 16, 2005 6:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Validation
Replies: 5
Views: 1326

You need to check whether the case of alphabetic chars matter. If it does, you need to change the command a little.
by Sainath.Srinivasan
Thu Jun 16, 2005 6:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to avoid warnings?
Replies: 15
Views: 3230

But then, these error messages are there for a purpose. The message clearly says that you are attempting to alter a record value and you are not successful in performing that. So you need to have a design that caters for this failure to be traced and recorded....not hidden and forgotten.
by Sainath.Srinivasan
Thu Jun 16, 2005 6:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Validation
Replies: 5
Views: 1326

Try the following

Code: Select all

Convert(IConv(IConv(InpString, "MC/N"), "MC/A"): "IOQ", "", InpString)
by Sainath.Srinivasan
Thu Jun 16, 2005 6:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Monitoring
Replies: 6
Views: 1561

This appears to be an enhancement of Director to display details in all the projects....something like the host view in Manager. Simplest will be to have multiple director sessions open - one for each project. Otherwise you can extract the info you want and simulate the view using other software suc...
by Sainath.Srinivasan
Thu Jun 16, 2005 5:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting No in Nullable Column
Replies: 7
Views: 2234

You need to apply functions / transformations such as handle_null.
by Sainath.Srinivasan
Thu Jun 16, 2005 4:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ora bulk loader Stage
Replies: 5
Views: 1669

SQL Loader works better and can be tuned efficiently using manual methods than the one given by DataStage.

You need to try different values for 'number of rows' to get the correct balance.
by Sainath.Srinivasan
Thu Jun 16, 2005 4:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to avoid warnings?
Replies: 15
Views: 3230

If you attempt to insert, you need to define ALL the primary keys as you cannot have any duplicates of them.

Similarly, an update without all primary keys may result in updating multiple rows.
by Sainath.Srinivasan
Thu Jun 16, 2005 4:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting No in Nullable Column
Replies: 7
Views: 2234

They will be rejected, if you have a reject stream.
by Sainath.Srinivasan
Thu Jun 16, 2005 2:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to avoid warnings?
Replies: 15
Views: 3230

As mentioned before, all it ways is that it was not able to locate the row with the key in the table.

Use reference lookup to reject them.

Alternatively, if your design is to be altered to 'insert or update rows', then look into it.
by Sainath.Srinivasan
Thu Jun 16, 2005 2:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing a DataStage file with Excel
Replies: 20
Views: 8429

The above is not a winking symbol. It was supposed to mean a semi-colon within brakets.
by Sainath.Srinivasan
Thu Jun 16, 2005 2:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing a DataStage file with Excel
Replies: 20
Views: 8429

You can use semi-colon (;) or any other char as your delimiter and then convert them into tabular fashion within Excel.
by Sainath.Srinivasan
Thu Jun 16, 2005 2:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Login Error
Replies: 7
Views: 1274

It is normally viceversa. You create users who are then included in the dstage group.
by Sainath.Srinivasan
Thu Jun 16, 2005 2:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mimic KeyMgtGetNextValueConcurrent routine
Replies: 8
Views: 2234

You can use parameters and make it a shared container.