Search found 53125 matches

by ray.wurlod
Thu Oct 04, 2012 3:15 pm
Forum: General
Topic: Search for Data File on share drive
Replies: 11
Views: 1935

Easiest to use would be a sequence with a WaitForFile activity.

Next easiest would be a before-job subroutine using ExecSH to execute a command to check for the file's existence.
by ray.wurlod
Thu Oct 04, 2012 3:06 pm
Forum:
Topic: standard, accepted - pending approval, published
Replies: 2
Views: 2171

The first set are the status of the term. There are four possible values: Candidate, Accepted, Standard, Deprecated. The second set indicates whether the term exists only in the Development Glossary or exists in both the Development and Published Glossary. You implement a governance process in which...
by ray.wurlod
Thu Oct 04, 2012 3:34 am
Forum: General
Topic: Get job names being called in Sequencer
Replies: 3
Views: 885

Do you mean all the jobs designed to be called in the sequence, or the jobs actually called when the sequence runs (which may not be all of the jobs in the design, depending on the sequence's logic)? The first is most easily accomplished by querying the DS_JOBOBJECTS table. The second is most easily...
by ray.wurlod
Thu Oct 04, 2012 3:31 am
Forum: General
Topic: jobs missing from designer
Replies: 5
Views: 959

Impossible to say now that they have been deleted and re-imported.
by ray.wurlod
Wed Oct 03, 2012 11:27 pm
Forum: General
Topic: jobs missing from designer
Replies: 5
Views: 959

Did you refresh the Repository view in Designer? It does not auto-refresh. Find Refresh option on the Repository menu.
by ray.wurlod
Wed Oct 03, 2012 8:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove prefix and leading zeros
Replies: 12
Views: 5149

Gee, it would have been useful had you mentioned that originally.

Never mind, it doesn't add much complexity. How do you know that the end of a group has occurred?
by ray.wurlod
Wed Oct 03, 2012 8:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CLOB-> LONGNVARCHAR
Replies: 4
Views: 2271

Try cutting the length in the metadata back to a sufficient length (4000 probably).
by ray.wurlod
Wed Oct 03, 2012 8:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multi-byte field disturbing the position of next fields
Replies: 2
Views: 1385

You can type BYTELEN in. It will be red but will compile, as it is a part of the language. However not every function in the language is in the list of available functions stored in DSParams. Do you know what these characters actually are? Are you using an NLS map when reading the file and, if so, w...
by ray.wurlod
Wed Oct 03, 2012 8:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: loading issue
Replies: 5
Views: 1965

Available date formats can be found here as well as in the manuals.
by ray.wurlod
Wed Oct 03, 2012 8:49 pm
Forum: General
Topic: jobs missing from designer
Replies: 5
Views: 959

Was the first import selective (and did you select only the executables, not the job designs)?
by ray.wurlod
Wed Oct 03, 2012 3:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: loading issue
Replies: 5
Views: 1965

You need to provide a format string that handles all possible date formats that will occur in your data.
by ray.wurlod
Wed Oct 03, 2012 3:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CLOB-> LONGNVARCHAR
Replies: 4
Views: 2271

You might try CAST (columname AS LONG VARCHAR2(20000)) in your user-defined query.
by ray.wurlod
Wed Oct 03, 2012 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unexpect Socket closed error while connecting to MYSQL
Replies: 2
Views: 1934

Does the SQL involve anything that will take a long time for MYSQL to respond to, such as an ORDER BY or HAVING clause?
by ray.wurlod
Wed Oct 03, 2012 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Where do I find the APT_LUTCREATE_NO_MMAP env variable?
Replies: 4
Views: 2004

You need to create the environment variable (using DataStage Administrator client) and bring that into the job as a parameter. The parallel execution engine is looking for an environment variable.
by ray.wurlod
Wed Oct 03, 2012 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calculate the difference in seconds for two timestamps field
Replies: 3
Views: 1771

Something like this will do the task. Error handling has been omitted for clarity. FUNCTION TimestampDiff(Timestamp1,Timestamp2) Day1 = Field(Timestamp1, " ", 1, 1) Day2 = Field(Timestamp2, " ", 1, 1) Time1 = Field(Timestamp1, " ", 2, 1) Time2 = Field(Timestamp2, "...