Search found 53125 matches

by ray.wurlod
Tue Apr 05, 2011 3:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Setup - Empty DSN: list returned from host
Replies: 16
Views: 13876

Then it's not the same issue (the original is on Windows). Please begin a new thread. ODBC on UNIX works differently from ODBC on Windows.
by ray.wurlod
Tue Apr 05, 2011 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: read_fixedwidth() error
Replies: 5
Views: 2842

You could investigate using the Schema File property with your Sequential File stage, if you can get an accurate definition for the aberrant file's structure.
by ray.wurlod
Tue Apr 05, 2011 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accomodating Date data in the format YYYYDDMM
Replies: 8
Views: 2381

You have a business rule problem; ambiguous dates. For example, what is the date of 20110406 ? Is it April 6th or June 4th? You must resolve that before you can do anything sensible with the data.
by ray.wurlod
Tue Apr 05, 2011 3:34 pm
Forum: General
Topic: Passing environmetal variable dynamically
Replies: 6
Views: 2937

There is no limit to the number of parameters that a job may have. When you add environment variable parameters to a job, you can use special tokens for their default values. $PROJDEF means "use the default value defined for the project (in the Administrator client" $ENV means "obtain...
by ray.wurlod
Tue Apr 05, 2011 3:31 pm
Forum: General
Topic: write to a file based on job status
Replies: 8
Views: 2928

The status mnemonics are also defined in JOBCONTROL.H, so you don't have to include dsapi.h.
by ray.wurlod
Tue Apr 05, 2011 3:29 pm
Forum: IBM QualityStage
Topic: Sequential file dropping records
Replies: 2
Views: 1331

You can create a reject-handling link to capture those lines from the file that do not match the designated metadata in your output link from the Sequential File stage.
by ray.wurlod
Tue Apr 05, 2011 4:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import warning
Replies: 4
Views: 1985

This is not the same problem and really warranted a new thread. Actually it really warranted a search, in which you would have found that you need to set the Record Delimiter String property to "DOS style".
by ray.wurlod
Tue Apr 05, 2011 4:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem writing multiple columns to MQ Connector in DS 8.5
Replies: 9
Views: 6783

The connector checks your design metadata with what's really out there. If there's a difference, you get this failure. You need to make sure that the metadata accurately represent the structure of the data.
by ray.wurlod
Tue Apr 05, 2011 4:50 am
Forum: General
Topic: Sequential file limt
Replies: 2
Views: 1522

There are no restrictions on the name (you don't need any particular suffix) and DataStage imposes no restriction on the size of the file. 32-bit operating systems usually impose a 2GiB size limit on files. Even 64-bit operating systems may need to have "large file support" enabled.
by ray.wurlod
Tue Apr 05, 2011 2:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read only integer value records from a table.
Replies: 2
Views: 1169

Use Matches operator in a constraint expression.

Code: Select all

InLink.TheValue Matches "1N0N"
If you might need signed integers, extend the pattern.

Code: Select all

InLink.TheValue Matches "1N0N" : @VM : "'-'1N0N" : @VM : "'+'1N0N"
by ray.wurlod
Tue Apr 05, 2011 2:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accomodating Date data in the format YYYYDDMM
Replies: 8
Views: 2381

What date picture string did you specify with the TO_DATE() function? Was it "YYYYDDMM" or was it "YYYYMMDD"?
by ray.wurlod
Tue Apr 05, 2011 2:25 am
Forum: General
Topic: How to improve
Replies: 1
Views: 995

Welcome aboard. The correct answer to your question is "the right ones". Every place is different, has different BI requirements. So, in the requirements gathering phase, you're garnering corporate knowledge about what's needed in reports (which may be a subset of what's wanted in reports)...
by ray.wurlod
Tue Apr 05, 2011 12:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: isnull function
Replies: 8
Views: 4852

Did you build the stage variable expression using the expression editor (selecting operands and operators from menus) or manually?

Incidentally, a sufficient expression would be

Code: Select all

IsNull(Lnk.A)
Boolean expressions return 1 for "true" and 0 for "false".
by ray.wurlod
Tue Apr 05, 2011 12:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file with 0 records has size more than 300 mb
Replies: 6
Views: 1957

No, it only preserves the space against the likelihood that it will need to be re-used. Every record is marked as "free space" and there are no rollback tools. (There are tools where a support analyst, for example, could undelete a single record, but nothing automatic.)
by ray.wurlod
Tue Apr 05, 2011 12:09 am
Forum: General
Topic: Datastage on UNIX vs DataStage on Windows
Replies: 3
Views: 4349

DataStage is almost identical from a user's perspective - the differences are minor, such as no SQL Server Enterprise stage on UNIX platforms (no surprise there). As Vincent noted, it's mainly going to be about your in-house skill sets and whether you need to access things like Excel without having ...