Search found 53125 matches

by ray.wurlod
Thu Jun 24, 2010 4:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Accessing Active Directory information
Replies: 6
Views: 2552

No, though I guess you could use the Java PACK and one of the existing Java applications "out there" to access AD/LDAP from DataStage. In version 8.x one of the options for user authentication is to use LDAP to access a user registry such as Active Directory. However, this is configured wi...
by ray.wurlod
Thu Jun 24, 2010 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I export a job?
Replies: 5
Views: 1333

You can rename the copy, again off the right-click menu.

Get yourself on a DataStage training class, sooner rather than later.
by ray.wurlod
Thu Jun 24, 2010 4:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: full outer join
Replies: 2
Views: 1395

It drops common key fields because they are identically valued and identically named. You can avoid this by using different naming conventions on the two inputs. A Copy stage is the most efficient stage for simply renaming columns.
by ray.wurlod
Thu Jun 24, 2010 4:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fast Track - how to define target sequential files
Replies: 4
Views: 1911

I believe this is another thing addressed (to be addressed) in the next version.
by ray.wurlod
Thu Jun 24, 2010 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL0407N - DB2 null value problem
Replies: 14
Views: 7625

This is a database error. Presumably your two environments are pointing at different database instances, or at least at different database schemas. Check the nullability of the 34th column in the 15th table in tablespace #4 and in the corresponding column/table in the other location.
by ray.wurlod
Thu Jun 24, 2010 4:29 pm
Forum: General
Topic: Want to export a job using command line argument
Replies: 15
Views: 9865

The next version will have server-side export and import.
by ray.wurlod
Thu Jun 24, 2010 4:23 pm
Forum:
Topic: Data Lineage
Replies: 9
Views: 3925

There is a non-IBM product out there from a company called Compact Solutions (partnered in Australia by Zenith Solutions Pty Ltd) that has a tool which can decode other ETL products, like Informatica and Ab Initio, and put their mappings into the XMETA database so that they can be seen by lineage an...
by ray.wurlod
Thu Jun 24, 2010 4:21 pm
Forum:
Topic: Data Lineage
Replies: 9
Views: 3925

There is a non-IBM product out there from a company called Compact Solutions that has a tool which can decode other ETL products, like Informatica and Ab Initio, and put their mappings into the XMETA database so that they can be seen by lineage analysis from Metadata Workbench.
by ray.wurlod
Thu Jun 24, 2010 2:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage 8.1 Installation
Replies: 4
Views: 4316

These problems are related - the report templates can't be loaded into the remote DB2 database. From memory, the ypcat error can be avoided by including the name and IP address of the DB2 server's host machine in the /etc/hosts file. Even if you ordinarily use DNS. Don't forget to flush the DNS cach...
by ray.wurlod
Thu Jun 24, 2010 2:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Sort data from sequential file?
Replies: 12
Views: 4110

It is there, in the Processing folder. Both for server jobs and for parallel jobs. (And mainframe jobs, for what it's worth.)
by ray.wurlod
Thu Jun 24, 2010 2:52 am
Forum: General
Topic: Reject the records if it is not numeric values
Replies: 1
Views: 1021

Code: Select all

Alpha(Left(InLink.TheCode,3))
as a constraint expression.
by ray.wurlod
Thu Jun 24, 2010 2:50 am
Forum: General
Topic: Reg:Runtime columns population with RCP columns match
Replies: 3
Views: 1921

Once you introduce validation you lock in the column name into the validation expression. There is no mechanism for validating an arbitrarily named column. If you can somehow map the arbitrary column onto a consistenly-named column then there might be a solution for you.
by ray.wurlod
Wed Jun 23, 2010 11:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuration file modification
Replies: 10
Views: 2873

Yes you can, as my response shows. It's up to you when you get your premium membership. It's not expensive (under 30c (Rs12) per day) and worth every penny/paise).
by ray.wurlod
Wed Jun 23, 2010 11:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Having problems Generating Sequence Number
Replies: 15
Views: 4781

Should the source be schema.sequencename.NEXTVAL ?
by ray.wurlod
Wed Jun 23, 2010 11:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trimming trailing space in a delimited text file
Replies: 3
Views: 1828

Declare all the fields as VarChar when importing the "table definition". Use a Transformer stage. Use Derivation Substitution to apply a Trim() function to as many VarChar fields as you like with a single operation.