Search found 53125 matches
- Thu Apr 08, 2004 5:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Phantom Error Not in Log for Debugger but it is for regular
- Replies: 5
- Views: 1364
Edit your breakpoint. Make it an expression such as (colname = "" Or IsNull(colname)). Hit Go; the job continues to execute until such a row occurs. THEN strap on the Sherlock Holmes gear! A zero length string has a known value, and is therefore not NULL, and therefore it will not be detected by the...
- Thu Apr 08, 2004 5:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Accessing files on a remote server
- Replies: 12
- Views: 3427
The question was about datasets in the PX environment. All you should need to do, provided that the machines are in the same cluster, is to define the hostname along with other definitions of each resource, in the PX configuration file associated with the job. Information on editing configuration fi...
- Thu Apr 08, 2004 5:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dsjob exit codes
- Replies: 6
- Views: 1563
- Thu Apr 08, 2004 4:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Stage Variable Size Restrictions
- Replies: 2
- Views: 1081
- Thu Apr 08, 2004 4:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: SQL exec before/after routine to truncate SQL Server table
- Replies: 4
- Views: 1104
- Thu Apr 08, 2004 4:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Retrieving Job Log info from a routine
- Replies: 12
- Views: 3350
Since you have time to investigate ( ), you might like to discover how DataStage does it. Enable server side tracing (from Administrator client or from DS.TOOLS). Open a Director client. Perform a partial purge. Close the Director client. Disable server side tracing. Inspect the trace file (it's in ...
- Thu Apr 08, 2004 4:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Compare two rows take out duplicates
- Replies: 5
- Views: 2125
- Thu Apr 08, 2004 4:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Purging of DataStage Log from Unix Script
- Replies: 14
- Views: 12853
... including the control records!
A better command to execute (though a little slower) is:
A better command to execute (though a little slower) is:
Code: Select all
"DELETE FROM " : LogFileName : " WHERE CAST(@ID AS VARCHAR) NOT LIKE '//%';"- Thu Apr 08, 2004 4:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Hardware configuration for DataStage 7.x Parallel extender
- Replies: 3
- Views: 2919
1. UNIX. (PX is scheduled for Windows, perhaps in 7.1?) 2. More. The secret of PX is its ability to share the load over multiple "resources" (= CPU + memory + work disk + scratch disk). These can be in an SMP (symmetric multi-processor) environment or in an MPP (massively parallel processing) enviro...
- Thu Apr 08, 2004 12:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Exception Handler
- Replies: 3
- Views: 1234
Have you read the on-line help and/or the manual entry for the Exception Handler? Essentially it's a "listener" that sits on your design canvas and can initiate an action, or series of actions, if an "exception" occurs. A child job aborting is an example of an exception. You might, for example, caus...
- Thu Apr 08, 2004 12:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Custom Triggers
- Replies: 1
- Views: 907
- Thu Apr 08, 2004 12:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: where to use bad files in orabulk load stage properties.
- Replies: 1
- Views: 856
Welcome aboard! :D The ORABULK stage is quite old, and quite limited in the functionality and performance it offers. 10,00,000 rows is what DataStage practitioners would regard as a medium sized ETL task. Search this forum to find techniques to gain orders of magnitude more speed using a Sequential ...
- Wed Apr 07, 2004 9:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Purging of DataStage Log from Unix Script
- Replies: 14
- Views: 12853
Project-wide purge parameters are stored in the DSParams file. There is a section that looks like this: [AUTO-PURGE] PurgeEnabled=0 DaysOld=0 PrevRuns=0 A routine to update all jobs with these defaults should read these settings, then update the control record //PURGE.SETTINGS in the RT_LOGnnn file ...
- Wed Apr 07, 2004 9:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sort Stage
- Replies: 6
- Views: 1773
Manuals for all plug-in stage types is on the CD, in a folder called Packages. In version 7 they are automatically installed in the client folder (Docs folder) if you choose to install the corresponding stage type. The only exception is the chargeable stage types, in which case the manual is deliver...
- Wed Apr 07, 2004 8:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to implement typeII slowly changing dimensions in star
- Replies: 4
- Views: 1651
Step 1. Read the excellent book The Data Warehouse Lifecycle Toolkit by Ralph Kimball and others, so that you have a firm grasp of what is meant by Type 2 SCD. Step 2. Search this forum for ideas. The topic has been extensively discussed. Step 3. Enrol in DataStage Best Practices class (DS306), wher...