Search found 53125 matches

by ray.wurlod
Tue Sep 30, 2008 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warnings in the Lookup stage
Replies: 14
Views: 5948

No.

That would getting into Cartesian product territory. "They" thought that that would be a Bad Thing.

You can use more than one Lookup stage. But you still risk generating a Cartesian product.
by ray.wurlod
Tue Sep 30, 2008 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Black Magic
Replies: 18
Views: 4508

No idea. Disable operator combination, either globally or in particular stage(s), to find out which stage is actually throwing the error.
by ray.wurlod
Tue Sep 30, 2008 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to identify a Job Server y Parallel
Replies: 8
Views: 2340

What query did you use? I suspect you got it right - you can override the column heading ("Reserved" is the default column heading). And, yes, job type is enumerated: from memory they decode as 0 = server job, 1 = mainframe job, 2 = job sequence and 3 = parallel job.
by ray.wurlod
Tue Sep 30, 2008 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reading sequential file and loading into Oracle
Replies: 7
Views: 2065

Server job (as marked) or parallel job (as posted)?
by ray.wurlod
Tue Sep 30, 2008 3:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RunTime Information IIS 8.0.1
Replies: 8
Views: 2349

What do you want to get that the DataStage API or ETLStats does not provide?
by ray.wurlod
Tue Sep 30, 2008 3:23 pm
Forum: General
Topic: Datastage 8.0 FTP Stage Utilization
Replies: 1
Views: 2480

FTP stages do not transfer files. They transfer bytestreams; your job reads from or writes to the bytestream directly. If you want to transfer files create a BAT file or shell script and invoke FTP from that.
by ray.wurlod
Tue Sep 30, 2008 6:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate metadata automatically
Replies: 1
Views: 851

Provided that the metadata is in the correct format you can use the Schema File property in the Sequential File stage that reads the file.
by ray.wurlod
Tue Sep 30, 2008 6:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting date -1 value
Replies: 2
Views: 1008

DateFromDaysSince() function
by ray.wurlod
Tue Sep 30, 2008 6:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQLServer varchar returning truncated string
Replies: 4
Views: 1366

Perhaps your driver does not properly support LongVarChar. Try using a different client, perhaps MS Access, from the DataStage server.
by ray.wurlod
Tue Sep 30, 2008 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing Set of values from a data base table to Sequence Job
Replies: 7
Views: 1552

1. Search - both the DSSetUserStatus routine and an interlude function exist on DSXchange.

2. Yes.
by ray.wurlod
Tue Sep 30, 2008 5:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQLServer varchar returning truncated string
Replies: 4
Views: 1366

Use LongVarChar. Under ODBC standards the maximum size of a VarChar is 255 characters.

All complaints to billg@microsoft.com (because ODBC is a Microsoft standard).
by ray.wurlod
Tue Sep 30, 2008 4:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ROWID in oracle not working
Replies: 6
Views: 1955

Here's what I got running it through the SQL Navigator formatter. Note that there is a space ahead of the DATENO alias name. SELECT hierarchy_id, employee_no, (SELECT CAST (dateno AS INT) FROM owner.date_hierarchy_dim WHERE TO_CHAR (external_date, 'YYYY-MM-DD') = '2008-09-03')...
by ray.wurlod
Tue Sep 30, 2008 4:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Email with attachment v7.0
Replies: 4
Views: 1461

Premium membership is one of the ways that the hosting and bandwidth charges incurred by DSXchange are defrayed. There are only five premium posters. Membership is not expensive, at less than 30c (Rs12) per day. No premium memberships = no DSXchange. It is for this reason that the premium posters w...
by ray.wurlod
Tue Sep 30, 2008 4:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting Warning while running the job
Replies: 1
Views: 1308

Make sure that your record schema matches what's actually in the file, or vice versa.