Search found 53125 matches

by ray.wurlod
Tue Dec 29, 2009 4:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abnormal behavior of ODBC connector stage
Replies: 8
Views: 2436

:oops: Missed that small point.

Does the same thing happen from other clients, such as Microsoft Query?
by ray.wurlod
Tue Dec 29, 2009 4:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unlock jobs
Replies: 4
Views: 1695

If i disconnect the Information Server session using Web Console for Information Server, i will disconnect all sessions, correct ? Not correct. You can identify the particular session. The easiest way it to try to open the locked job, and you will learn the id of the session that owns the lock. Fin...
by ray.wurlod
Tue Dec 29, 2009 4:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: want to create parallel routine from server routine
Replies: 3
Views: 1142

Code: Select all

.../IBM/InformationServer/Server/Include/dsapi.h
where ... is wherever you installed the product.
by ray.wurlod
Tue Dec 29, 2009 4:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in accessing to the projrct
Replies: 4
Views: 1710

Quel dommage! Can you telnet to the server? (Use PuTTY or similar if secure telnet is required.) If so, can you then get into a DataStage shell (dssh) within the affected project? Chances are that some of the hashed files that make up the project's repository were corrupted when the disk filled. If ...
by ray.wurlod
Tue Dec 29, 2009 4:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TO export job through unix
Replies: 19
Views: 4459

Yes. You missed learning anything about how operating systems work during your IT career to date. Neither UNIX nor Windows would cope with your syntax. The pathname of the executable must be either a fully qualified pathname, or a pathname relative to the current attach point (current working direct...
by ray.wurlod
Tue Dec 29, 2009 4:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abnormal behavior of ODBC connector stage
Replies: 8
Views: 2436

There is no problem. The two dates are identical. What did you expect to be the case? You can ask the database server to format dates for viewing any (legal) way that you wish. It would appear that the default format is as specified in ISO 8601, namely YYYY-MM-DD. All ODBC stage types follow ODBC st...
by ray.wurlod
Tue Dec 29, 2009 4:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Verb "DSJOB" is not in your VOC.
Replies: 4
Views: 4508

dsjob is not executed from within a dssh shell, which is what you are attempting to do (perhaps via the Administrator client command window). The dsjob command is executed from an operating system shell. This means that the command search list and shared library search list environment variables mu...
by ray.wurlod
Tue Dec 29, 2009 4:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer
Replies: 9
Views: 2893

The DSSetUserStatus() routine is inbuilt - you won't find it in the project (but you will find it in the DataStage BASIC manual). You will need to construct an interlude function - there are many examples on DSXchange which a Search will turn up.
by ray.wurlod
Tue Dec 29, 2009 4:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Batch Number for a job run
Replies: 2
Views: 1418

Invoke KeyMgtGetNextValue() once from the controlling job sequence via a Routine activity.
by ray.wurlod
Tue Dec 29, 2009 4:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I remove numeric values from a string?
Replies: 4
Views: 1582

This forum is not for this kind of question. This forum is to discuss topics about which a more formal FAQ might appear in the FAQ forum.

Topic relocated per request - Andy

Everyone else: please don't answer until the question is in the correct forum.
by ray.wurlod
Tue Dec 29, 2009 4:26 am
Forum: General
Topic: Datastge Certification for 7.5.2
Replies: 4
Views: 1551

This forum is not for this kind of question. This forum is to discuss topics about which a more formal FAQ might appear in the FAQ forum.

Relocated per request - Andy

Everyone else: please don't answer until the question is in the correct forum.
by ray.wurlod
Tue Dec 29, 2009 4:25 am
Forum: General
Topic: Need details about Certification program for DS 7.5x Px
Replies: 1
Views: 810

This forum is not for this kind of question. This forum is to discuss topics about which a more formal FAQ might appear in the FAQ forum.

Topic relocated per request - Andy

Everyone else: please don't answer until the question is in the correct forum.
by ray.wurlod
Tue Dec 29, 2009 12:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TO export job through unix
Replies: 19
Views: 4459

gssr wrote: i am not able to read your full content
By now, with well over 100 posts to your name, you should at least have some inkling of the benefits of premium membership. It's not that expensive - less than 30c (Rs12) per day.
by ray.wurlod
Tue Dec 29, 2009 12:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: server routine vs parallel routine
Replies: 14
Views: 9992

You are completely wrong. Parallel routines must be written in C++ (definitely not any kind of BASIC language) then compiled and linked. Finally an entry must be placed in the repository recording the existence, location and required arguments of the routine.
by ray.wurlod
Tue Dec 29, 2009 12:15 am
Forum: General
Topic: Partitioning Technique for Change Capture Stage
Replies: 3
Views: 1335

"Best" does not come into it. You need a key-based partitioning algorithm that causes key adjacency - that is, all records that have the same value in those columns that are identified as Change Key candidates must end up on the same partition. If the Change Key is a single integer column,...