Search found 53125 matches

by ray.wurlod
Mon Aug 22, 2011 2:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema file
Replies: 8
Views: 3266

You can't read something that doesn't exist. But you can use, say, a Column Generator stage to create the additional field (and re-map the other).
by ray.wurlod
Mon Aug 22, 2011 2:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help in Reading a File
Replies: 4
Views: 1620

Your file is breaking the rules. If strings are delimited by double-quote, they can't contain double-quote. Get the provider of the file to get it right - either use a different delimiter character (or none), or double the internal double-quote.

Code: Select all

"Econ binder (white, 1"") "
by ray.wurlod
Mon Aug 22, 2011 2:17 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: View IA published results in DS
Replies: 12
Views: 6323

Don't forget that, to be able to see the analysis results (and notes, if any) n DataStage, then DataStage will need to be using shared table definitions.
by ray.wurlod
Mon Aug 22, 2011 2:16 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: IA column analysis error in IIS 8.5 Fix Pack 1
Replies: 12
Views: 11260

When you search for fixes/patches at Fix Central, the information about FP1 should show you what's included in it. Otherwise you can read the relase notes for Fix Pack 1 in the Information Center.
by ray.wurlod
Mon Aug 22, 2011 2:13 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: IA Data Connection passwords
Replies: 3
Views: 1977

XMETA is the default name for the common metadata repository. IADB is the suggested name for the Information Analyzer database. You get your choice of DB2, Oracle or Microsoft SQL Server for the former, and pretty much anything accessible via ODBC for the latter.
by ray.wurlod
Sun Aug 21, 2011 7:59 pm
Forum: General
Topic: Automate Rerun/Restart of Job sequence.
Replies: 1
Views: 2218

It CAN be done with DataStage alone, but will require coding of routines and design of restartability (and, possibly, recovery) in DataStage jobs.

The only difficult part is writing the site-specific requirements as specifications for the ETL developer.
by ray.wurlod
Sun Aug 21, 2011 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema file
Replies: 8
Views: 3266

The value that represents null must have five characters if the data type is string[5].
by ray.wurlod
Sun Aug 21, 2011 4:13 pm
Forum: General
Topic: how we delete 3rd row from one table
Replies: 14
Views: 4165

There's no such thing, for a user, as the third row in a table. The mechanism by which rows are stored in a table, are entirely the province of the database server.
by ray.wurlod
Sat Aug 20, 2011 4:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non Equi joins
Replies: 5
Views: 2451

No it doesn't. Because there is also the possibility that a match was found but IDENTITY is null in data set A. The proper test for not found is that B.ID is null. However, none of that has anything at all to do with non equi joins.
by ray.wurlod
Sat Aug 20, 2011 4:16 pm
Forum: General
Topic: ETL data flow analysis
Replies: 3
Views: 2012

Metadata Workbench may be able to resolve some, at least, of the data flows.
by ray.wurlod
Fri Aug 19, 2011 8:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non Equi joins
Replies: 5
Views: 2451

Not using a Join stage.

If the two sources are in the same database, then you can have DataStage push the join query into that database.

Some solution, but not a general solution, might be possible via the range lookup mechanism.
by ray.wurlod
Fri Aug 19, 2011 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date manipulation
Replies: 3
Views: 1183

What's a "phase" in this context?
by ray.wurlod
Fri Aug 19, 2011 4:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OMD.XML.DIR warning
Replies: 1
Views: 2032

Try disabling generation of operational metadata (an option in the job run options dialog) as a test.
by ray.wurlod
Fri Aug 19, 2011 4:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: is it possible to make some job parameters mandadatory ?
Replies: 3
Views: 2012

Empty parameter value should be invalid - and prevent a job from running - for all parameter types except String and Encrypted. You can check for job parameter values in a before-job subroutine and immediately abort the job (by setting ErrorCode) if any is invalid, if that is a requirement. If it wa...
by ray.wurlod
Fri Aug 19, 2011 4:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sparse Lookup specifics
Replies: 3
Views: 1577

Your understanding is pretty close to the mark, Phil. In fact, spot on at a logical level.