Search found 53125 matches

by ray.wurlod
Sun Jun 29, 2008 10:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to know the job is being called in which sequence?
Replies: 4
Views: 1061

You are "going wrong" by omitting the trailing semi-colon. But that query will not give you the information needed to answer your question in a very targeted sense - it will find every DataStage job object (job, container, stage, link or annotation) that includes the text "JobName".
by ray.wurlod
Sun Jun 29, 2008 10:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem linking vmdsapi.so lobrary
Replies: 3
Views: 1359

When you specify -lvmdsapi.so the compiler/linker needs to know where to find vmdsapi.so. This is usually achieved by its parent directory being mentioned in your shared libaray search path, an environment variable called LD_LIBRARY_PATH, SHLIB_PATH or LIBPATH, depending on which "flavour" of UNIX y...
by ray.wurlod
Sun Jun 29, 2008 10:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Stage Error - SQLConnect failed
Replies: 6
Views: 7733

No. You could design that in a job sequence, but there's no such setting.
by ray.wurlod
Sun Jun 29, 2008 9:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not extracting data when the job is running
Replies: 5
Views: 2090

Then you need to ask (your SAP experts) whether there are any known issues with the remote function call mechanism in SAP, in particular any that cause a segmentation violation.
by ray.wurlod
Sun Jun 29, 2008 9:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Connection to DB2
Replies: 7
Views: 2166

There is a setting in the .odbc.ini file where you can enable tracing. From memory the option is called Trace, and there are two associated options, one of which is the pathname of the trace file.
by ray.wurlod
Sun Jun 29, 2008 4:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem linking vmdsapi.so lobrary
Replies: 3
Views: 1359

Check that the parent directory of vmdsapi.so is in your shared library search path.
by ray.wurlod
Sun Jun 29, 2008 4:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Connection to DB2
Replies: 7
Views: 2166

When do the hangs occur (for example metadata import, data browsing, job running)? Enable ODBC tracing and find out how far things are getting.
by ray.wurlod
Sun Jun 29, 2008 4:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calculating Date -1 from Timestamp
Replies: 3
Views: 1378

Moderator: please move to parallel forum
by ray.wurlod
Sat Jun 28, 2008 5:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs running indefinately
Replies: 14
Views: 6249

What you really need to do is to address the reasons why the underlying jobs exhibit this intermittent behaviour. A job sequence can not complete until all of the activities in it have completed (or a Terminator activity is executed), therefore if the underlying activity is hanging, or simply taking...
by ray.wurlod
Sat Jun 28, 2008 2:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in Reading DECIMAL fields
Replies: 5
Views: 1706

Sounds like you have not specified the field widths accurately.
by ray.wurlod
Sat Jun 28, 2008 2:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to View Data. -- NLS Enabled
Replies: 13
Views: 5111

AMERICAN won't know about the pound sterling symbol. You need to find the appropriate setting, probably one of the ISO8859 ones, that does know about this character.
by ray.wurlod
Fri Jun 27, 2008 4:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in Reading DECIMAL fields
Replies: 5
Views: 1706

Are you using Sequential File stage or Complex Flat File stage?

Your mention of packed and sign position properties suggests the latter.
by ray.wurlod
Fri Jun 27, 2008 4:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Format of an output in a Seq file stage
Replies: 4
Views: 1051

One easy way would be to write to a fixed-width format sequential file.

Another way would be to specify Char as the data type of the two columns, and change the DataStage pad character from 0x00 to space.
by ray.wurlod
Fri Jun 27, 2008 4:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Parallel Edition Error (Join Stage)
Replies: 3
Views: 1019

Are your data (your input links) correctly partitioned on the join key fields?
by ray.wurlod
Fri Jun 27, 2008 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to accept whitespaces in a packed decimal field in the S
Replies: 1
Views: 688

White space is illegal in packed decimal and there is therefore no way to force DataStage to accept the same. You can read the field as a string, and then parse the result.