Search found 53125 matches

by ray.wurlod
Wed Mar 13, 2013 3:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in connecting with database
Replies: 5
Views: 3551

"Nothing" is not the right answer. The change might not be in DataStage.
by ray.wurlod
Wed Mar 13, 2013 3:28 am
Forum: General
Topic: Source to Target mapping
Replies: 24
Views: 8280

How did you query DS_JOBOBJECTS ? What information were you seeking to retrieve? Do you understand the key structure of DS_JOBOBJECTS?
by ray.wurlod
Wed Mar 13, 2013 3:26 am
Forum: General
Topic: Want to make changes at the parameterset through the unix
Replies: 12
Views: 3062

Changing the "(As pre-defined)" values is not possible through operating system commands. However, you can change values defined in values files belonging to the Parameter Set. Values files are text files that reside in the ParameterSets sub-directory in the project. Within that there is a...
by ray.wurlod
Wed Mar 13, 2013 3:17 am
Forum: General
Topic: DS Client 9.1 Failed to authenticate user
Replies: 8
Views: 7926

Have someone with the DataStage Administrator role open the Administrator client. You have only DataStage Operator role. If you want to be able to design, you will need to be included in the DataStage Developer role (or higher); after that has been done you should be able to use the Designer client.
by ray.wurlod
Tue Mar 12, 2013 9:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: logic required for horizontal pivot
Replies: 13
Views: 4516

You will need a premium membership to read the entirety of Craig's solution (for such it is).

Premium membership is not expensive, at less than 30c per day, and the revenue is devoted to keeping DSXchange alive by funding its hosting and bandwidth costs.
by ray.wurlod
Tue Mar 12, 2013 4:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine in Basic - its code does not appear!
Replies: 11
Views: 3222

The routine should be present inside the Routines folder in the repository. And this looks to be a server routine and so for the routine to work, the Routine transforms also needs to present. The routines are called inside the transform, which in turn is used in the Basic transformer stage. That in...
by ray.wurlod
Tue Mar 12, 2013 4:54 pm
Forum: General
Topic: Don't get warning message for execute command
Replies: 12
Views: 2751

In my opinion you should never create DataStage jobs that abort intentionally.
by ray.wurlod
Tue Mar 12, 2013 3:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine in Basic - its code does not appear!
Replies: 11
Views: 3222

Query DS_ROUTINES on its key (DSRID). The following two queries give you an exact search or a search on partial name. Note that the routine name is case sensitive. (You can modify the queries to make this a case-insensitive search if desired.) SELECT DSRID FROM DS_ROUTINES WHERE DSRID = '<<RoutineNa...
by ray.wurlod
Tue Mar 12, 2013 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split big column into records
Replies: 4
Views: 1439

If the source file is a text file, you could use a Filter command such as sed or awk to convert the pipe delimiters into line terminators. (Even though you are on Windows, the MKS Toolkit provides these commands.)
by ray.wurlod
Tue Mar 12, 2013 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OracleConnector connection clossing intermittentlyORA-12545
Replies: 11
Views: 4857

Are any of the connection values supplied as parameters? If so, are the values supplied for these parameters always accurate?
by ray.wurlod
Tue Mar 12, 2013 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replace function
Replies: 6
Views: 24686

Welcome aboard, saintankit. Unfortunately a server routine will not serve the original request, which is in a parallel job.

For parallel jobs the routine must be written in C++
by ray.wurlod
Tue Mar 12, 2013 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in connecting with database
Replies: 5
Views: 3551

Re: Problem in connecting with database

Jayakannan wrote:it has been running successfully for a week before this issue occured
What has changed? ("Nothing" is not the correct answer.)
by ray.wurlod
Tue Mar 12, 2013 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine in Basic - its code does not appear!
Replies: 11
Views: 3222

Actually there is a third possibility, that someone with UniVerse knowledge has cataloged the routine from some other location than DSU.BP. Once we know the name of the routine we may be able to explore this possibility too.
by ray.wurlod
Tue Mar 12, 2013 3:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine in Basic - its code does not appear!
Replies: 11
Views: 3222

There are two possibilities. The first is that the source code was never imported into your project. In that case you will need to track down where the source code actually is. The second is that the code itself has been removed from your project. Try a query against DS_ROUTINES to see whether your ...
by ray.wurlod
Tue Mar 12, 2013 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML stage does not process the first row
Replies: 13
Views: 3993

Is the file missing a line terminator at the end of the header row?