Search found 53125 matches

by ray.wurlod
Thu Oct 21, 2010 5:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call a sql script in ds job
Replies: 4
Views: 1547

Why not? Resist stupid requirements!

Then you can execute it through a before-job or after-job subroutine.
by ray.wurlod
Thu Oct 21, 2010 5:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage and Disk Resource
Replies: 3
Views: 2710

It's on the DataStage Designer toolbar. Open it then click Help to learn how it works. Or read about it in the Parallel Job Advanced Developer's Guide
by ray.wurlod
Thu Oct 21, 2010 5:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-00001: unique constraint for NO SOURCE RECORDS
Replies: 3
Views: 2637

Describe your job design more completely. There is not enough information in your post for any meaningful diagnosis.
by ray.wurlod
Thu Oct 21, 2010 2:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage and Disk Resource
Replies: 3
Views: 2710

Re: DataStage and Disk Resource

Welcome aboard.

DataStage includes a Resource Estimation tool that can assess resource requirements for individual jobs. Start with that, and add the results for any jobs that you intend to run simultaneously.
by ray.wurlod
Thu Oct 21, 2010 2:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Primary key violation Warnings
Replies: 1
Views: 997

Re: Primary key violation Warnings

tanaya.deshpande@tieto.co wrote:Though there are no duplicate primary keys in the database.
If that is true you can not get primary key violation warnings. Check again.

Code: Select all

SELECT KEY_COL, COUNT(*) FROM TABLE GROUP BY KEY_COL HAVING COUNT(*) > 1;
by ray.wurlod
Thu Oct 21, 2010 2:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Must upgrade from DS 32bit to 64bit on windows?
Replies: 7
Views: 3452

They will demand varying amounts, perhaps as much as 2GB, perhaps not. Use the Resource Estimation tool to get numbers. If the system can not supply all resources demanded, some waiting (for CPU) or paging (of memory) is likely to occur.
by ray.wurlod
Thu Oct 21, 2010 2:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while executing Server Job with Teradata Stage
Replies: 1
Views: 1217

Do you have the Teradata Utilities and TPT installed on the new DataStage server?
by ray.wurlod
Thu Oct 21, 2010 2:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Userstatus
Replies: 3
Views: 2392

Perhaps using the correct function name (DSSetUserStatus()) would be beneficial.
by ray.wurlod
Wed Oct 20, 2010 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Must upgrade from DS 32bit to 64bit on windows?
Replies: 7
Views: 3452

DataStage is basically the same, though there is a patch for Windows Server 2003 that allows as much as 3GB of memory to be accessed in a 32-bit environment.
by ray.wurlod
Wed Oct 20, 2010 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequencer
Replies: 1
Views: 993

There are lots of date manipulation Transforms and Routines supplied with the product and more here.
by ray.wurlod
Wed Oct 20, 2010 3:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection broken 81002
Replies: 2
Views: 5666

81002 is usually caused by a connected client exceeding its inactivity timeout. That timeout can be set using the Administrator client.

However an 81002 can also be caused by the client's agent process (dscs, dsapi_server or dsapi_slave) being killed on the engine (server).
by ray.wurlod
Wed Oct 20, 2010 3:16 pm
Forum: General
Topic: Wait for File
Replies: 10
Views: 4934

It's also possible to code it as a Routine activity.
by ray.wurlod
Wed Oct 20, 2010 3:15 pm
Forum: General
Topic: Abort a Job
Replies: 2
Views: 1454

Re: Abort a Job

Magesh_bala wrote: I need to abort a job if ...
Never a good plan, in my opinion.