Search found 53125 matches

by ray.wurlod
Thu Jun 02, 2011 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Resource disk {pools "" Information
Replies: 1
Views: 1361

The pool named "" is the default pool. Nodes not constrained to execute in a particular node pool will execute in this pool. Disk pool "export" is used by the export operator, which is invoked when writing sequential files and File Sets, for example (when a translation from inter...
by ray.wurlod
Thu Jun 02, 2011 4:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sybase to Oracle
Replies: 6
Views: 1865

Make sure your Oracle DBA has configured a sufficient number of listeners.
by ray.wurlod
Thu Jun 02, 2011 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Stage Logic
Replies: 6
Views: 2984

chandra.shekhar@tcs.com wrote:I think the simplest way to do it is in the source query itself if ur source is a database.
Ur was a city in ancient Babylonia. The second person personal possessive pronoun in English is spelled "your". Please maintain a professional standard of written English on DSXchange.
by ray.wurlod
Thu Jun 02, 2011 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with pound symbol from source xml
Replies: 3
Views: 1942

Just to be clear, when you say "pound symbol" do you mean the currency symbol (₤) or the sharp sign (#)?
by ray.wurlod
Thu Jun 02, 2011 12:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-00942: table or view does not exist
Replies: 7
Views: 4918

Try qualifying the table name with its schema (owner) name.
by ray.wurlod
Thu Jun 02, 2011 12:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Question on soundex
Replies: 2
Views: 2107

Very well, thank you.
by ray.wurlod
Wed Jun 01, 2011 8:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSTAGE-TERA-0113`:`Row rejected.
Replies: 4
Views: 3638

Perhaps it's urgent. :wink:
by ray.wurlod
Wed Jun 01, 2011 8:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSGetStageInfo for Datasets
Replies: 9
Views: 4032

Yes, the stage description is in field #4 (DESC) of the pertinent DS_JOBOBJECTS record. You can get it with a query or with code. SELECT "DESC" FROM DS_JOBOBJECTS WHERE OBJIDNO = (SELECT JOBNO FROM DS_JOBS WHERE NAME = '<<JobName>>') AND OLETYPE = 'CCustomStage' AND NAME = '<<StageName>>';...
by ray.wurlod
Wed Jun 01, 2011 8:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSGetStageInfo for Datasets
Replies: 9
Views: 4032

Amuse yourself with this in the meantime. It verifies that DSJ.STAGEDESC returns -7 on the system where I'm working too. Both when the stage has a description and when the stage has no description. FUNCTION StageInfoTest(JobName, StageName) $INCLUDE DSINCLUDE JOBCONTROL.H hJob = DSAttachJob((JobName...
by ray.wurlod
Wed Jun 01, 2011 6:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing Axapta (Microsoft) financial DB
Replies: 1
Views: 1355

Do you have a UNIX-based ODBC driver for it? In that case, the answer is yes.
by ray.wurlod
Wed Jun 01, 2011 6:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem Reading sequential file in parallel job
Replies: 8
Views: 8037

We need to see the server job metadata both for Format and Columns.

Import the table definition from the sequential file then, in the table definition, click Sync Parallel. Then use the table definition in the parallel job.
by ray.wurlod
Wed Jun 01, 2011 5:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSGetStageInfo for Datasets
Replies: 9
Views: 4032

In private correspondence (we work for the same company, though on different projects) TV John assures me that the stage name is correct. Investigations continue.
by ray.wurlod
Wed Jun 01, 2011 5:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scneario of read and write hashed file concurrently
Replies: 1
Views: 1095

No errors.

Issues of data synchronization, particularly if you clear the hashed file before writing. And definitely if you re-create the hashed file - that would cause errors.
by ray.wurlod
Wed Jun 01, 2011 5:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem Reading sequential file in parallel job
Replies: 8
Views: 8037

Parallel job or server job? The error messages look like a parallel job, but there is no Folder stage for parallel jobs.
by ray.wurlod
Wed Jun 01, 2011 5:43 pm
Forum: General
Topic: DSJOBS - Command Line
Replies: 4
Views: 3292

You can use standard redirection operator. For example:

Code: Select all

cd $ProjectDir
$DSHOME/bin/dssh "SELECT NAME FMT '60L' FROM DS_JOBS WHERE CATEGORY = '\Jobs\EDW\ICMS';" > filepath