Search found 53125 matches

by ray.wurlod
Sat Jan 30, 2010 5:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: max length between two value marks in a multi value column
Replies: 9
Views: 1995

There are no limits. The original UniVerse database storage concept allowed for completely arbitrary stucture sizes (limited only by machine resources).

Some log messages, particularly those returned from Microsoft ODBC data sources, are thousands of characters long.
by ray.wurlod
Sat Jan 30, 2010 5:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: List all routines in the project
Replies: 2
Views: 1317

COUNT does not list them. LIST does. Or you can use SQL.

Code: Select all

SELECT @ID FROM  DS_ROUTINES WHERE @ID NOT LIKE '\\%';
by ray.wurlod
Sat Jan 30, 2010 5:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: installation of 8v on windows2008server
Replies: 3
Views: 1427

U is one of our posters, and is not involved in this thread. The second person personal pronoun in English is spelled "you", not "u". Please strive for a professional standard of written English on DSXchange; it helps those whose first language is not English. There's no need to ...
by ray.wurlod
Sat Jan 30, 2010 5:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "No output from command " from routine stage
Replies: 28
Views: 9496

Don't assign the third argument to Ans; assign the fourth argument.
by ray.wurlod
Sat Jan 30, 2010 5:05 am
Forum: IBM QualityStage
Topic: Investigate stage inactive
Replies: 7
Views: 2881

Are other QualityStage stages active? If not, I would suspect that you have licensed DataStage but not QualityStage on that particular server.
by ray.wurlod
Fri Jan 29, 2010 2:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "No output from command " from routine stage
Replies: 28
Views: 9496

If you do use OpenSeq please take the trouble to use CloseSeq. OpenSeq sets a lock on the file which CloseSeq releases.
by ray.wurlod
Fri Jan 29, 2010 2:35 pm
Forum: General
Topic: Job dependancy between different DS projects
Replies: 10
Views: 3244

There's nothing wrong with your English.

Alas, there is no way to include cross-project dependencies, other than to design it in, as you have done.
by ray.wurlod
Fri Jan 29, 2010 2:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compilation of the job hanging
Replies: 17
Views: 4775

Have you configured the four compiler/linker-related environment variables correctly?
by ray.wurlod
Fri Jan 29, 2010 2:31 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

Did you create System DSNs or User DSNs? DataStage can not work with User DSNs.
by ray.wurlod
Fri Jan 29, 2010 2:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot see Projects from Administrator
Replies: 11
Views: 3766

In the Connect to DataStage dialog. I'm trying to take name resolution out of the picture as a potential point of failure here.
by ray.wurlod
Fri Jan 29, 2010 2:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "No output from command " from routine stage
Replies: 28
Views: 9496

You don't need to open the files to use FC. Prefer DSExecute() to DSU.ExecDOS to eliminate the "no output from command" report as a routine result. Command = "FC /B file1 file2" Call DSExecute("DOS", Command, CommandOutput, ExitStatus) All of the output is captured into...
by ray.wurlod
Fri Jan 29, 2010 2:15 pm
Forum: IBM QualityStage
Topic: ERROR related to one of the Input files
Replies: 4
Views: 1898

Can you try changing the file definition so that the field definitions are in correct positional order?

(Clutching at straws a bit, I admit, but it's been a long time since I used QS version 7.)
by ray.wurlod
Fri Jan 29, 2010 2:11 pm
Forum: IBM QualityStage
Topic: Error while using Match stage
Replies: 1
Views: 1643

0xB3 is a single byte. ISO8859-1 maps should be able to handle it. So, given the other diagnostic work that you've done, I cannot see why it should be generating "incomplete row" only because of that character. Can you check to see that every row in the file contains the correct number of ...
by ray.wurlod
Fri Jan 29, 2010 4:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Audit Using DS
Replies: 7
Views: 2377

The routine needs to attach the job (to get a job handle), invoke DSGetLinkRowCount() with appropriate stage and link names, then detach the job.

There are many examples posted on DSXchange.