Search found 53125 matches

by ray.wurlod
Sun Jul 31, 2005 2:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: List of jobs use routine
Replies: 3
Views: 1051

Usage Analysis is also available from the Manager's toolbar; it's the tool whose icon looks like a chemist's beaker. Once the usage analysis report is presented, you may be able to perform further usage analysis. For example, if your routine is invoked by another routine, and the Dependencies are co...
by ray.wurlod
Sun Jul 31, 2005 2:46 am
Forum: IBM QualityStage
Topic: records that should match but don't
Replies: 4
Views: 2588

OK, that suggests that they're not in the same block. You also need to MOVE @WGT to get the agreement weights. You can select this from the same drop down list where you found @SET8. You'll also need to advise which columns you used for blocking (forming the blocks of potential duplicates). Ideally ...
by ray.wurlod
Sat Jul 30, 2005 5:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: excel sheet load
Replies: 4
Views: 1281

The worksheet must be in columnar format with column headings. If it is not, the ODBC driver doesn't work, so you would need to revert to saving the worksheet in CSV or TXT format (the latter is tab-delimited) and processing that with a Sequential File stage.
by ray.wurlod
Sat Jul 30, 2005 5:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error due in filter stage
Replies: 7
Views: 1658

There's no such thing as a virtual File Set, only a virtual Data Set. It's useful to think of every link in the job connecting through a virtual Data Set. Look at the generated OSH to discover the control file name (the name ending in ".v") for that virtual Data Set. The error message suggests that ...
by ray.wurlod
Sat Jul 30, 2005 5:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of CPU used by DS PX/EE
Replies: 5
Views: 1594

Where'd you hear that? Some operating system vendors provide utilities (for example Affinity) that can tie a particular process to a particular CPU, but there's nothing within DataStage. Nor have I heard any rumour to that effect about the Hawk release. But I don't hear everything, so do let us know...
by ray.wurlod
Sat Jul 30, 2005 5:33 pm
Forum: IBM QualityStage
Topic: records that should match but don't
Replies: 4
Views: 2588

What are the aggregate weights for the XA entry and the first and last DA entries for this difficult group (block of records)? If you can see that they're all in the same block (I'm assuming this), why do you claim that they don't match? Surely being in the same block is the defintion of match, when...
by ray.wurlod
Fri Jul 29, 2005 8:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: undo tablespace
Replies: 2
Views: 828

What else was happening in Oracle at the time that might also have needed some of the UNDO tablespace?
by ray.wurlod
Fri Jul 29, 2005 8:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Key field limitation
Replies: 4
Views: 1269

The maximum permissible MAXKEYLENGTH setting is 768.

You simply can not make it 2000.

What the heck are you trying to do?!!!

Small is good, as far as hashed files are concerned.
by ray.wurlod
Fri Jul 29, 2005 8:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Target is in the form of Header and Detail Records.
Replies: 6
Views: 1783

I'm sure if anyone has an idea they will post it. Stop hassling us! :evil:
by ray.wurlod
Fri Jul 29, 2005 8:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Returning less number of rows
Replies: 17
Views: 2886

Try these queries against the database.

Code: Select all

SELECT COUNT(*) FROM tablename;
SELECT COUNT(*) FROM (SELECT A,COUNT(*) FROM tablename GROUP BY A);

What do these tell you about grouping?
by ray.wurlod
Fri Jul 29, 2005 8:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Handling in Datastage
Replies: 1
Views: 1441

In a before-job or before-stage subroutine you can use appropriate UNIX commands such as test to determine existence, readability, etc. The only way to detect data type mismatch is to read everything as VarChar and create your own tests. Data type mismatch is logged, so you could pick this up in an ...
by ray.wurlod
Fri Jul 29, 2005 8:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Paralell running of same job with different parameters
Replies: 14
Views: 4420

The prompt for invocation ID should still appear when you're requesting a job run in Schedule view, so you fill the value in in exactly the same way as you would from a regular run request.
by ray.wurlod
Fri Jul 29, 2005 8:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding DSJ.JOBPID
Replies: 2
Views: 1441

The job PID is usually findable through the early entries in the job's log and/or through its DSD.RUN entry in &PH&.
by ray.wurlod
Fri Jul 29, 2005 8:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User defined SQL
Replies: 8
Views: 4201

DataStage does not support dynamic metadata. Therefore the answer is no, given your client's imposed constraint.
by ray.wurlod
Fri Jul 29, 2005 8:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Files bigger that 2GB form DataStage Basic using Seek
Replies: 7
Views: 3024

We would need to determine that by test.
The current location in the file is maintained by READSEQ (and is returnable using FILEINFO() function). If this is also an int32 then READSEQ and WRITESEQ would also be limited to 2GB.