Search found 53125 matches

by ray.wurlod
Fri Jun 17, 2005 2:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MS OLE DB Error
Replies: 1
Views: 718

Is that the exact error message? Does the stage name in the error message refer to your MSOLEDB stage or to a preceding active stage? Is it STAGECOM.ARR(9) or really "Array 9"? If the latter, it's something inside the MSOLEDB stage and you're going to need to get the answer from the vendor (unless i...
by ray.wurlod
Thu Jun 16, 2005 9:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage coulmn merge
Replies: 9
Views: 2386

The server job Merge stage performs exactly the function you specified, which is an inner join. Read about it in its own manual (Merge.pdf).
by ray.wurlod
Thu Jun 16, 2005 9:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: concatenate job log info
Replies: 2
Views: 866

Go to Director. Select your job. Go to the Project menu, choose Print. Check the Print to File check box.
by ray.wurlod
Thu Jun 16, 2005 9:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: trouble importing OracleOCI definitions
Replies: 9
Views: 1577

It's called "Filter" before the table names are listed. Sometimes "Advanced".
by ray.wurlod
Thu Jun 16, 2005 9:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Validation
Replies: 5
Views: 1326

How about the following, which returns 0 for a valid string and a non-zero value otherwise?

Code: Select all

Len(TheString) <> 17 Or Len(Convert("ABCDEFGHJKLMNPRSTUVWXYZ0123456789","",TheString))
by ray.wurlod
Thu Jun 16, 2005 9:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid string or buffer length. SQLSTATE=HY090
Replies: 7
Views: 6597

DataStage does not prepare SQL when compiling, so it could not detect SQL syntax errors at this time.

Validating the job would have picked up the SQL syntax error.
by ray.wurlod
Thu Jun 16, 2005 9:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset Deletion
Replies: 6
Views: 4199

orchadmin delete /detld1/etl/ascential/Ascential/DataStage/Projects/CTI_London/IAM/staging/FXRate_20050525_129.ds

Is not the correct command orchadmin rm dataset ?
by ray.wurlod
Thu Jun 16, 2005 3:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Checkpoint restart
Replies: 15
Views: 7318

Looks like you only have Checkpoint restart enabled on the top level job sequence. What happens if you enable it on lower levels also?
by ray.wurlod
Thu Jun 16, 2005 3:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to decide which NLS should be used where??
Replies: 17
Views: 3849

Can you try the same test using the UNISEQ function rather than SEQ ?

The UNISEQ function returns the Unicode code point of the character that is its argument. This may give some insight into the block in which your strange character belongs.
by ray.wurlod
Thu Jun 16, 2005 3:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing a DataStage file with Excel
Replies: 20
Views: 8429

Edit the post and check "Disable Smilies in this post". ;)
by ray.wurlod
Thu Jun 16, 2005 3:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cluster
Replies: 5
Views: 1045

Clusters are OK. Server is installed on only one machine in the cluster, but can access disk resources on the others. Parallel can operate on all machines in the cluster. However, there is no automatic failover available in DataStage. It would just be too difficult to keep track of committed and unc...
by ray.wurlod
Thu Jun 16, 2005 3:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to measure job complexity?
Replies: 30
Views: 13226

How about eight levels of nested containers, which I once encountered? It's more than complexity, though. We need to address maintainability (of course, since DWs are around for a long, long time) and we also need to address the question of what is optimal design. And that's a bit of a moving target...
by ray.wurlod
Thu Jun 16, 2005 2:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: generating jobs reports
Replies: 60
Views: 24753

Serks? :lol:
by ray.wurlod
Thu Jun 16, 2005 2:44 am
Forum: IBM QualityStage
Topic: Urgent : File CodePage for German Characters
Replies: 15
Views: 8977

What happens if you specify NONE as the map?
by ray.wurlod
Wed Jun 15, 2005 8:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Option for Job to "Fail" if the "Before Job-R
Replies: 7
Views: 1437

Have the shell script exit with a status code other than 0.

You can detect this with the fourth argument of DSExecute, and set the ErrorCode argument accordingly.