Search found 53125 matches

by ray.wurlod
Wed Dec 07, 2011 2:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regaring sql server error
Replies: 1
Views: 951

You are providing some value that is not suited for the data type into which you are loading it. The rest is up to you and your detective skills. You might consider using a reject link and capturing the failed rows.
by ray.wurlod
Wed Dec 07, 2011 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: migrating jobs from 7.5 to ds 8.5 version
Replies: 3
Views: 1405

Moving jobs, however, is straightforward. Export from one project, import into the other. The export file format is compatible into higher versions.
by ray.wurlod
Wed Dec 07, 2011 2:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom 14763 Variable previously undefined. Zero length s
Replies: 9
Views: 2341

Can you please identify which stage (and its type, which I'm guessing is Transformer) is throwing this error, and what that stage is doing?
by ray.wurlod
Wed Dec 07, 2011 2:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NULLability in Oracle enterprise stage
Replies: 1
Views: 705

Are you certain that it's the Oracle stage that's throwing the error?

After all, you don't seem to be certain even of the stage type.
by ray.wurlod
Wed Dec 07, 2011 2:46 pm
Forum: General
Topic: SSD (Solid State Drives) and Information Server 8.5
Replies: 5
Views: 2025

I am aware of a colleague who used a 16GB thumb drive for extra scratch disk when no other disk was available, but have no information about performance other than that it was successful.
by ray.wurlod
Wed Dec 07, 2011 2:45 pm
Forum:
Topic: Importing Business Glossary
Replies: 5
Views: 4812

OK, I'll take another look. Multi-select is OK for "mark as deleted". Will report back on the others.
by ray.wurlod
Wed Dec 07, 2011 12:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view all records from sequential file
Replies: 20
Views: 6585

Do the terminal $ characters have any function, such as "continuation character"? Does your metadata take these into account?
by ray.wurlod
Wed Dec 07, 2011 12:04 am
Forum:
Topic: Importing Business Glossary
Replies: 5
Views: 4812

Importing Business Glossary

I exported BG in XML format from an 8.5 system then tried to import it into the 8.7 BG with workflow enabled. There were about 350 terms and several categories. They all went into the Development Glossary, as expected. There is no facility for multi-selecting terms and/or categories to take them thr...
by ray.wurlod
Tue Dec 06, 2011 11:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view all records from sequential file
Replies: 20
Views: 6585

Could it be that there's a Ctrl-M at the end of the lines (shows as ^M in vi) that is interfering with the parsing? That is, in what mode did you perform the FTP and does your FTP tool handle translating line terminators?
by ray.wurlod
Tue Dec 06, 2011 11:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view all records from sequential file
Replies: 20
Views: 6585

Was this file sourced from a Windows system?
by ray.wurlod
Tue Dec 06, 2011 9:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: removing a character using its hexcode
Replies: 2
Views: 1036

"0x1a" is 26 in decimal, or Ctrl-Z. Interestingly this is the "end of file" character in (Windows) DOS files. It can be represented in DataStage as Char(26). Initialize a stage variable, data type Char(1), to Char(26) as its value, then convert to "" in your data: Conve...
by ray.wurlod
Tue Dec 06, 2011 7:04 pm
Forum: General
Topic: How to Handle the Sequence Failure
Replies: 3
Views: 1070

You don't necessarily have to add checkpoints but, if you don't, you have to design your own logic to determine whether each job failed on its previous run and make the decision to bypass it or to reset and run it. This would better handle the case where the sequence did not stop (was not programmed...
by ray.wurlod
Tue Dec 06, 2011 7:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data reading problem in .csv format
Replies: 5
Views: 1887

I did not ask you to try to view the data in the Sequential File. What do you get in the Peek entries in the log?

Are there any warnings in the job log?
by ray.wurlod
Tue Dec 06, 2011 7:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Variable columns in ODBC
Replies: 1
Views: 988

Without re-importing the table definition it is not possible. And even then the new metadata can not be propagated automatically in server jobs.

Short answer: it's not possible.
by ray.wurlod
Tue Dec 06, 2011 6:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to capture invalid records
Replies: 4
Views: 1361

1. Define the rules that make them invalid.
2. Create logic to identify records that fail one or more rules.
3. Filter these rows.