Search found 53125 matches

by ray.wurlod
Tue Nov 08, 2005 5:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Informix warning
Replies: 2
Views: 824

Use a database that does support transaction logging. This is a standard message from Informix when you use a database created with -nologging option. DataStage's philosophy is to log all messages from the database, on the grounds that the database vendor thought it important enough to inform you, s...
by ray.wurlod
Tue Nov 08, 2005 5:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to dynamically name a file
Replies: 5
Views: 1456

Well done! And the work you expended in your research will benefit you by establishing the neuronal paths that help you to retain that knowledge.
by ray.wurlod
Tue Nov 08, 2005 5:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wanna Import 7.5 Job into 7.1 Version?
Replies: 4
Views: 2160

It may be possible. However, if you have use any of the activities that are new in 7.5 (StartLoop, EndLoop, UserVariables, Terminator), then it will not work.
by ray.wurlod
Tue Nov 08, 2005 4:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cobol File
Replies: 4
Views: 2091

If you import the table definition from your COBOL FD you will find that half your work has already been done; the data are already presented as SQL data types. The only thing is, you must have a 01 level item in the FD.
by ray.wurlod
Tue Nov 08, 2005 4:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log Creation while Importing Jobs.
Replies: 5
Views: 1582

There is no log created during importation.

There is no log created during compilation, unless done via Multi-Job Compile.
by ray.wurlod
Tue Nov 08, 2005 4:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: link collector error
Replies: 9
Views: 5254

Link collectors from active stages should must have IPCrow buffering turned on in the tunables.

IPC is a stage type, that makes row buffering explicit. However, both the Link Partitioner and Link Collector stages also use the same libraries to refer to the data buffers.
by ray.wurlod
Tue Nov 08, 2005 4:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error of excute job in command line interface
Replies: 7
Views: 1892

Try it without the trailing slash in the pathname.

Code: Select all

./dsjob  -run  -param Path=/tmp  testprj  test


I take it that the job does have a parameter called "Path"? Case and spelling are important.
by ray.wurlod
Tue Nov 08, 2005 4:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: import all Ms.Word Files from folder to db2 tables
Replies: 2
Views: 1183

My guess is that it's neither sensible nor possible. If you could store Word documents in a TEXT field, you could read WORD documents in a text editor. You can probably store Word documents in BLOB fields, but DataStage does not support this data type. You could certainly try using a Folder stage (w...
by ray.wurlod
Tue Nov 08, 2005 4:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Multiload PX Stage (TDMLoadPX Stage)
Replies: 4
Views: 2507

The most likely candidates would be the control and data files for the multiload operation.

Are your Teradata environment variables set up correctly? Since you have used the Teradata Enterprise stage, the answer is probably yes, but it's worth checking.
by ray.wurlod
Tue Nov 08, 2005 4:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warnings from lookup against Teradata Enterprise Stage
Replies: 8
Views: 5517

The Teradata Enterprise stage reads the results of the query into a virtual Data Set against which the lookups are performed. If the query returns no rows, then the Data Set is empty, and there's no way any lookup would work, hence the "no rows will be processed" message. Since we have no informatio...
by ray.wurlod
Tue Nov 08, 2005 4:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing logs into a log file automatically
Replies: 2
Views: 829

Re: Writing logs into a log file automatically

Please provide solution ...... Providing solutions is the business that some of us are in, in exchange for reward. There are many solutions, which a search will reveal. But not matter which method you choose, you will have to tell DataStage what you want it to do. DataStage writes entries into job ...
by ray.wurlod
Tue Nov 08, 2005 4:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sparse Lookup against DB2 ignores WHERE clause?
Replies: 11
Views: 5043

What Vincent said also applies to performing a lookup against a Lookup File Set stage. I acknowledge that this is not relevant to the original post, but it's a "gotcha" in both situations.
by ray.wurlod
Mon Nov 07, 2005 1:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-02292 integrity constraint violated
Replies: 2
Views: 1833

You must comply with the rules. Change your load rule for the parent table so that rows are updated (rather than replaced), or allow automatic cascade on delete (ALTER TABLE), or drop/disable constraints before loading. Each of these is dangerous.
by ray.wurlod
Mon Nov 07, 2005 1:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential stage's file path
Replies: 2
Views: 1099

How do you specify the same remote file from a UNIX prompt? If you can do it from there (someone has mounted its file system), then you use exactly the same technique in DataStage.
by ray.wurlod
Mon Nov 07, 2005 1:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Editing Key Expressions
Replies: 5
Views: 1263

Then, yes, it's true within the Lookup stage. But you could, of course, precede the Lookup stage with a Column Generator stage that uses a cycle from N to N for the column in question (one way to generate a constant).