Search found 53125 matches

by ray.wurlod
Tue Sep 05, 2006 4:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Incremental Loading in DS
Replies: 3
Views: 1328

How to do incremental loading in datastage in server jobs?
Don't clear the table first.

Is there any difference in loading in server and parallel jobs?
Depends how you design it.

Is there any relationship between incremental loading and scheduling?
Depends how you design it.
by ray.wurlod
Tue Sep 05, 2006 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing parameters in a sequencer
Replies: 16
Views: 4822

NO, the User Variables activity goes IN the job sequence. Its variables are accessible only to activities downstream of the User Variables activity.
by ray.wurlod
Tue Sep 05, 2006 4:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Search
Replies: 7
Views: 1766

You can effect a SEARCH against DS_JOBOBJECTS, but would then require some knowledge of the structures used in DS_JOBOBJECTS to understand the results.

Code: Select all

SEARCH DS_JOBOBJECTS
STRING=MyString
STRING=
SELECT OBJNAME,OBJIDNO FROM DS_JOBOBJECTS ORDER BY OBJIDNO;
by ray.wurlod
Tue Sep 05, 2006 4:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence in DS
Replies: 3
Views: 2192

Just stick it in user-defined SQL.

Code: Select all

INSERT INTO table(keycol,colA,colB) VALUES (seqname.NEXTVAL,:1,:2);
by ray.wurlod
Tue Sep 05, 2006 4:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: begins with function
Replies: 10
Views: 3801

There are Left() and Right() functions available. Using these would make the meaning in your expression pellucid.
by ray.wurlod
Tue Sep 05, 2006 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Report on sizes of RT_LOG files/tables
Replies: 2
Views: 1099

Warning: Obscure and Arcane Knowledge!

Two steps. ACCOUNT.FILE.STATS ALL LOCAL SELECT FILENAME.LONG, FILESIZE FROM STAT.FILE WHERE FILENAME.LONG LIKE 'RT_CONFIG%'; Substitute RT_LOG for RT_CONFIG depending on which answer you want. LIST.DICT STAT.FILE to get a listing of other information (column names from the STAT.FILE table) that is a...
by ray.wurlod
Tue Sep 05, 2006 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Minimum Hardware Requirements for Running parallel job
Replies: 6
Views: 1553

You should have the documents; they even ship with server edition. Look for parjdev.pdf and advpx.pdf in your Docs folder.
by ray.wurlod
Tue Sep 05, 2006 4:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Runtime error with SQL Server connection
Replies: 2
Views: 829

There are many possible reasons, disk space full being one, someone killing processes is another, attempt to divide by zero yet another. It's not possible to tell with just that message? Does it occur reliably? If so, after how many rows? Is there an aberrant row at that point in your source data?
by ray.wurlod
Tue Sep 05, 2006 4:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help with Lookups
Replies: 11
Views: 4456

For less than US$1 per week you CAN read the whole post.
They do have to fund this site. Premium memberships contribute only a small proportion of the actual running cost.
by ray.wurlod
Tue Sep 05, 2006 4:25 pm
Forum: General
Topic: Hats off for Steve Irwin
Replies: 5
Views: 3057

Crikey!
by ray.wurlod
Tue Sep 05, 2006 4:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Datastage PX
Replies: 6
Views: 1411

You give IBM crores of rupees and they will, at your choice, ship you a CD or provide you with a link to a download site. They will also ship you a licence code, without which you will not be able to get it to work at all.

There is no such thing as version 7.5x.
by ray.wurlod
Tue Sep 05, 2006 4:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SCD in datastage-how to implement?
Replies: 2
Views: 1871

Have you searched the forum? Techniques have been described here before. You can also enrol in the DataStage Best Practices class from IBM.
by ray.wurlod
Tue Sep 05, 2006 4:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to get the latest record from dimension table?
Replies: 3
Views: 1798

Create a query that constrains on the customer ID and the most recent (probably maximum) surrogate key value via a correlated subquery. SELECT T1.CUSTOMER_KEY FROM CUSTOMER_DIM T1 WHERE CUSTOMER_ID = 'A' AND T1.CUSTOMER_KEY = (SELECT MAX(T2.CUSTOMER_KEY) FROM CUSTOMER_DIM T2 WHERE T1.CUS...
by ray.wurlod
Tue Sep 05, 2006 4:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: stored procedures vs plug -ins
Replies: 1
Views: 754

A stored procedure is an object in a database. It can be used from various clients and SQL-based tools. "Plug-in" in DataStage means "optionally installed". A plug-in stage can perform any task, not necessarily a database-related task. Some plug-in stages ship with the product, others require additi...