Search found 53125 matches

by ray.wurlod
Fri Nov 11, 2011 2:19 pm
Forum: General
Topic: Obtaining the Query (SQL Statement) by routine
Replies: 4
Views: 4914

That's right. Char(253) - also known as @VM - is a "value mark" which delimits values in a multi-valued field, as you've discovered.
by ray.wurlod
Fri Nov 11, 2011 12:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to view data from CSV file
Replies: 4
Views: 1544

Your structural metadata (on the Format tab) are not correct for the file. In particular the record delimiter (or record delimiter string) property is incorrect.
by ray.wurlod
Thu Nov 10, 2011 10:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row generator
Replies: 2
Views: 1004

Enter the column name and data type, then double click on the row number of the Columns grid. You can also right click on the row itself in the Columns grid, and choose Edit Row from the menu.
by ray.wurlod
Thu Nov 10, 2011 10:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Folder stage equivalent Stage
Replies: 11
Views: 2993

Unless the rows in the files are exceedingly wide, I don't see why this error is being thrown. The approach is certainly valid. Maybe larger buffers would help.
by ray.wurlod
Thu Nov 10, 2011 6:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error message: ORA-08103: object no longer exists.
Replies: 6
Views: 4750

It's an Oracle error, not a DataStage error. One (at least) of the objects referred to in your SQL no longer exists or, perhaps, you're not using the correct schema name.
by ray.wurlod
Thu Nov 10, 2011 6:29 pm
Forum: General
Topic: Any variable to capture the iteration number
Replies: 3
Views: 1424

StartLoopActivityName.$Counter
by ray.wurlod
Thu Nov 10, 2011 5:33 pm
Forum: General
Topic: How to find table is referenced in how many jobs
Replies: 5
Views: 1525

Why not just use the Manager client to perform a Where Used analysis on the table definition?
by ray.wurlod
Thu Nov 10, 2011 5:33 pm
Forum: General
Topic: Any variable to capture the iteration number
Replies: 3
Views: 1424

@ITERATION
by ray.wurlod
Thu Nov 10, 2011 5:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD Stage
Replies: 9
Views: 1678

Not necessarily. It will be wherever the DB2 database is.

If you're thinking of using a sequence in XMETA, there's still no requirement for the database (metadata repository tier) to be co-resident with the engine tier.
by ray.wurlod
Thu Nov 10, 2011 5:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to remove duplicates using LastRowInGroup?
Replies: 4
Views: 1667

Then all you need to do is to use stage variables to compare the current row with the previous row (assuming that they're appropriately sorted and partitioned) and set an indicator column value on the output.
by ray.wurlod
Thu Nov 10, 2011 5:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Folder stage equivalent Stage
Replies: 11
Views: 2993

There isn't, but server jobs ARE supported in version 8.x.
by ray.wurlod
Thu Nov 10, 2011 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Failing with Phantom warnings
Replies: 4
Views: 1480

Note the missing trailing quote character. It would appear that you're getting a "mark character" into the key of a hashed file. This is impermissible.
by ray.wurlod
Thu Nov 10, 2011 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD Stage
Replies: 9
Views: 1678

The word "perforce" is an adverb meaning "necessarily". I claim only that getting a block of keys out of a local state file will be quicker than sending a request over a network to invoke a database and issue a query against a sequence in that database then wait for the response ...
by ray.wurlod
Thu Nov 10, 2011 3:34 pm
Forum: General
Topic: 8.7 operational database
Replies: 2
Views: 2320

As far as I am aware the design of DSODB is not documented in the public domain. But you could open it in the database-specific tool (for example DB2 Control Center) if you want to look at it.
by ray.wurlod
Thu Nov 10, 2011 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle db
Replies: 3
Views: 1385

ORCHESTRATE is an object (much like SQLCA is an object). In this case ORCHESTRATE has the same properties as your input link, so that you can refer to column names as properties of the object, for example ORCHESTRATE.CUSTOMER for the CUSTOMER column.