Search found 3329 matches

by Sainath.Srinivasan
Mon Jun 06, 2005 10:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Counting No Of Lines
Replies: 10
Views: 2328

Sed is good. You can also do the same with grep and make it work more efficient.
by Sainath.Srinivasan
Mon Jun 06, 2005 10:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compiler or Interpreter?
Replies: 10
Views: 3184

Before others answer it, can you let us know what your answer is with the reason why.
by Sainath.Srinivasan
Mon Jun 06, 2005 10:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DRS Plugin Not Responding
Replies: 7
Views: 2265

Did you try in a different client PC?
by Sainath.Srinivasan
Mon Jun 06, 2005 10:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what is phantom error
Replies: 4
Views: 1002

When your executable job has commands that cannot be performed or variables not initialised, you may have phantom errors.

You may also have phantom errors which are serious to cause failure of the whole process.
by Sainath.Srinivasan
Mon Jun 06, 2005 7:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi Instance Job
Replies: 7
Views: 1559

A different invocation id than the one that is already running.
by Sainath.Srinivasan
Mon Jun 06, 2005 3:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSP.Open Error writing to Oracle - again.
Replies: 15
Views: 5935

I do not think loading a null into a non-null ora col will raise this error. If it is done, it may return a warning for that record.
by Sainath.Srinivasan
Mon Jun 06, 2005 3:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: installing Datastage on windows XP home edition
Replies: 3
Views: 1042

You cannot use a home editon. You need pro.
by Sainath.Srinivasan
Mon Jun 06, 2005 2:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to use Account Name in hash file
Replies: 9
Views: 3270

Even though you can create your own VOC entries to point to your new universe, it is advisable, as Ken said, to leave it blank and let it reside in the 'present working project'.

This assists in migration of code across projects.
by Sainath.Srinivasan
Mon Jun 06, 2005 2:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSP.Open Error writing to Oracle - again.
Replies: 15
Views: 5935

Access Violation may imply permission problems.
by Sainath.Srinivasan
Mon Jun 06, 2005 2:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading CFF
Replies: 4
Views: 807

Negative symbol may not always be represented by 'D'. The derivation of this char is by combination of the sign and the data.
by Sainath.Srinivasan
Sun Jun 05, 2005 4:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Counting No Of Lines
Replies: 10
Views: 2328

You can reduce it saying

grep '^$' filename | wc -l

But make sure that an 'empty line' is a line 'with no value including blank spaces'. Otherwise your grep pattern will be different.
by Sainath.Srinivasan
Fri Jun 03, 2005 2:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine to read the value from oracle
Replies: 3
Views: 899

Look for DSExecute.
by Sainath.Srinivasan
Fri Jun 03, 2005 2:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Command Stage
Replies: 2
Views: 791

Use loop stage in DS v> 7.5.

A condition stage to perform the check of date.
by Sainath.Srinivasan
Fri Jun 03, 2005 4:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Which stage is better for SAP data extraction: ABAP or BAPI
Replies: 5
Views: 1600

ABAP is simple and straight-forward.

BAPI involves SAP side knowledge and development.