Search found 53125 matches

by ray.wurlod
Wed Jun 06, 2012 8:38 pm
Forum:
Topic: Question on MDWB licencing
Replies: 6
Views: 1659

Yes, I think that's what I was trying to convey. I've always installed MWB with BG.
by ray.wurlod
Wed Jun 06, 2012 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid property value
Replies: 11
Views: 13048

What I meant was, does the UNION statement in DataStage still extract data from the database, even though it throws the warning?

Can you also check in the job log that the SQL being used is precisely the SQL that you provided?
by ray.wurlod
Wed Jun 06, 2012 4:31 pm
Forum:
Topic: Metadata Work Bench to view WISD servie input and Output
Replies: 8
Views: 2084

Only by stopping the job.
by ray.wurlod
Wed Jun 06, 2012 2:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid property value
Replies: 11
Views: 13048

Is it really an error? That is, does the UNION statement still extract from the database?
by ray.wurlod
Wed Jun 06, 2012 2:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ds_ipcopen() - Error in mmap
Replies: 1
Views: 892

Also check TMPDIR. Try pointing them to a location with much more space. Check while the job is running. Often /tmp is undersized for DataStage - using a different file system (with more space) is recommended.
by ray.wurlod
Wed Jun 06, 2012 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: character field null issue
Replies: 3
Views: 1584

The value is represented by Char(0) or UniChar(0). You can use either of these representations in functions such as Convert(). In particular, this value is not the same as NULL (even though it's referred to in ASCII as "NUL").
by ray.wurlod
Wed Jun 06, 2012 2:47 pm
Forum:
Topic: Question on MDWB licencing
Replies: 6
Views: 1659

As far as I have been able to determine Business Glossary allows you to view the (simpler) Business Lineage without a Metadata Workbench licence (though, as Ernie observes, it has to be installed) but, if you want to drill down via Data Lineage, then you do need a Metadata Workbench licence.
by ray.wurlod
Wed Jun 06, 2012 2:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: character field null issue
Replies: 3
Views: 1584

Identify the "unknown character". Perhaps convert it to hex.
by ray.wurlod
Wed Jun 06, 2012 2:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: storage of NULLS
Replies: 10
Views: 1989

No. You need 8 bits to represent -128.
by ray.wurlod
Wed Jun 06, 2012 2:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update Modified Batch Id in SCD Stage
Replies: 4
Views: 1254

Capture a before-image and compare.
by ray.wurlod
Wed Jun 06, 2012 2:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: scrtch disk full
Replies: 3
Views: 1206

Scratch disk is usually automatically cleaned up when jobs finish normally, but not if they abort.

Solution: create job designs that don't abort.
by ray.wurlod
Wed Jun 06, 2012 2:38 am
Forum: General
Topic: Firing query on UNIVERSE through UNIX script
Replies: 17
Views: 6413

It doesn't matter what it's a link to. It's there.

Always answer "Would you like to set it up?" in the negative.

Code: Select all

cd $ProjectDir
DSHOME=`cat /.dshome`
export DSHOME
$DSHOME/bin/dssh "SELECT COUNT(*) FROM DS_JOBS;"
by ray.wurlod
Wed Jun 06, 2012 2:35 am
Forum: General
Topic: Find job status of current job from routine
Replies: 1
Views: 810

DSAttachJob(), DSGetJobInfo() and DSDetachJob().
by ray.wurlod
Tue Jun 05, 2012 11:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to read special characters in connector stage
Replies: 0
Views: 1137

What code page is used by the Teradata table?

Match that (even though the names may be slightly different) throughout your job design.

Beware that xFFFD might also be a byte-order mark, though I wouldn't expect to find this in a record in a database table.
by ray.wurlod
Tue Jun 05, 2012 10:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle H'0000' record type in complex flat file stage
Replies: 2
Views: 692

So you have binary values that are not EBCDIC code points. Messy. Can you specify the first two bytes as SmallInt rather than as part of the string?